resolve Url and catch Query String [Solved]
-
hi, Im going to resolve requested url, and catch related query string (request) from url for example when client try to redirect to www.mysite.com/myname, it change to www.mysite.com/?page=myname exactly no page exist named myname Response.Request["page"] return Query String i know , but the url must be formatted struct.
modified on Saturday, February 13, 2010 6:32 PM
-
hi, Im going to resolve requested url, and catch related query string (request) from url for example when client try to redirect to www.mysite.com/myname, it change to www.mysite.com/?page=myname exactly no page exist named myname Response.Request["page"] return Query String i know , but the url must be formatted struct.
modified on Saturday, February 13, 2010 6:32 PM
Could you please elaborate what exactly you are looking for?
Anurag Gandhi. http://www.gandhisoft.com Life is a computer program and every one is the programmer of his own life.
-
hi, Im going to resolve requested url, and catch related query string (request) from url for example when client try to redirect to www.mysite.com/myname, it change to www.mysite.com/?page=myname exactly no page exist named myname Response.Request["page"] return Query String i know , but the url must be formatted struct.
modified on Saturday, February 13, 2010 6:32 PM
Are you looking for something like this http://learn.iis.net/page.aspx/460/using-url-rewrite-module/[^]
I know the language. I've read a book. - _Madmatt
-
hi, Im going to resolve requested url, and catch related query string (request) from url for example when client try to redirect to www.mysite.com/myname, it change to www.mysite.com/?page=myname exactly no page exist named myname Response.Request["page"] return Query String i know , but the url must be formatted struct.
modified on Saturday, February 13, 2010 6:32 PM
I think you need URL rewriting. check these links: URL Rewriting in ASP.NET[^] URL Rewriting with ASP.NET[^]
Hesham A. Amin My blog twitter: @HeshamAmin
-
I think you need URL rewriting. check these links: URL Rewriting in ASP.NET[^] URL Rewriting with ASP.NET[^]
Hesham A. Amin My blog twitter: @HeshamAmin
Thanks a lot, i really need this.