I have seen some websites showing no filenames in their url, like
http://www.abcdef.com/ab/cd
no filename like f.aspx at the end..
anyway to do that in asp.net?
xueduanyang@msn.com - 05 Oct 2007 13:47 GMT
I think it may be access default filename like default.aspx in that folder
>I have seen some websites showing no filenames in their url, like
> http://www.abcdef.com/ab/cd
> no filename like f.aspx at the end..
> anyway to do that in asp.net?
bruce barker - 05 Oct 2007 16:25 GMT
its called url rewriting. basically you write a httpmodule that
translates the import url to the correct one. google asp.net url rewrite
and you will get lots of examples.
-- bruce (sqlwork.com)
> I have seen some websites showing no filenames in their url, like
> http://www.abcdef.com/ab/cd
> no filename like f.aspx at the end..
> anyway to do that in asp.net?