0

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

2
  • Please re-word your question, as it does not make sense. Commented Oct 22, 2010 at 5:19
  • Your edit didnt help, made it worse if anything. Elaborate on your question, don't remove parts of it. Commented Oct 22, 2010 at 5:29

1 Answer 1

2

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

Sign up to request clarification or add additional context in comments.

1 Comment

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

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.