When I turn on URL Rewriting to access a page, the ~ no long is replaced with the application root.
For example
<asp:image runat="server" ImageUrl="~/Images/image.png"/>
should produce:
<img src="/testing/Images/image.png">
but its only outputting
<img src="/Images/image.png">
The tilde is supposed to be replaced with the application root path but it looks like IIRF is messing with that somehow?
Any ideas on how to fix this?