Click here to Skip to main content
15,885,309 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: How to restrict the data in drop down list control Pin
Abhijit Jana20-Jun-08 21:13
professionalAbhijit Jana20-Jun-08 21:13 
GeneralRe: How to restrict the data in drop down list control Pin
BalasubramanianK20-Jun-08 22:06
BalasubramanianK20-Jun-08 22:06 
QuestionRe: How to restrict the data in drop down list control Pin
Abhijit Jana20-Jun-08 22:10
professionalAbhijit Jana20-Jun-08 22:10 
AnswerRe: How to restrict the data in drop down list control Pin
BalasubramanianK20-Jun-08 22:20
BalasubramanianK20-Jun-08 22:20 
GeneralRe: How to restrict the data in drop down list control Pin
Abhijit Jana20-Jun-08 22:26
professionalAbhijit Jana20-Jun-08 22:26 
GeneralRe: How to restrict the data in drop down list control Pin
BalasubramanianK20-Jun-08 22:32
BalasubramanianK20-Jun-08 22:32 
Questionwhat is the use of this statement FormsAuthentication.SetAuthCookie(oUserID, False)........ Pin
Shaik Haneef20-Jun-08 18:23
Shaik Haneef20-Jun-08 18:23 
AnswerRe: what is the use of this statement FormsAuthentication.SetAuthCookie(oUserID, False)........ Pin
Sathesh Sakthivel20-Jun-08 19:00
Sathesh Sakthivel20-Jun-08 19:00 
For the web based application such as ASP.NET, there has limited storage to
persist some status info between client and serverside, cookie is the most
common one, so generally sessionState , Forms based authentication's ticket
... are all stored in cookie by default. When cookie is not allowed, URL
string is the only alternative. There is no other place which can help
store info (specific to a certain client/browser) and can be accessed by
server .....

Also, as for Response.Cookies.Add(cookie), it always add the value into
the ASP.NET response's cookie collection (Forms Authentication or Session's
cookieless setting won't affect it). Also whether the Response.Cookies
collection's new values will be persisted at client depend on the
clientside browser's setting (browser support cookie or not , user allow
cookie or not....)

For general ASP.NET application user state management approaches, here is a
msdn article mentioned some common approaches:

#Nine Options for Managing Persistent User State in Your ASP.NET Application


However, if we need to some info persisted at clientside and to associated
some serverside resources/data, cookie or url string will be the only
approaches so far we have....

SSK.

Anyone who says sunshine brings happiness has never danced in the rain.

QuestionDreaded "Operation Aborted" on IE7 but not IE6 Pin
astanton197820-Jun-08 10:22
astanton197820-Jun-08 10:22 
QuestionShare session variables between projects Pin
Asha100920-Jun-08 9:54
Asha100920-Jun-08 9:54 
AnswerRe: Share session variables between projects Pin
Abhijit Jana20-Jun-08 21:37
professionalAbhijit Jana20-Jun-08 21:37 
AnswerRe: Share session variables between projects Pin
Abhijit Jana20-Jun-08 23:20
professionalAbhijit Jana20-Jun-08 23:20 
GeneralRe: Share session variables between projects Pin
Asha100922-Jun-08 5:26
Asha100922-Jun-08 5:26 
QuestionRefactoring our security - need feedback Pin
gantww20-Jun-08 8:43
gantww20-Jun-08 8:43 
QuestionCreating A Web From with database back-end Pin
ferronrsmith20-Jun-08 8:17
ferronrsmith20-Jun-08 8:17 
AnswerRe: Creating A Web From with database back-end Pin
SomeGuyThatIsMe20-Jun-08 8:34
SomeGuyThatIsMe20-Jun-08 8:34 
Questionpage_load for user control not firing when address is typed in browser window Pin
chacimulch20-Jun-08 8:06
chacimulch20-Jun-08 8:06 
AnswerRe: page_load for user control not firing when address is typed in browser window Pin
Shaik Haneef20-Jun-08 18:18
Shaik Haneef20-Jun-08 18:18 
GeneralRe: page_load for user control not firing when address is typed in browser window Pin
chacimulch23-Jun-08 4:16
chacimulch23-Jun-08 4:16 
GeneralRe: page_load for user control not firing when address is typed in browser window Pin
chacimulch23-Jun-08 5:40
chacimulch23-Jun-08 5:40 
Questionhandling dynamically generated controls Pin
Balram Watwani20-Jun-08 7:49
Balram Watwani20-Jun-08 7:49 
QuestionAdd image to a web page Pin
zvit20-Jun-08 7:34
zvit20-Jun-08 7:34 
AnswerRe: Add image to a web page Pin
tina->newcoder20-Jun-08 8:00
tina->newcoder20-Jun-08 8:00 
AnswerRe: Add image to a web page Pin
Sathesh Sakthivel20-Jun-08 19:06
Sathesh Sakthivel20-Jun-08 19:06 
AnswerRe: Add image to a web page Pin
Christian Graus20-Jun-08 21:46
protectorChristian Graus20-Jun-08 21:46 

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.