add this code in head tag
#### Means ur site port no
redirect link like this:
Response.Redirect("AddReview.aspx/" + nFileID);
retieve like this:
if (Request.PathInfo.Length == 0)
{
}
else
{
nFileID = long.Parse(Request.PathInfo.Substring(1).ToString());
}