If your goal is to be able to have people automatically logged back on between browser sessions, your only option is cookies. If cookies aren't supported then they'll have to login each time. Keep in mind however that unless you have configured your ASP.Net application to work in cookieless mode, you have to have cookies anyway if you want to use the ASP session object. Presuming that a user is going to log in and you have to persist that user id somehow, then the user will have to have cookies working.
Peter
|