Click here to Skip to main content
15,893,564 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionCan't read number from excel file Pin
rexagainstdmachine18-Sep-07 23:02
rexagainstdmachine18-Sep-07 23:02 
QuestionForm Authentication Pin
bhattiprolu18-Sep-07 22:59
bhattiprolu18-Sep-07 22:59 
Questionhow to debug the following eoor in ASP.Net application using Visual studio 2005 in C# Pin
mavii18-Sep-07 22:07
mavii18-Sep-07 22:07 
AnswerRe: how to debug the following eoor in ASP.Net application using Visual studio 2005 in C# Pin
Sam Xavier18-Sep-07 23:11
Sam Xavier18-Sep-07 23:11 
QuestionCalling Java Webservice from .NET Pin
cloudking1196618-Sep-07 21:38
cloudking1196618-Sep-07 21:38 
QuestionSatellite assemblies and resource files Pin
Krugger40418-Sep-07 21:34
Krugger40418-Sep-07 21:34 
AnswerRe: Satellite assemblies and resource files Pin
Krugger40418-Sep-07 21:54
Krugger40418-Sep-07 21:54 
Questionhelp help help posting data to another page Pin
Ahmad Adnan18-Sep-07 21:21
Ahmad Adnan18-Sep-07 21:21 
long ContentLeghnth = 0;
SendingParameter.Url =
"http://localhost:8851/Mobily%20reminder/Default.aspx";
string sbData = strDataToPost(SendingParameter, ref ContentLeghnth);
System.IO.StreamWriter srWriter = null;
System.Net.HttpWebRequest Request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(SendingParameter.Url);


Request.Method = "POST";
Request.ContentLength = ContentLeghnth;
Request.ContentType = "application/x-www-form-urlencoded";
try
{
srWriter = new System.IO.StreamWriter (Request.GetRequestStream());
srWriter.Write(sbData);
srWriter.Flush();


}
catch (Exception ex)
{
string msg = ex.Message;

}
System.Net.HttpWebResponse Response =(System.Net.HttpWebResponse)Request.GetResponse();
using (System.IO.StreamReader sr = new System.IO.StreamReader(Response.GetResponseStream()))
{
string result = sr.ReadToEnd();
// Close and clean up the StreamReader
sr.Close();
}

return true;

}

the compiler stops at the bold statment

plz help
Questionhow to load any dll on run time. Pin
Piyush Vardhan Singh18-Sep-07 21:19
Piyush Vardhan Singh18-Sep-07 21:19 
QuestionCalling Web Services from JavaScript Ajax Pin
rahuljosh007200018-Sep-07 21:14
rahuljosh007200018-Sep-07 21:14 
Questionasp.net for web development Pin
prithaa18-Sep-07 21:13
prithaa18-Sep-07 21:13 
AnswerRe: asp.net for web development Pin
varshavmane18-Sep-07 23:44
varshavmane18-Sep-07 23:44 
AnswerRe: asp.net for web development Pin
Krugger40418-Sep-07 23:45
Krugger40418-Sep-07 23:45 
QuestionEditable column in Datagrid Pin
Sri_346418-Sep-07 21:06
Sri_346418-Sep-07 21:06 
AnswerRe: Editable column in Datagrid Pin
varshavmane18-Sep-07 22:39
varshavmane18-Sep-07 22:39 
GeneralRe: Editable column in Datagrid Pin
Sri_346418-Sep-07 22:52
Sri_346418-Sep-07 22:52 
GeneralRe: Editable column in Datagrid Pin
varshavmane18-Sep-07 23:34
varshavmane18-Sep-07 23:34 
GeneralRe: Editable column in Datagrid Pin
Sri_346418-Sep-07 23:44
Sri_346418-Sep-07 23:44 
GeneralRe: Editable column in Datagrid Pin
varshavmane18-Sep-07 23:55
varshavmane18-Sep-07 23:55 
Questionaspx page & javascript, Fusion Charts Pin
rcwoods18-Sep-07 20:58
rcwoods18-Sep-07 20:58 
QuestionRequiredFieldValidator Pin
kirthikirthi18-Sep-07 20:50
kirthikirthi18-Sep-07 20:50 
AnswerRe: RequiredFieldValidator Pin
Imran Khan Pathan18-Sep-07 20:56
Imran Khan Pathan18-Sep-07 20:56 
AnswerRe: RequiredFieldValidator Pin
Piyush Vardhan Singh18-Sep-07 20:58
Piyush Vardhan Singh18-Sep-07 20:58 
AnswerRe: RequiredFieldValidator Pin
bhattiprolu18-Sep-07 21:05
bhattiprolu18-Sep-07 21:05 
GeneralRe: RequiredFieldValidator Pin
kirthikirthi18-Sep-07 21:30
kirthikirthi18-Sep-07 21:30 

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.