Click here to Skip to main content
15,887,373 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Generate PDF documents from a HTML page using ASP.NET Pin
GopalakrishnanPS1-Aug-13 2:15
GopalakrishnanPS1-Aug-13 2:15 
GeneralRe: Generate PDF documents from a HTML page using ASP.NET Pin
Bernhard Hiller1-Aug-13 3:50
Bernhard Hiller1-Aug-13 3:50 
GeneralRe: Generate PDF documents from a HTML page using ASP.NET Pin
GopalakrishnanPS1-Aug-13 5:06
GopalakrishnanPS1-Aug-13 5:06 
QuestionManually handling ASP.NET sessions Pin
Desmond Lim31-Jul-13 15:32
Desmond Lim31-Jul-13 15:32 
Question3-layer application Pin
larsp77731-Jul-13 9:28
larsp77731-Jul-13 9:28 
SuggestionRe: 3-layer application Pin
Richard MacCutchan31-Jul-13 21:05
mveRichard MacCutchan31-Jul-13 21:05 
Questionxslt template for creating excel file with multiple worksheets Pin
kanniga31-Jul-13 2:01
kanniga31-Jul-13 2:01 
AnswerRe: xslt template for creating excel file with multiple worksheets Pin
kanniga1-Aug-13 0:45
kanniga1-Aug-13 0:45 
I have used the below code.and the corresponding workbooks are added with the data values.

DataSet ds = new DataSet();

Datatable dt1;
dt1 = Details1();
Datatable dt2;
dt1 = Details2();
Datatable dt3;
dt1 = Details3();
ds.Tables.Add(dt1.Copy());
ds.Tables.Add(dt2.Copy());
ds.Tables.Add(dt3.Copy());


using (XmlTextWriter tw = new XmlTextWriter(XMLPath ,
null))
{
tw.Formatting = Formatting.Indented;
tw.Indentation = 10;
tw.WriteStartDocument();
tw.WriteProcessingInstruction("xml-stylesheet", procInfo);
ds.WriteXml(tw);

}
QuestionPrint to serial port printer from the browser (asp.net web app:) Pin
sk_ko30-Jul-13 15:26
sk_ko30-Jul-13 15:26 
AnswerRe: Print to serial port printer from the browser (asp.net web app:) Pin
Ron Beyer30-Jul-13 15:47
professionalRon Beyer30-Jul-13 15:47 
QuestionASP.NET CMS recommendation for a small website Pin
devenv.exe30-Jul-13 4:16
professionaldevenv.exe30-Jul-13 4:16 
AnswerRe: ASP.NET CMS recommendation for a small website Pin
Rahul Rajat Singh31-Jul-13 0:25
professionalRahul Rajat Singh31-Jul-13 0:25 
AnswerRe: ASP.NET CMS recommendation for a small website Pin
Jahanzaib Rahman1-Aug-13 21:05
Jahanzaib Rahman1-Aug-13 21:05 
AnswerRe: ASP.NET CMS recommendation for a small website Pin
Dusara Maulik12-Aug-13 9:40
Dusara Maulik12-Aug-13 9:40 
GeneralMessage Removed Pin
30-Jul-13 3:55
professionaldevenv.exe30-Jul-13 3:55 
QuestionAutomate OAuth2 Pin
y_chen30-Jul-13 3:12
y_chen30-Jul-13 3:12 
Questiontreeview in asp.net Pin
RajivRanjan Yadav30-Jul-13 2:24
RajivRanjan Yadav30-Jul-13 2:24 
AnswerRe: treeview in asp.net Pin
Vani Kulkarni30-Jul-13 20:08
professionalVani Kulkarni30-Jul-13 20:08 
Questionasp.net Pin
Sumathi Sivaraj30-Jul-13 2:05
Sumathi Sivaraj30-Jul-13 2:05 
AnswerRe: asp.net Pin
Vani Kulkarni30-Jul-13 20:11
professionalVani Kulkarni30-Jul-13 20:11 
QuestionRating list Binding Pin
VishwaKL30-Jul-13 0:21
VishwaKL30-Jul-13 0:21 
AnswerRe: Rating list Binding Pin
Dholakiya Ankit10-Sep-13 1:54
Dholakiya Ankit10-Sep-13 1:54 
GeneralRe: Rating list Binding Pin
VishwaKL10-Sep-13 16:53
VishwaKL10-Sep-13 16:53 
GeneralRe: Rating list Binding Pin
Dholakiya Ankit10-Sep-13 17:06
Dholakiya Ankit10-Sep-13 17:06 
GeneralRe: Rating list Binding Pin
VishwaKL10-Sep-13 21:29
VishwaKL10-Sep-13 21:29 

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.