Click here to Skip to main content
15,881,831 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: calendar popup Pin
sashidhar31-Aug-09 2:22
sashidhar31-Aug-09 2:22 
GeneralRe: calendar popup Pin
ankitjain111031-Aug-09 2:45
ankitjain111031-Aug-09 2:45 
AnswerRe: calendar popup Pin
Abhijit Jana31-Aug-09 2:54
professionalAbhijit Jana31-Aug-09 2:54 
GeneralRe: calendar popup Pin
ankitjain111031-Aug-09 3:00
ankitjain111031-Aug-09 3:00 
AnswerRe: calendar popup Pin
Abhijit Jana31-Aug-09 3:14
professionalAbhijit Jana31-Aug-09 3:14 
QuestionGenerate xml file from sql server in asp.net Pin
.NET- India 31-Aug-09 1:56
.NET- India 31-Aug-09 1:56 
AnswerRe: Generate xml file from sql server in asp.net Pin
compninja2531-Aug-09 4:31
compninja2531-Aug-09 4:31 
GeneralRe: Generate xml file from sql server in asp.net Pin
compninja2531-Aug-09 6:16
compninja2531-Aug-09 6:16 
it didn't dawn on me at first glance that you had a dataset in there...so I don't think the above would work. Since it appears to be coming back from the SQL server correctly, what if you avoided the DataSet all together and just saved it straight to a file?

// create a writer and open the file
TextWriter tw = new StreamWriter("output.xml");


while (datareader.read())
{
// write a line of text to the file
tw.WriteLine(datareader.ToString());
}

// close the stream
tw.Close();


Knowledge is not power, however, the acquisition and appropriate application of knowledge can make you a very powerful individual.

AnswerRe: Generate xml file from sql server in asp.net Pin
www.Developerof.NET31-Aug-09 7:28
www.Developerof.NET31-Aug-09 7:28 
QuestionDiv overlapping Pin
meghamaharshi31-Aug-09 1:38
meghamaharshi31-Aug-09 1:38 
AnswerRe: Div overlapping Pin
sashidhar31-Aug-09 1:52
sashidhar31-Aug-09 1:52 
QuestionOpacity mask in IE8 Pin
vikash_singh31-Aug-09 1:38
vikash_singh31-Aug-09 1:38 
QuestionCould you help me in ASP.Net. Pin
abglorie31-Aug-09 1:19
abglorie31-Aug-09 1:19 
AnswerRe: Could you help me in ASP.Net. [modified] Pin
sashidhar31-Aug-09 1:40
sashidhar31-Aug-09 1:40 
AnswerRe: Could you help me in ASP.Net. Pin
Abhijit Jana31-Aug-09 3:10
professionalAbhijit Jana31-Aug-09 3:10 
Questionhow to open filled page which was not saved due to system has shutdown Pin
itsmitm31-Aug-09 1:08
itsmitm31-Aug-09 1:08 
Questionimage in ASP.Net Pin
Amit Patel198531-Aug-09 0:49
Amit Patel198531-Aug-09 0:49 
AnswerRe: image in ASP.Net Pin
myinstincts31-Aug-09 1:30
myinstincts31-Aug-09 1:30 
AnswerRe: image in ASP.Net Pin
mylogics31-Aug-09 1:30
professionalmylogics31-Aug-09 1:30 
GeneralRe: image in ASP.Net Pin
Amit Patel198531-Aug-09 2:17
Amit Patel198531-Aug-09 2:17 
GeneralRe: image in ASP.Net Pin
sashidhar31-Aug-09 2:25
sashidhar31-Aug-09 2:25 
GeneralRe: image in ASP.Net Pin
Abhijit Jana31-Aug-09 2:49
professionalAbhijit Jana31-Aug-09 2:49 
GeneralRe: image in ASP.Net Pin
Amit Patel198531-Aug-09 3:38
Amit Patel198531-Aug-09 3:38 
Questionaccess Pin
mylogics31-Aug-09 0:46
professionalmylogics31-Aug-09 0:46 
AnswerRe: access Pin
Coding C#31-Aug-09 3:33
Coding C#31-Aug-09 3:33 

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.