HI All, I got a question about the URL Routing feature in .Net 4.0
My URL the I want to rewrite is : www.mysite.com/counties.aspx?id=12 I could make it work like that : www.mysite.com/12/egypt
But I want it to work without passing the id of the country in the query to look like this www.mysite.com/egypt
So ,I want to know how can I pass that parameter without showing it in the url.Another approach I thought about is to select the record using the country name instead of id and remove any spaces that could appear in country names. But I don’t like it, and I would like to make it work with the id.
Anyone can help?