Is there a way to modify all the links to js and css files in my webforms aspx pages without making a call to a helper function?
I want to write a url:
FROM ...../Scripts/file.js
TO ...../Scripts/634969723944992444/file.js
I can do this:
<script type="text/javascript" src="<%=Url.Helper(@"Scripts/file.js")%>"></script>
where the helper function will include the last modified time of the file as ticks in the url.
Is there an easy way I can modify the urls on all my pages with out using such helper function?
Thanks