-->> pass like{sample.aspx?id=1}
if (Request.RawUrl.LastIndexOf("id=") != -1)
{
int index = Request.RawUrl.LastIndexOf("id=");
string id = Request.RawUrl.Substring(index + 3);
}
if (Request.RawUrl.LastIndexOf("id=") != -1)
{
int index = Request.RawUrl.LastIndexOf("id=");
string id = Request.RawUrl.Substring(index + 3);
}
No comments:
Post a Comment