Click here to Skip to main content
15,860,861 members
Articles / Web Development / ASP.NET
Article

Cookieless ASP.NET forms authentication

Rate me:
Please Sign up or sign in to vote.
4.35/5 (47 votes)
25 Aug 20023 min read 534.6K   3.3K   114   69
They say it is not possible to use cookieless forms authentication in .NET. Well it is, and relatively easy to accomplish!

Cookieless forms authentication

Why, when?

They say, its not possible. Well it is, and relatively easy to accomplish!

Lot of companies and people want to exclude cookie usage from their lives. Partly because its said to be insecure, partly because they see no reason to use it.

In my case, it was mandatory not to use cookies, but make a forms login page. Of course I've started with the normal forms authentication, cause I believed, that the big brother couldn't make such a mistake, to use cookies.

They did. After searching all the forums how to skip cookie usage, all I've found was this:

The hard way

If you pass the encoded cookie as a GET parameter to the Response.Redirect() function, the system will work as normal: the user will be signed in until the parser can find the cookie as a GET parameter, or a cookie is not easy, and makes no sense at all.

The code snippet to accomplish the "get" way of cookieless authentication is:

C#
FormsAuthenticationTicket tkt;
string cookiestr;
HttpCookie ck;

//create a valid ticket for forms authentication
tkt = new FormsAuthenticationTicket(1, userName, DateTime.Now,
DateTime.Now.AddMinutes(30), false, "your custom data");<BR>

//get the string representation of the ticket
cookiestr = FormsAuthentication.Encrypt(tkt);

//redirect to the return URL using the cookie in the address field
//In the web.config, we called out auth. ASPXFORMSAUTH2, so set that value
string strRedirect = Request["ReturnUrl"] + "?.ASPXFORMSAUTH2=" + cookiestr;
Response.Redirect(strRedirect, true);

This is useless, I tell you. Completely unpleasant, and insecure (you have to change all the links, which of course you won't)

And here is the way, you can do it:

The configuration

No authentication tag needed beside the "none". The next line in the web.config will tell the framework not to store the session ID in a cookie, but add as a special directory to the address field.

C#
<sessionState cookieless="true" timeout="20" />

After adding this line, the address field will always look like:

HTML
http://localhost/samplecookieless/(lvymatawljpjtl55d4awjg55)/login.aspx

As you can see, on each request, the session ID is passed as a directory. Very smart solution from MS! When you want to create a link with get parameters to another page, you have to pay attention to it, since calling an aspx without the session ID in the address will create a new session. So, to create a link, that has GET parameters, do this:

C#
string url =
string.Format(
// we build the whole link. Firstly, we get our host name
 "http://" + Request.Headers["Host"] + "/" + 
// then the path of the request, and append the session ID, as shown above
 Request.ApplicationPath + 
 "/(" + Session.SessionID + 
// simply add the target page with the HTTP-GET parameters.
 ")/Main.aspx?{0}={1}&{2}={3}",
 "State", state.ToString(),
 "Lang", langID.ToString()
);

(OK, I needed it. Usually people don't care about GET parameters, so probably you won't need it.)

The coding part

In global.asax.cs, add:

C#
private void InitializeComponent()
{  // This tells the global to catch all session initialization events,
   // So before every page load, we will have the Global_Acq. called! Good starting!
   this.AcquireRequestState += new
   System.EventHandler(this.Global_AcquireRequestState);
}
C#
private
void Global_AcquireRequestState(object sender, System.EventArgs e)
{ 
	//This tells the global to check whether code "Name-John" is in the session 
	//variable, called "Authenticated". To say it simple, 
	//checks, whether someone set this 
	//variable.
	if((string)Session["Authenticated"] != "Name-John")
	// If yes, do nothing, so the requested page will load.
		{
		// If it's not set yet, redirect to the login page, 
		// if the caller is not the login page already. If it is, we don't 
		//want loops, so let is load
		if(!Request.Path.EndsWith("login.aspx"))
		{
			Response.Redirect("login.aspx");
			Response.End();
		}
	}
}

If the user entered valid codes (check them however you like), in login.apsx.cs, set the session variable Authenticated to code Name-John, so the global will let the users download pages.

C#
Session["Authenticated"] = "Name-John";
//the auth is successfull, so send the user to the page
Response.Redirect("default.aspx", true);

As you see, this is a pure redirect function. No ASP.NET forms authentication is used. On the default.aspx, place whatever you want. Those controls will be in safety. If you want to sign out the user, call this code:

C#
//signs out
Session.Abandon();
//redirects to itself. This will redirect to login.aspx, cos we are signed out
Response.Redirect(Request.Path,true);

Misc good to knows

After clicking the sign-out, the user will be back on login.aspx. If he presses back, he can see the page from his browser's cache, but cannot click anything. It could be wise to set the cache expiration.

If you press [Back], then [Refresh], the explorer will asks for "The page cannot be refreshed without resending the information", and prompts for "Retry/Cancel".

Usually, when someone presses retry, the password is sent again, and the user is signed in again. Well, not in our case

You can try, that this method really doesn't use cookies: in Internet Explorer, go Tools / Internet Options. Go Privacy, and block all cookies, then try to sign in'n'out.

If you have any questions/comments, please send it to me!

Sincerely, Adam

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Hungary Hungary
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 3 Pin
HyderabadRocker Prasad18-Nov-12 5:50
HyderabadRocker Prasad18-Nov-12 5:50 
GeneralCookieless Session in ASP.NET Pin
elizas17-Mar-10 23:04
elizas17-Mar-10 23:04 
The Session state in any web technology depend on cookie at the client end to store and resend session id back and forth between client browser and web server.
But Asp.net also supports cookieless sessions with the following attribute addition in the web.config within system.web node.


With the above config setting, it carry the session id in the page url instead of cookie.

Please take a look at the following two page's Page_Load method code before we run them in both normal and cookie less mode.

http://www.mindfiresolutions.com/Cookieless-Session-in-ASPNET-562.php
Cheers,
Eliza

QuestionHow to Logout for single login machine before session timeout? Pin
yogi229-Apr-09 16:37
yogi229-Apr-09 16:37 
GeneralThat's the wrong way. Pin
Fernando L Rodriguez, MCP1-Jul-08 10:20
Fernando L Rodriguez, MCP1-Jul-08 10:20 
QuestionSessions Pin
stixoffire1-Apr-08 23:45
stixoffire1-Apr-08 23:45 
AnswerRe: Sessions Pin
Fernando L Rodriguez, MCP1-Jul-08 10:23
Fernando L Rodriguez, MCP1-Jul-08 10:23 
GeneralRe: Sessions Pin
stixoffire1-Jul-08 17:51
stixoffire1-Jul-08 17:51 
GeneralRe: Sessions Pin
Fernando L Rodriguez, MCP2-Jul-08 8:04
Fernando L Rodriguez, MCP2-Jul-08 8:04 
GeneralSecurity risk Pin
dfgdiewocxn27-Feb-08 3:00
dfgdiewocxn27-Feb-08 3:00 
GeneralURGENT : Cookies-Transfer frm one application to another Pin
Prishuk13-Oct-07 1:06
Prishuk13-Oct-07 1:06 
AnswerRe: URGENT : Cookies-Transfer frm one application to another Pin
stixoffire1-Apr-08 23:15
stixoffire1-Apr-08 23:15 
Questioncookieless at runtime Pin
Alexandru Stanciu26-Mar-07 5:00
Alexandru Stanciu26-Mar-07 5:00 
AnswerRe: cookieless at runtime Pin
chestnutt27-Mar-07 5:09
chestnutt27-Mar-07 5:09 
GeneralRe: cookieless at runtime Pin
Fernando L Rodriguez, MCP2-Jul-08 8:14
Fernando L Rodriguez, MCP2-Jul-08 8:14 
Generalpage Refreash Pin
s70284028-Jan-06 0:58
s70284028-Jan-06 0:58 
Questionpossibe security problem? Pin
landonjb4-Nov-05 12:06
landonjb4-Nov-05 12:06 
AnswerRe: possibe security problem? Pin
stixoffire1-Apr-08 23:12
stixoffire1-Apr-08 23:12 
Generaltrace.axd Pin
thijscobben19-Oct-04 5:00
thijscobben19-Oct-04 5:00 
QuestionWhat about webfarms Pin
Anonymous9-Dec-03 13:23
Anonymous9-Dec-03 13:23 
AnswerRe: What about webfarms Pin
toen_work19-Jan-04 0:41
toen_work19-Jan-04 0:41 
GeneralCookies and Sessions Pin
Anonymous27-Oct-03 6:57
Anonymous27-Oct-03 6:57 
Generalweb.config inn subdirectory Pin
Majid Shahabfar26-Oct-03 23:57
Majid Shahabfar26-Oct-03 23:57 
Generalweb.config Pin
Anonymous23-Oct-03 7:52
Anonymous23-Oct-03 7:52 
QuestionCookieless not cookieless? Pin
bhbalps25-Aug-03 23:42
bhbalps25-Aug-03 23:42 
GeneralStill a lot of thinking on session. Pin
wyx20007-Jun-03 11:06
wyx20007-Jun-03 11:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.