Well, i know the title isn't very specific, but i couldn't find a better succint description of what i'm looking for.
i want to have a default.aspx so that when a user types:
http://www.mydomain.com/randomstring
i can use the randomstring to query a table on page load.
More specific:
. I will be importing batches of users to my database through a csv file.
. in that process, a random string will be generated
. i will send that url to each user by email
. when the user clicks through that link, i want my aspx(c#) to interpret that string, query a table that gives me a second url, this one with querystring, and Redirects the user to that second address
I'm just looking for the interpretation part of the problem. I know how unsafe the whole process is, and i don't care for now, it's not critic at all.
Thank you