nickname
May 18th, 2005, 08:57 AM
Hello..
asked this question in a few other threads, but to be sure, I created a new thread..
I'm using following code to run only once (when page is opened):
Protected Sub Page_Load.....
If Page.IsPostBack = False Then
Me.txtTest.Visible = True
Me.txtTest.Text = "test"
End If
End Sub
The proplem is that when the page opens, it wont work.. Only when I press a button, and it opens the window for the second time, it will work..
Someone a solution fot this problem? I hope so..
tnx in advance!
nickname
asked this question in a few other threads, but to be sure, I created a new thread..
I'm using following code to run only once (when page is opened):
Protected Sub Page_Load.....
If Page.IsPostBack = False Then
Me.txtTest.Visible = True
Me.txtTest.Text = "test"
End If
End Sub
The proplem is that when the page opens, it wont work.. Only when I press a button, and it opens the window for the second time, it will work..
Someone a solution fot this problem? I hope so..
tnx in advance!
nickname