I know its a very common question, but seems like my situation is a bit typical.
I do retrieve the value to be displayed on a textbox on page load.
so does not matter how many page loads happen i will get the correct value.
page_load()
{
TBName.Text = XYZObject.getName();
}
the thing is: on breakpoint this text shows the correct value, but when i continue and go on webpage, it again shows the old value.
what can be the issue???
Thanks
The issue was because the textbox was readonly.