Hi,
I have an issue that would appear to be a bug in .Net, but maybe it's something I'm doing. In Page_Load, I am creating a textbox dynamically, and then setting its "Text" property to a particular value. After a postback, the textbox does not contain the value I have assigned to it, even though I can do a response.write(TextBox.Text) and the value I assigned is written to the page! I know that textboxes are supposed to retain their value on postback, so maybe this has to do with exactly when I am setting the "Text" property of the textbox.
Hope this makes sense...
I have an issue that would appear to be a bug in .Net, but maybe it's something I'm doing. In Page_Load, I am creating a textbox dynamically, and then setting its "Text" property to a particular value. After a postback, the textbox does not contain the value I have assigned to it, even though I can do a response.write(TextBox.Text) and the value I assigned is written to the page! I know that textboxes are supposed to retain their value on postback, so maybe this has to do with exactly when I am setting the "Text" property of the textbox.
Hope this makes sense...