tags:

views:

35

answers:

1

Hi i want to create an asp.net application where i need to provide specific URL for each user in my website dynamically..

+2  A: 

You can intercept the HttpApplication.BeginRequest event and check if the Request url is one of your dynamic URLs, and if it is, redirect to a non-dynamic URL, after setting some Session level or QueryString variables.

Alternatively, you could a custom route:

http://msdn.microsoft.com/en-us/library/cc668201.aspx

JeffN825
Exactly. I think you're looking for URL rewriting. If so, do some Googling and you'll find a dozen articles and samples.
KBoek