Click here to Skip to main content
15,888,302 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRegarding "Connection to the server was reset" error [modified] Pin
dibya_200327-Jun-10 1:34
dibya_200327-Jun-10 1:34 
AnswerRe: Regarding "Connection to the server was reset" error Pin
Vimalsoft(Pty) Ltd27-Jun-10 3:11
professionalVimalsoft(Pty) Ltd27-Jun-10 3:11 
Questiondisplay Dynamic sql in gridview Pin
amina8926-Jun-10 11:03
amina8926-Jun-10 11:03 
AnswerRe: display Dynamic sql in gridview Pin
Sandeep Mewara26-Jun-10 19:37
mveSandeep Mewara26-Jun-10 19:37 
GeneralRe: display Dynamic sql in gridview Pin
amina8927-Jun-10 23:37
amina8927-Jun-10 23:37 
QuestionCan ICallbackEventhandler be implemented and invoked with Asp.net button's click event Pin
K.Safvi26-Jun-10 8:10
K.Safvi26-Jun-10 8:10 
AnswerRe: Can ICallbackEventhandler be implemented and invoked with Asp.net button's click event Pin
Sandeep Mewara26-Jun-10 8:26
mveSandeep Mewara26-Jun-10 8:26 
QuestionAsp.net Request.QueryString not returning the string value Pin
Vidya Amar26-Jun-10 2:50
Vidya Amar26-Jun-10 2:50 
Hello,
I am new to ASP.net. I am trying to access a string sent by Response.Redirect() from one web page to the other but without any success. Everytime the string is null. Here is the code in the first page of the link button click event:-
protected void LinkButton1_Click(object sender, EventArgs e)
{
string ProjName = "xyz";
Response.Redirect("\\Manager\\ProjectwiseExpenditurePage.aspx?ProjName");
}
The string ProjName is having the value "xyz" when it executes. However when the control goes to the next page, in the Page_Load(), the string value is null. Here is the code in the Page_Load of the next page:-
protected void Page_Load(object sender, EventArgs e)
{
string ProjectName = "";
if (Request.QueryString.Count > 0)
{
ProjectName = Request.QueryString["ProjName"];
MessageBox.Show(ProjectName);
}
}
The count value is 1 and the if statement gets executed. However the string ProjName is null. The message box doesn't display any string value.
Hope to get this code working at the earliest.
Thanks in advance Smile | :)
Vidya
AnswerRe: Asp.net Request.QueryString not returning the string value Pin
thatraja26-Jun-10 3:58
professionalthatraja26-Jun-10 3:58 
AnswerRe: Asp.net Request.QueryString not returning the string value Pin
Sandeep Mewara26-Jun-10 6:03
mveSandeep Mewara26-Jun-10 6:03 
GeneralRe: Asp.net Request.QueryString not returning the string value Pin
Vidya Amar30-Jun-10 7:19
Vidya Amar30-Jun-10 7:19 
QuestionFile upload using C# Pin
Amit Patel198526-Jun-10 0:29
Amit Patel198526-Jun-10 0:29 
AnswerRe: File upload using C# Pin
raju melveetilpurayil26-Jun-10 0:50
professionalraju melveetilpurayil26-Jun-10 0:50 
AnswerRe: File upload using C# Pin
Sandeep Mewara26-Jun-10 6:00
mveSandeep Mewara26-Jun-10 6:00 
Questionwindow.print() Pin
Morgs Morgan26-Jun-10 0:16
Morgs Morgan26-Jun-10 0:16 
AnswerRe: window.print() Pin
raju melveetilpurayil26-Jun-10 1:57
professionalraju melveetilpurayil26-Jun-10 1:57 
QuestionCrystal Reports with SqlExpress Pin
Anil Kumar.Arvapalli25-Jun-10 23:35
Anil Kumar.Arvapalli25-Jun-10 23:35 
AnswerRe: Crystal Reports with SqlExpress Pin
raju melveetilpurayil26-Jun-10 0:24
professionalraju melveetilpurayil26-Jun-10 0:24 
Answer[Cross Post] Crystal Reports with SqlExpress Pin
Sandeep Mewara26-Jun-10 5:54
mveSandeep Mewara26-Jun-10 5:54 
QuestionCustom membership database... hashing/encrypting passwords with salt? Pin
Jacob Dixon25-Jun-10 17:22
Jacob Dixon25-Jun-10 17:22 
AnswerRe: Custom membership database... hashing/encrypting passwords with salt? Pin
Jacob Dixon26-Jun-10 5:40
Jacob Dixon26-Jun-10 5:40 
QuestionSave Button is not working in Telerik Rad Window Pin
indian14325-Jun-10 9:11
indian14325-Jun-10 9:11 
AnswerRe: Save Button is not working in Telerik Rad Window Pin
thatraja25-Jun-10 10:56
professionalthatraja25-Jun-10 10:56 
AnswerRe: Save Button is not working in Telerik Rad Window Pin
Vimalsoft(Pty) Ltd25-Jun-10 11:00
professionalVimalsoft(Pty) Ltd25-Jun-10 11:00 
QuestionTrying to export from ASP.NET to Powerpoint 2007 [modified] Pin
watchdogger25-Jun-10 5:18
watchdogger25-Jun-10 5:18 

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.