Hi All,
I know that there is a way to transform dynamic urls, for example:
www.someurl.php?param1=value1&param2=value2 into static urls like
www.someurl.php/param1/value1/param2/value2

My question how can i do it in ASP?

Thanks,
Raanan
http://www.infoservicesonline.com

Re: Static URLs from dynamic links by KL

KL
Sun Oct 22 17:34:49 CDT 2006


Unfortunately there is no built in support for this. In ASP.NET you can make
it rewrite a request that the asp.net engine is setup to process using a
httpmodule:
http://www.codeproject.com/aspnet/URLRewriter.asp

For everything that is not asp.net and folder requests, you will need an
isapi filter installed, there are some free ones and some commercial, for
example:
http://cheeso.members.winisp.net/IIRF.aspx
http://www.isapirewrite.com/

KL.


"Raanan" <infosrv.online@gmail.com> skrev i meddelandet
news:1161551514.388837.193010@i3g2000cwc.googlegroups.com...
> Hi All,
> I know that there is a way to transform dynamic urls, for example:
> www.someurl.php?param1=value1&param2=value2 into static urls like
> www.someurl.php/param1/value1/param2/value2
>
> My question how can i do it in ASP?
>
> Thanks,
> Raanan
> http://www.infoservicesonline.com
>



Re: Static URLs from dynamic links by Raanan

Raanan
Tue Oct 24 16:53:54 CDT 2006

Thanks a lot, i will try the rewite tools

Raanan,
http://www.infoservicesonline.com

KL =D7=9B=D7=AA=D7=91:
> Unfortunately there is no built in support for this. In ASP.NET you can m=
ake
> it rewrite a request that the asp.net engine is setup to process using a
> httpmodule:
> http://www.codeproject.com/aspnet/URLRewriter.asp
>
> For everything that is not asp.net and folder requests, you will need an
> isapi filter installed, there are some free ones and some commercial, for
> example:
> http://cheeso.members.winisp.net/IIRF.aspx
> http://www.isapirewrite.com/
>
> KL.
>
>
> "Raanan" <infosrv.online@gmail.com> skrev i meddelandet
> news:1161551514.388837.193010@i3g2000cwc.googlegroups.com...
> > Hi All,
> > I know that there is a way to transform dynamic urls, for example:
> > www.someurl.php?param1=3Dvalue1&param2=3Dvalue2 into static urls like
> > www.someurl.php/param1/value1/param2/value2
> >
> > My question how can i do it in ASP?
> >
> > Thanks,
> > Raanan
> > http://www.infoservicesonline.com
> >