Click here to Skip to main content
15,885,216 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionEvents in ASP.NEt Pin
Nandini Sharma16-Oct-06 3:23
Nandini Sharma16-Oct-06 3:23 
AnswerRe: Events in ASP.NEt Pin
Guffa16-Oct-06 3:34
Guffa16-Oct-06 3:34 
QuestionRegarding calculating total amoun of memory and cpu used. Pin
VishalSharmaDev16-Oct-06 3:13
VishalSharmaDev16-Oct-06 3:13 
AnswerRe: Regarding calculating total amoun of memory and cpu used. Pin
Dustin Metzgar16-Oct-06 4:03
Dustin Metzgar16-Oct-06 4:03 
Questionpass the values of variable in code Behind Pin
Naif_Prof16-Oct-06 3:05
Naif_Prof16-Oct-06 3:05 
AnswerRe: pass the values of variable in code Behind Pin
perlmunger16-Oct-06 4:37
perlmunger16-Oct-06 4:37 
QuestionRe: pass the values of variable in code Behind Pin
Naif_Prof16-Oct-06 8:34
Naif_Prof16-Oct-06 8:34 
AnswerRe: pass the values of variable in code Behind Pin
perlmunger16-Oct-06 9:21
perlmunger16-Oct-06 9:21 
If all you want is to pass the value of a variable, just use your Session object:
/// Add variable to Session object in Page1
Session["variable_name"] = myVariable;

And then in your second page
/// Retrieve the variable you added in Page1
string myVariable = Session["variable_name"].ToString();

If this is not feasible because you don't want to use cookies (which Session uses by default), there is a way to enable cookieless sessions.

-Matt

------------------------------------------
The 3 great virtues of a programmer:
Laziness, Impatience, and Hubris.
--Larry Wall

Questiondifference in session class function Pin
amaneet16-Oct-06 1:55
amaneet16-Oct-06 1:55 
AnswerRe: difference in session class function Pin
Elina Blank16-Oct-06 3:04
sitebuilderElina Blank16-Oct-06 3:04 
QuestionProblem in sorting Datagrid Pin
happyheartcs16-Oct-06 0:46
happyheartcs16-Oct-06 0:46 
AnswerRe: Problem in sorting Datagrid Pin
_AK_16-Oct-06 1:11
_AK_16-Oct-06 1:11 
AnswerRe: Problem in sorting Datagrid Pin
VishalSharmaDev16-Jan-07 5:38
VishalSharmaDev16-Jan-07 5:38 
Questionmy xml file Pin
ahmadnaghsh16-Oct-06 0:43
ahmadnaghsh16-Oct-06 0:43 
QuestionAdding thousands separators to numbers in GridView Pin
Mohamed El Gohary15-Oct-06 23:56
Mohamed El Gohary15-Oct-06 23:56 
AnswerRe: Adding thousands separators to numbers in GridView Pin
_AK_16-Oct-06 0:48
_AK_16-Oct-06 0:48 
GeneralRe: Adding thousands separators to numbers in GridView Pin
Mohamed El Gohary16-Oct-06 0:54
Mohamed El Gohary16-Oct-06 0:54 
GeneralRe: Adding thousands separators to numbers in GridView Pin
_AK_16-Oct-06 0:57
_AK_16-Oct-06 0:57 
Questiondropdownlist problem Pin
Kissy1615-Oct-06 23:38
Kissy1615-Oct-06 23:38 
AnswerRe: dropdownlist problem Pin
_AK_16-Oct-06 0:34
_AK_16-Oct-06 0:34 
GeneralRe: dropdownlist problem Pin
Kissy1616-Oct-06 0:55
Kissy1616-Oct-06 0:55 
GeneralRe: dropdownlist problem Pin
_AK_16-Oct-06 0:59
_AK_16-Oct-06 0:59 
Questionprogramming a Messenger!!! Pin
amin_behzadi15-Oct-06 23:28
professionalamin_behzadi15-Oct-06 23:28 
AnswerRe: programming a Messenger!!! Pin
Colin Angus Mackay16-Oct-06 0:44
Colin Angus Mackay16-Oct-06 0:44 
QuestionHow to create media file for web page? Pin
subburaj.sabapathy15-Oct-06 23:07
subburaj.sabapathy15-Oct-06 23:07 

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.