Hi,
I'm having a problem when my friendly url path contains ".aspx". When the path contains ".aspx" all usage of "~/" is resolved incorrectly.
For example: When the friendly url is something like this: http://www.example.com/a/b/c/d.aspx
then the tilde "~" is resolved as "../../../" which is good.
BUT, when the friendly url is something like this: http://www.example.com/a/b/c.aspx/d.aspx
then the tilde "~" is resolved as "../../" which is bad! should be "../../../".
I think the ResolveClientUrl which is used when resolving "~" thinks that "c.aspx" is the file and should stop resolving at this point instead of continuing to "d.aspx"
Any suggestions? Thanks.