Click here to Skip to main content
15,896,269 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
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
Updated 16-Dec-12 23:21pm
v3

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.

C#
//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
 
Share this answer
 
Comments
sreeCoderMan 17-Dec-12 5:41am    
here value is just passing right
ok fine let me ask you if i add another value i need to display both values? how?
[no name] 17-Dec-12 7:18am    
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.. :)
 
Share this answer
 
v2
Comments
sreeCoderMan 17-Dec-12 5:58am    
how to store more values in session
[no name] 17-Dec-12 6:03am    
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)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900