kingelessar Posted August 7, 2004 Posted August 7, 2004 Hey, I'm trying to create my own state/session management system because of the following reason: I want it to be cookieless and completely invisible to the end user (so no fiddling with the url), so the ASP.NET session thingy isn't good enough for me I could track sessions trough the client's IP, or a combination of the IP and UserAgent, but unfortunately there are a lot of people that have a home network with two computers with almost the same configuration. Does anyone have another idea? Quote Anon - "If you can't beat your computer at chess, try kickboxing." homepage: http://www.givemehelp.co.uk/
Rodenberg Posted August 7, 2004 Posted August 7, 2004 If you want to be hardcore you can pull the MAC address from the http/request packets and differentiate that way. I don't know what performance would be like, but it would be a way you could identify each unique incoming request. Quote
*Gurus* Derek Stone Posted August 8, 2004 *Gurus* Posted August 8, 2004 If you're not going to add a session token to the URL, you'd have to add it to the page itself, and perform nothing but HTTP POST requests to hide it from the user. This would be an absolute nightmare, for both the developer and the end user. I would not recommend this. Quote Posting Guidelines
egdotnet Posted August 8, 2004 Posted August 8, 2004 you could requests and then immediately put the request value into a session or local variable & redirect to the page w/o any request strings. Quote
kingelessar Posted August 9, 2004 Author Posted August 9, 2004 Thanks for your replies. I don't like the POST idea either, because when users would start entering their a custom url in their browser the session information would be lost. About the MAC address: when someone has a LAN, wouldn't I get the MAC address of the router? And how can I retrieve the MAC address? As far as I know ASP.NET doesn't provide any access to the actual TCP/IP package. The thing I am trying to do is track session information, and make this work in even a textbrowser, and allow the users to enter an url without the session info being lost. Dennis Quote Anon - "If you can't beat your computer at chess, try kickboxing." homepage: http://www.givemehelp.co.uk/
kingelessar Posted August 10, 2004 Author Posted August 10, 2004 After some googling I found out that it is probably impossible what I am trying to do. Thanks for your help. Quote Anon - "If you can't beat your computer at chess, try kickboxing." homepage: http://www.givemehelp.co.uk/
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.