i have complete url with flag after successful naviation of page like :
protected void Repeater_EasyMailSystem_ItemCommand(object source,
RepeaterCommandEventArgs e)
{
Response.Redirect(e.CommandArgument.ToString());
}
protected void Repeater_Template_management_ItemCommand(object source, RepeaterCommandEventArgs e)
{
Response.Redirect(e.CommandArgument.ToString());
}
this is url drawn url bar :
http://localhost:2670/Mail.aspx?flag=1
http://localhost:2670/Mail.aspx?flag=2
http://localhost:2670/Mail.aspx?flag=3
http://localhost:2670/Mail.aspx?flag=4
how ever it's okay for navigation from menu item click. But i don't need this url while posting back page with submit button. It'a passout page.Isvalid and clears all inputs specified at submit time.
please help me