I Have a Global.asax file in that i written
routeCollection.MapPageRoute("GotoPage", "Default.aspx/{*Id}", "~/Default.aspx");
From aspx Page i called like
Response.RedirectToRoute("GotoPage", new { Id = Request.QueryString["Id"].ToString() });
It Redirects to http://mysite.com/GotoPage/2.
Now The Problem Is. With that URL aspx page unable to load JQuery, CSS, Javascript Files. It says that invalid file path ( at runtime )
can help would be appreciable..