Hi Tulsi
Actual Url is not "http://www.domain.com/Cars/Volvo/850/T5" but "it is displayed to user". you can use some techniques to do this. in asp.net MVC there is Routing tool, and in previous versions (Professional way) you can write your own HttpHandler and HttpModule that does it.
see
http://www.codeproject.com/Articles/...g-with-ASP-NET
http://www.simple-talk.com/dotnet/as...r-asp.net-2.0/
and then
http://weblogs.asp.net/scottgu/archi...h-asp-net.aspx
I'm writing a new one that acts like MVC that you can define some actions (but in WebForms):
http:// yourUrl/post/list ====> calls List Method of Post.aspx page
http:// yourUrl/post/new ====> calls New Method of Post.aspx page
http:// yourUrl/post/title-of-post ====> calls Detail(title) Method of Post.aspx
I'll send it here when completed