Click here to Skip to main content
15,897,518 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: FileUpload Control with Progressbar in Asp.net Pin
Dinesh Reghunath9-Oct-09 1:57
professionalDinesh Reghunath9-Oct-09 1:57 
QuestionHow do I populate a DataSet from a XML string? Pin
janani138-Oct-09 18:41
janani138-Oct-09 18:41 
AnswerRe: How do I populate a DataSet from a XML string? Pin
Nigel Ferrissey8-Oct-09 18:49
Nigel Ferrissey8-Oct-09 18:49 
AnswerRe: How do I populate a DataSet from a XML string? Pin
sashidhar8-Oct-09 18:57
sashidhar8-Oct-09 18:57 
GeneralRe: How do I populate a DataSet from a XML string? Pin
janani138-Oct-09 19:00
janani138-Oct-09 19:00 
GeneralRe: How do I populate a DataSet from a XML string? Pin
sashidhar8-Oct-09 19:17
sashidhar8-Oct-09 19:17 
GeneralRe: How do I populate a DataSet from a XML string? Pin
janani138-Oct-09 19:20
janani138-Oct-09 19:20 
GeneralRe: How do I populate a DataSet from a XML string? Pin
sashidhar8-Oct-09 19:27
sashidhar8-Oct-09 19:27 
Check the response stream, and keep a break point on the bolded text ,extract the string str, .and check the string format.Is it coming in the form of XML.
if it is comming..!
use ReadtoEnd metod
HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();
       using (StreamReader sr =
          new StreamReader(objResponse.GetResponseStream()))
       {
           result = sr.ReadToEnd();

                 // Close and clean up the StreamReader
           sr.Close();
       }


MyFirstArticlePublished: MenuControlSelectedItem
Why Do Some People Forget To Mark as Answer .If It Helps.

GeneralRe: How do I populate a DataSet from a XML string? Pin
janani138-Oct-09 19:34
janani138-Oct-09 19:34 
GeneralRe: How do I populate a DataSet from a XML string? Pin
sashidhar8-Oct-09 19:39
sashidhar8-Oct-09 19:39 
QuestionHow to read data from a http page. Pin
souravghosh188-Oct-09 18:34
souravghosh188-Oct-09 18:34 
AnswerRe: How to read data from a http page. Pin
Nigel Ferrissey8-Oct-09 18:58
Nigel Ferrissey8-Oct-09 18:58 
QuestionHTML FONT Pin
Sachin Dubey8-Oct-09 18:27
Sachin Dubey8-Oct-09 18:27 
AnswerRe: HTML FONT Pin
janani138-Oct-09 18:42
janani138-Oct-09 18:42 
GeneralRe: HTML FONT Pin
Sachin Dubey8-Oct-09 18:47
Sachin Dubey8-Oct-09 18:47 
GeneralRe: HTML FONT Pin
janani138-Oct-09 18:56
janani138-Oct-09 18:56 
GeneralRe: HTML FONT Pin
Sachin Dubey8-Oct-09 19:08
Sachin Dubey8-Oct-09 19:08 
GeneralRe: HTML FONT Pin
janani138-Oct-09 19:16
janani138-Oct-09 19:16 
GeneralRe: HTML FONT Pin
Russ-T8-Oct-09 20:07
Russ-T8-Oct-09 20:07 
AnswerRe: HTML FONT Pin
Dinesh Reghunath9-Oct-09 1:30
professionalDinesh Reghunath9-Oct-09 1:30 
GeneralRe: HTML FONT Pin
Dinesh Reghunath9-Oct-09 1:30
professionalDinesh Reghunath9-Oct-09 1:30 
QuestionNot able to call .NET function with return value in javascript Pin
amittinku8-Oct-09 18:05
amittinku8-Oct-09 18:05 
AnswerRe: Not able to call .NET function with return value in javascript Pin
Nisha Agrawal8-Oct-09 19:07
Nisha Agrawal8-Oct-09 19:07 
GeneralRe: Not able to call .NET function with return value in javascript Pin
amittinku8-Oct-09 19:13
amittinku8-Oct-09 19:13 
AnswerRe: Not able to call .NET function with return value in javascript Pin
Nisha Agrawal8-Oct-09 22:54
Nisha Agrawal8-Oct-09 22:54 

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.