vote up 0 vote down star
1

I'm using URLRewritingNet 2.0. How do I rewrite URL's in ASP.NET?

I request is here >>

Input: www.sampleweb.com/param1/value1/param2/value2/default.aspx

Output: www.sampleweb.com/default.aspx?param1=value1&param2=value2

Must work dynamically like this param1/value1/param2/value2/ ... /paramN/valueN

flag

72% accept rate
That's indeed a bad way to pass parameters! – Moayad Mardini Sep 29 at 17:45
What If your Input is Like: www.sampleweb.com/value1/value2/default.aspx and output could be what you are looking, if it is OK then I will provide you link and help to accomplish this. – Muhammad Akhtar Sep 30 at 4:46

1 Answer

vote up 0 vote down

That is not a good way to pass key/value pairs.

You should assume the key based on the values position. That makes life a lot easier. HttpContext.RewritePath (with its variations) is how you go about transforming the url.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.