Hii

I am using Intelligencia dll in my website.
I do not want any space in my query string values
my actual url is

www.mysite.com/abc.aspx?no=1234&co=hello%20world

and I have replace space with hyphen and also my parameter seperated
by hyphen
so my url rewrite will be

www.mysite.com/d-1234-hello-world

I have defined rule in web.config is

<rewrite url="~/d-(.+)-(.+)" to="~/abc.aspx?no=$1&amp;co=$2"
processing="stop"></rewrite>

and when I check the request url it reads like

www.mysite.com/abc.aspx?no=1234-hello&co=world

means it reads in reverse order and assign $1,$2 values from reverse
order

I need to read in actual order, I dont know how to do

pls tell me urgently if anyone know this problem,

thank you


-- 
To unsubscribe, reply using "remove me" as the subject.

Reply via email to