ASP.NET automatically includes the following script tag:
<script src="/WebResource.axd?d=8H_C0aee9xE8e9a-3YoRhA2&t=633413907763620168" type="text/javascript"></script>
However, the customer site is being proxied through another site. So the URL of the root of their site:
http://domain.com/somename/
Therefore, I need the WebResource.axd prefix with / somename so that the resulting tag looks like this:
<script src="/somename/WebResource.axd?d=8H_C0aee9xE8e9a-3YoRhA2&t=633413907763620168" type="text/javascript"></script>
What I'm not sure how to install it? Is there a web.config parameter that I can set to have this prefix?
source
share