Here is my code:
protected void btnresult_Click(Object sender, EventArgs e)
{
Button btn = (Button)(sender);
Response.Write("<script>");
Response.Write("window.open('studentresult.aspx?id=" + btn.CommandArgument + "','_blank')");
Response.Write("</script>");
}
My home page studententry.aspx
In my home page, when I click result button, it goes to new window page and it shows student result.
But after that I will take a look at home page, it shows back button on the top of url address bar.
So I click the back button, again it goes to new window page and shows student result.
May I know, why the back button is active when I click result button?