Click here to Skip to main content
15,880,796 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to pass data from one page to another page.. Pin
_AK_21-Jul-06 0:45
_AK_21-Jul-06 0:45 
GeneralRe: How to pass data from one page to another page.. Pin
Amit Agarrwal21-Jul-06 0:20
Amit Agarrwal21-Jul-06 0:20 
GeneralRe: How to pass data from one page to another page.. Pin
_AK_21-Jul-06 0:32
_AK_21-Jul-06 0:32 
GeneralRe: How to pass data from one page to another page.. Pin
Amit Agarrwal21-Jul-06 0:40
Amit Agarrwal21-Jul-06 0:40 
GeneralRe: How to pass data from one page to another page.. Pin
_AK_21-Jul-06 0:48
_AK_21-Jul-06 0:48 
AnswerRe: How to pass data from one page to another page.. Pin
blurMember20-Jul-06 23:46
blurMember20-Jul-06 23:46 
GeneralRe: How to pass data from one page to another page.. Pin
ypsyong20-Jul-06 23:59
ypsyong20-Jul-06 23:59 
AnswerRe: How to pass data from one page to another page.. Pin
bluewavestrider21-Jul-06 4:44
bluewavestrider21-Jul-06 4:44 
To pass data in-between forms, u have several options. To get a proper overview, search for state management in MSDN.
For immediate help:

string name = "Pei Sun";
Arraylist nickNames = new Arraylist(3);
nickNames.Add("PeSun");
DataSet ds = new DataSet();
//1. You can use HttpCookie which represents a cookie stored on the client's machine.
HttpCookie myData = new HttpCookie("CookieName");
myData.Expires.AddMinutes(5);
myData.Values.Add("name", name);
myData.Values.Add("nickNames", nickNames);
//add ds in the same way.
//Then add the cookie to the HttpSession.Cookies collection
HttpSession.Cookies.Add(myData);
//And thats it. You can redirect to your new page.




Live in fragments no longer. Only connect.

QuestionTime Format Pin
Uma Kameswari20-Jul-06 21:11
Uma Kameswari20-Jul-06 21:11 
AnswerRe: Time Format Pin
VenkataRamana.Gali20-Jul-06 21:44
VenkataRamana.Gali20-Jul-06 21:44 
AnswerRe: Time Format Pin
Grapes-R-Fun21-Jul-06 15:10
Grapes-R-Fun21-Jul-06 15:10 
QuestionPrinting A DataGird In A Window Application Pin
Vipin Venugopal20-Jul-06 20:47
Vipin Venugopal20-Jul-06 20:47 
AnswerRe: Printing A DataGird In A Window Application Pin
Paddy Boyd20-Jul-06 21:58
Paddy Boyd20-Jul-06 21:58 
AnswerRe: Printing A DataGird In A Window Application Pin
blurMember20-Jul-06 23:19
blurMember20-Jul-06 23:19 
QuestionResize the iframe Pin
kavithapuranik20-Jul-06 19:25
kavithapuranik20-Jul-06 19:25 
AnswerRe: Resize the iframe Pin
thomas_joyee20-Jul-06 21:05
thomas_joyee20-Jul-06 21:05 
GeneralRe: Resize the iframe Pin
kavithapuranik20-Jul-06 21:19
kavithapuranik20-Jul-06 21:19 
QuestionCSV Read in asp.net c# Pin
Malayil alex20-Jul-06 18:23
Malayil alex20-Jul-06 18:23 
AnswerRe: CSV Read in asp.net c# Pin
WillemM20-Jul-06 22:44
WillemM20-Jul-06 22:44 
QuestionIndexing Server with master pages - improve ranking? Pin
lucasfong20-Jul-06 14:58
lucasfong20-Jul-06 14:58 
AnswerRe: Indexing Server with master pages - improve ranking? Pin
minhpc_bk20-Jul-06 16:24
minhpc_bk20-Jul-06 16:24 
Questiononline vedio streaming Pin
karimkamal20-Jul-06 14:44
karimkamal20-Jul-06 14:44 
AnswerRe: online vedio streaming Pin
minhpc_bk20-Jul-06 16:26
minhpc_bk20-Jul-06 16:26 
QuestionMain differences between .Net 1.1 and 2.0 Pin
munklefish20-Jul-06 14:32
munklefish20-Jul-06 14:32 
AnswerRe: Main differences between .Net 1.1 and 2.0 Pin
Not Active20-Jul-06 14:40
mentorNot Active20-Jul-06 14:40 

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.