I want to find previous page url on Page_Load method
if (!Page.IsPostBack)
{
string str = Request.UrlReferrer.ToString();
}
In this case, when i will go from another page to this page,It work properly.
But when i refresh this page it will genrate error
"Object reference not set to an instance of an object."
Go to the complete details ...