Is there any way to get previous page url in silverlight navigation application. I am using navigation Service.
There is a way through which you can get URL of previous page before postback.
if (!IsPostBack) { Session["PrvPageUrl"] = Request.UrlReferrer.ToString(); }
It might be help you.