I need to add a Page_Load event handler that sets the contents of the Name text box to "name" if you are not posting back to the page. I have this:
[
protected void Page_Load(object sender, EventArgs e)
{
name.Text = "Name";
}
But it is still showing when posting back to the page after validation. Can anyone help?