Click here to Skip to main content
15,900,907 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Problem With Back Button Pin
Deepak Nigam7-May-08 8:37
Deepak Nigam7-May-08 8:37 
QuestionOpen new page Pin
ksaw1237-May-08 7:40
ksaw1237-May-08 7:40 
AnswerRe: Open new page Pin
SomeGuyThatIsMe7-May-08 7:52
SomeGuyThatIsMe7-May-08 7:52 
QuestionReportViewer InitialToggleState ignored? Pin
Member 43822327-May-08 4:38
Member 43822327-May-08 4:38 
Questiongetting a string from the previous page Pin
laziale7-May-08 4:07
laziale7-May-08 4:07 
AnswerRe: getting a string from the previous page Pin
Syed Ali Raza7-May-08 4:19
Syed Ali Raza7-May-08 4:19 
GeneralRe: getting a string from the previous page Pin
Deepak Nigam7-May-08 8:40
Deepak Nigam7-May-08 8:40 
AnswerRe: getting a string from the previous page Pin
eyeseetee7-May-08 4:26
eyeseetee7-May-08 4:26 
string stringname = (Request.QueryString["variable"]);

or just use sessions, that is a good way of transfering information from page to page
so set a session in one page:

Session["session1"] = stringname;

then get the session

if (Session["session1"] != null)
{
stringname= Session["session1"].ToString();
}
AnswerRe: getting a string from the previous page Pin
Deepak Nigam7-May-08 8:41
Deepak Nigam7-May-08 8:41 
QuestionInstalling a web service and a web page on another machine! Pin
goldoche7-May-08 3:50
goldoche7-May-08 3:50 
AnswerRe: Installing a web service and a web page on another machine! Pin
laziale7-May-08 4:10
laziale7-May-08 4:10 
GeneralRe: Installing a web service and a web page on another machine! Pin
goldoche7-May-08 4:20
goldoche7-May-08 4:20 
QuestionHow to get a datarow from a datable in C#? Pin
salon7-May-08 3:40
salon7-May-08 3:40 
AnswerRe: How to get a datarow from a datable in C#? Pin
Herman<T>.Instance7-May-08 3:55
Herman<T>.Instance7-May-08 3:55 
GeneralRe: How to get a datarow from a datable in C#? Pin
Syed Ali Raza7-May-08 4:06
Syed Ali Raza7-May-08 4:06 
AnswerRe: How to get a datarow from a datable in C#? Pin
J4amieC7-May-08 4:16
J4amieC7-May-08 4:16 
Questioncreate controls dynamically [modified] Pin
ptvce7-May-08 2:34
ptvce7-May-08 2:34 
QuestionNeed assistance with Url ReWriting Pin
Shriniwasan Viswanathan7-May-08 0:53
Shriniwasan Viswanathan7-May-08 0:53 
Questionspace between elements... Pin
SamRST7-May-08 0:35
SamRST7-May-08 0:35 
AnswerRe: space between elements... Pin
Christian Graus7-May-08 0:38
protectorChristian Graus7-May-08 0:38 
GeneralRe: space between elements... Pin
SamRST7-May-08 0:41
SamRST7-May-08 0:41 
GeneralRe: space between elements... Pin
eyeseetee7-May-08 0:46
eyeseetee7-May-08 0:46 
GeneralRe: space between elements... Pin
SamRST7-May-08 0:53
SamRST7-May-08 0:53 
GeneralRe: space between elements... Pin
SamRST7-May-08 0:56
SamRST7-May-08 0:56 
GeneralRe: space between elements... Pin
eyeseetee7-May-08 3:14
eyeseetee7-May-08 3:14 

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.