Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
In ASP.net,

Without using browser Cookies can we track user system? actually we have requirement where we generate URL and send email to user with URL and when user clicks on the URL I need to know whether user is authorized to view WebPage or not.

Please help me, how to track user.



Thanks,

Sukesh.
Posted

1 solution

This problem is usually solved using query strings.

1. you send the user a link with some encrypted query string.
2. when the user clicks on the link he will come to your page with that query string.
3. you can now decrypt it do the needful and
4. mark this particular value of query string as processed so that no one else can use this link again.
 
Share this answer
 
Comments
Sandeep Mewara 12-Jun-12 2:12am    
Good answer. 5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900