Click here to Skip to main content
Sign Up to vote bad
good
See more: C++CC#ASP.NETHTML
hi friends
 
here is the problem
 
i have to store a value(item) for temporary in a webpage. if i go to another page and add another value (item) the old item and new item should display... how to implement

please show me code
Posted 16 Dec '12 - 23:20
Edited 16 Dec '12 - 23:21


2 solutions

Hi,
 
you can pass the value from one page to another page using the session variable and query string. This will help you in getting the values in other page.
 
//Set the session like
session["Value1"] = value;
 
// Access the value like
value = Convert.ToString(Seeeion["Value1"]);
 
For query string use like
Passing variables between pages using QueryString
 
Thanks
  Permalink  
Comments
sreeCoderMan - 17 Dec '12 - 5:41
here value is just passing right ok fine let me ask you if i add another value i need to display both values? how?
Armando Talex - 17 Dec '12 - 7:18
You can pass any number of values using session variables. An array of values can be passed through the session variables.
need information about page security[^]
 
you can use Session object for that... Link has proper solution of it.. Smile | :)
  Permalink  
Comments
sreeCoderMan - 17 Dec '12 - 5:58
how to store more values in session
Krunal Rohit - 17 Dec '12 - 6:03
http://stackoverflow.com/questions/4638551/store-multiple-values-in-a-session-variable

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 216
1 Sergey Alexandrovich Kryukov 169
2 Tadit Dash 154
3 Richard MacCutchan 145
4 Santhosh G_ 115
0 Sergey Alexandrovich Kryukov 10,338
1 OriginalGriff 7,965
2 CPallini 4,201
3 Rohan Leuva 3,522
4 Maciej Los 3,159


Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 17 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid