i noticed that when using the URL re-writter out of iis 7.0 that the root url character "~" works correctly but when I re-write the url with the global.asax file, the files no longer map correctly.
Why is this and what can I do to have all the files map properly when using global.asax to re-write urls?
If URL.Contains("/myurl/") Then
Context.RewritePath("~\myurl.aspx")
end if