Click here to Skip to main content
15,895,370 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionConnecting to data base Pin
Saba0226-May-08 8:00
Saba0226-May-08 8:00 
AnswerRe: Connecting to data base Pin
Colin Angus Mackay26-May-08 13:02
Colin Angus Mackay26-May-08 13:02 
AnswerRe: Connecting to data base Pin
Vasudevan Deepak Kumar26-May-08 18:38
Vasudevan Deepak Kumar26-May-08 18:38 
Questionvalidating the fields in msi file during the installation Pin
chaitu.chinna26-May-08 7:43
chaitu.chinna26-May-08 7:43 
AnswerRe: validating the fields in msi file during the installation Pin
Vasudevan Deepak Kumar26-May-08 18:58
Vasudevan Deepak Kumar26-May-08 18:58 
QuestionRe: validating the fields in msi file during the installation Pin
chaitu.chinna26-May-08 20:25
chaitu.chinna26-May-08 20:25 
Questionprivate property value storage by ASP.NET Pin
Nadia Monalisa26-May-08 6:31
Nadia Monalisa26-May-08 6:31 
AnswerRe: private property value storage by ASP.NET Pin
Colin Angus Mackay26-May-08 13:08
Colin Angus Mackay26-May-08 13:08 
bashiwala wrote:
Can you tell me where the Private variables are stored in ASP.NET ?


They are stored in memory for the duration of the instance of the class. When the class is no longer referenced they will be removed by the garbage collector.

You also need to know that ASP.NET is a STATELESS system. It does not hold onto state. You have to deal with state information yourself.

bashiwala wrote:
Can you tell me how will it work when the page is rendered, is it a safe and efficient way to store my secured data ?


When a page is requested from a browser ASP.NET creates the appropriate page class, processes it and then discards the page. This mean that page classes (such as the one used for processing your ASPX page) exist normally for a fraction of a second before disappearing. ASP.NET does some clever trickery to make it appear that the class lasts longer than it actually does but in fact everytime you get a postback you have a new instance of that page class.


GeneralRe: private property value storage by ASP.NET Pin
Nadia Monalisa27-May-08 3:26
Nadia Monalisa27-May-08 3:26 
Questionautosize Table td Pin
greekius26-May-08 6:06
greekius26-May-08 6:06 
Questionweb.config file in asp.net 2.0 Pin
trilokharry26-May-08 5:10
trilokharry26-May-08 5:10 
AnswerRe: web.config file in asp.net 2.0 Pin
Colin Angus Mackay26-May-08 13:10
Colin Angus Mackay26-May-08 13:10 
GeneralRe: web.config file in asp.net 2.0 Pin
leckey26-May-08 15:43
leckey26-May-08 15:43 
QuestionHow to know the country name the user is visiting the website? Pin
Jagadeesh Jupalli26-May-08 4:14
Jagadeesh Jupalli26-May-08 4:14 
AnswerRe: How to know the country name the user is visiting the website? Pin
Colin Angus Mackay26-May-08 13:13
Colin Angus Mackay26-May-08 13:13 
GeneralRe: How to know the country name the user is visiting the website? Pin
Jagadeesh Jupalli26-May-08 21:39
Jagadeesh Jupalli26-May-08 21:39 
GeneralRe: How to know the country name the user is visiting the website? Pin
Nadia Monalisa27-May-08 3:36
Nadia Monalisa27-May-08 3:36 
GeneralRe: How to know the country name the user is visiting the website? Pin
Jagadeesh Jupalli27-May-08 21:54
Jagadeesh Jupalli27-May-08 21:54 
AnswerRe: How to know the country name the user is visiting the website? Pin
anee26-May-08 18:52
anee26-May-08 18:52 
QuestionUserControl shows ispostback=true always Pin
K.P.Kannan26-May-08 4:07
K.P.Kannan26-May-08 4:07 
Questionlooking for a Component which generates network graphs Pin
ndw26-May-08 4:01
ndw26-May-08 4:01 
QuestionGetting the hidden value in "Gridview .net 2005" Pin
froxy26-May-08 1:49
froxy26-May-08 1:49 
AnswerRe: Getting the hidden value in "Gridview .net 2005" Pin
Laddie26-May-08 1:57
Laddie26-May-08 1:57 
QuestionDatabinder.Eval() problem in Datalist Pin
needhi_p26-May-08 0:57
needhi_p26-May-08 0:57 
AnswerRe: Databinder.Eval() problem in Datalist Pin
Saifi Hasan26-May-08 1:27
Saifi Hasan26-May-08 1:27 

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.