D
dbfrey
This is the oddest thing I've ever seen.
We have an aspx page with some user controls, one is a main, another is
a status, which has an edit button.
on the main control, we have some dropdowns and textboxes. When the
edit button is clicked, it will reload the page and the event is picked
up by the main control.
On the page load, when I set a breakpoint on Textbox1.Text = "12345",
it is set, confirmed by the command window, but wont display on the
page? I've traced it through and nothing. There isn't any javascript
that would change this.
Any ideas?
If (Request.Params.Get("__EVENTTARGET") = "edit") Then
Textbox1.Text = "Test"
End if
We have an aspx page with some user controls, one is a main, another is
a status, which has an edit button.
on the main control, we have some dropdowns and textboxes. When the
edit button is clicked, it will reload the page and the event is picked
up by the main control.
On the page load, when I set a breakpoint on Textbox1.Text = "12345",
it is set, confirmed by the command window, but wont display on the
page? I've traced it through and nothing. There isn't any javascript
that would change this.
Any ideas?
If (Request.Params.Get("__EVENTTARGET") = "edit") Then
Textbox1.Text = "Test"
End if