vote up 0 vote down star

Hi,

In my Page_Load I set the text equal to a value e.g. txtNote.text="note text ex"

If I change that text on my actual form to something else, then try to write my new value to a db ... the textNote.text is still "note text ex" what it was set to in the Page_Load...not what I changed it to on the form....can this be changed?

Thanks,

flag

1 Answer

vote up 5 vote down check

Take your assignment into IsPostBack control like that :

if (!IsPostBack)
{
    txtNote.Text="note text ex";
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.