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:
JeffN825
2010-10-22 05:23:24
Exactly. I think you're looking for URL rewriting. If so, do some Googling and you'll find a dozen articles and samples.
KBoek
2010-10-22 05:26:46