Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

cookies - ASP.NET: Does FormsCookie go away when authentication period expires? -


i'm trying establish authentication timeout expiration checking, , i'm noticing little strange. when authentication period still valid, following code give me cookie:

httpcookie authcookie = context.request.cookies[".aspxauth"]; // .aspxauth name defined in web.config 

but when authentication period has expired, cookie no longer in cookies array, , result null. i'm trying build formsauthenticationticket object cookie, able check expired property. this:

formsauthenticationticket authticket = formsauthentication.decrypt(authcookie.value);  // check if authenticated session dead if (authticket != null && authticket.expired) {     // send response indicating they've expired. } 

but if cookie goes away once authentication period has expired, can't far. there i'm doing wrong, or cookie not supposed there? , if not, how supposed build ticket check expired property?

thanks much.

the cookie has expiration timeout value can specify in configuration file. there isn't warning when cookie expires; build process checks upon every request see request expired on.

however, factor in element too, may require valid user (not anonymous), without cookie may kicked out.

read more here: http://support.microsoft.com/kb/910443


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -