if (!IsPostBack)
{
string a = Request.QueryString.Get("a");
if (string.IsNullOrEmpty(a))
{
string url = HttpUtility.UrlDecode(Request.RawUrl);
if (url.IndexOf("?") > 0 && url.IndexOf("a=", url.IndexOf("?")) > 0)
{
Response.Redirect(url);
}
}
else
{
// Process the a
}
}
{
string a = Request.QueryString.Get("a");
if (string.IsNullOrEmpty(a))
{
string url = HttpUtility.UrlDecode(Request.RawUrl);
if (url.IndexOf("?") > 0 && url.IndexOf("a=", url.IndexOf("?")) > 0)
{
Response.Redirect(url);
}
}
else
{
// Process the a
}
}