Hi guys,
Please help with the following question, which I hope to resolve without significant overhead coding :)
Here's the thing... APS.NET 2.0 adds a script link to WebResource.axd for its validation controls. This is fine in most cases, but in my case it breaks something...
What's getting rendered is something like this:
<script type="text/javascript" src="/WebResource.axd?d=tdUW58k95YwCRfXXR7kcbKlJRha30AUy_DuBO1JUE_E1&t=633411363624561351/>
but this breaks in my case because I need an absolute path, not relative... (this is for a Facebook app in case you're wondering)...
So, what I really need is to add a tilde (~) like this:
<script type="text/javascript" src="~/WebResource.axd?d=tdUW58k95YwCRfXXR7kcbKlJRha30AUy_DuBO1JUE_E1&t=633411363624561351/>
------------------------------------^
Any easy way to make it happen?