Click here to Skip to main content
15,894,405 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: page level variable Pin
Brij12-Nov-08 18:12
mentorBrij12-Nov-08 18:12 
AnswerRe: page level variable Pin
Guffa12-Nov-08 22:23
Guffa12-Nov-08 22:23 
Questionpage events - please help Pin
BdvPetrov12-Nov-08 11:18
BdvPetrov12-Nov-08 11:18 
AnswerRe: page events - please help Pin
N a v a n e e t h12-Nov-08 16:52
N a v a n e e t h12-Nov-08 16:52 
Questiondetailsview does not update Pin
hassanmohamed12-Nov-08 9:55
hassanmohamed12-Nov-08 9:55 
QuestionSession Code Pin
bsse12-Nov-08 8:33
bsse12-Nov-08 8:33 
AnswerRe: Session Code Pin
Paul Conrad12-Nov-08 11:22
professionalPaul Conrad12-Nov-08 11:22 
AnswerRe: Session Code Pin
N a v a n e e t h12-Nov-08 16:58
N a v a n e e t h12-Nov-08 16:58 
bsse wrote:
i want to know the complete code of session in ASP.Net.


Using session is trivial.
// Setting value to session
Session["Key"] = YourObject;

// Reading from session
YourObject = (YourObject)Session["Key"];
Session will have a unique id called SessionId which will be sent along with the request to determine where to look for session data.

bsse wrote:
i have to transfer a huge data from one page to another in my site


Keeping huge data in sessions should be avoided. Session variables are kept on server and your server will die when huge data is set on session. You can update the data to a database table and access it from the other page instead.


QuestionRegarding GridView Update Pin
dayakar_dn12-Nov-08 7:36
dayakar_dn12-Nov-08 7:36 
AnswerRe: Regarding GridView Update Pin
N a v a n e e t h12-Nov-08 16:59
N a v a n e e t h12-Nov-08 16:59 
QuestionCrystall Report Display Pin
Tomic12-Nov-08 5:30
Tomic12-Nov-08 5:30 
QuestionWeb Application Icon Pin
Tomic12-Nov-08 5:14
Tomic12-Nov-08 5:14 
AnswerRe: Web Application Icon Pin
J4amieC12-Nov-08 5:36
J4amieC12-Nov-08 5:36 
AnswerRe: Web Application Icon Pin
Perspx12-Nov-08 8:27
Perspx12-Nov-08 8:27 
QuestionOn logout prevent clicking back button to get back in Pin
dptalt12-Nov-08 4:10
dptalt12-Nov-08 4:10 
AnswerRe: On logout prevent clicking back button to get back in Pin
eyeseetee12-Nov-08 5:04
eyeseetee12-Nov-08 5:04 
GeneralRe: On logout prevent clicking back button to get back in Pin
dptalt12-Nov-08 7:06
dptalt12-Nov-08 7:06 
GeneralRe: On logout prevent clicking back button to get back in Pin
Ennis Ray Lynch, Jr.12-Nov-08 7:41
Ennis Ray Lynch, Jr.12-Nov-08 7:41 
Questionsome controls on user control do not preserve viewstate Pin
hassanmohamed12-Nov-08 3:48
hassanmohamed12-Nov-08 3:48 
QuestionDCOM Settings for Word application in asp.net Pin
Member 380080912-Nov-08 3:03
Member 380080912-Nov-08 3:03 
QuestionRemoving a project reference from the website's bin folder Pin
Brendan Vogt12-Nov-08 2:45
Brendan Vogt12-Nov-08 2:45 
AnswerRe: Removing a project reference from the website's bin folder Pin
Guffa12-Nov-08 6:56
Guffa12-Nov-08 6:56 
AnswerRe: Removing a project reference from the website's bin folder Pin
Arun Jacob12-Nov-08 23:19
Arun Jacob12-Nov-08 23:19 
GeneralRe: Removing a project reference from the website's bin folder Pin
Member 224165510-May-11 23:50
Member 224165510-May-11 23:50 
QuestionProblem refreshing parent window on child closure Pin
www.Developerof.NET12-Nov-08 2:01
www.Developerof.NET12-Nov-08 2:01 

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.