Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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..

share|improve this question

1 Answer

In your masterPage, make sure that the paths to your files look like this

<script src="<%# ResolveUrl ("~/Scripts/jquery-1.6.2.min.js") %>" type="text/javascript"></script>
<link id="stMain" href="~/css/style.css" rel="stylesheet" type="text/css" media="screen" />
share|improve this answer
If It Works with Localhost Then it's not working with IIS. if it works with IIS it's not working with localhost. – Rajeev Chowdary Gurram Aug 3 '12 at 4:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.