this is the simple code:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
txt.Text = "Original";
}
}
first load. text box state is "Original".
manually , changing the value to "Not Original".
pressing F5. the line:
txt.Text = "Original";
is executed but the Input value remain "Not Original"
but, when I hit with enter into the adressbar. the value is changed to the "Original".
more starnge is when the adress contains '#' at the end (using jquery click..)
then, even when I hit in the adressbar, the value remain "Not Original"