R
royston
Hi,
I have wrote a httpHandler module which rewrite the users url.
In Web.Config
<httpHandlers>
<add verb="*" path="/*/*.aspx"
type="Sample.URL.PageHandler,Sample.URLManager"/>
</httpHandlers>
For example
http://localhost/royston/index.aspx is mapped to
http://localhost/index.aspx?name=royston
The module has been working fine. However, for this particular url
below, the httpHandler path fail to map the url and never handle the
url rewrite at all...
http://localhost/aux/index.aspx --> The resource cannot be
found.
Is "aux" a reserve word or something? I tried to debug but it seems
that the handler is never run for that particular url... Any suggestion
or advice is appreciated.
Regards,
Royston
I have wrote a httpHandler module which rewrite the users url.
In Web.Config
<httpHandlers>
<add verb="*" path="/*/*.aspx"
type="Sample.URL.PageHandler,Sample.URLManager"/>
</httpHandlers>
For example
http://localhost/royston/index.aspx is mapped to
http://localhost/index.aspx?name=royston
The module has been working fine. However, for this particular url
below, the httpHandler path fail to map the url and never handle the
url rewrite at all...
http://localhost/aux/index.aspx --> The resource cannot be
found.
Is "aux" a reserve word or something? I tried to debug but it seems
that the handler is never run for that particular url... Any suggestion
or advice is appreciated.
Regards,
Royston