Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / HTML

How to allow correct JavaScript references with pages using a Routed URL

5.00/5 (1 vote)
14 Oct 2012CPOL 11.5K  
This post describes how to reference your Javascript files from a page that uses Routed URLs

Introduction

Today, every application uses JavaScript. For referencing JavaScript in our .NET application in ASPX pages, we use the following syntax:

C#
<script src="jquery.min.js" type="text/javascript" charset="utf-8"></script>  

When working with Routed URLs, the above syntax fails to download the referenced JavaScript files.

Using the code

To resolve this issue, the scripts should be re-written as below:

C#
<script src="<%=ResolveUrl("~/jquery.min.js") %>" type="text/javascript" charset="utf-8"></script> 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)