Click here to Skip to main content
15,886,362 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionConference chat problem Pin
SreejithAchutan28-Nov-07 17:34
SreejithAchutan28-Nov-07 17:34 
QuestionBenefit of make the business layer class as sealed class Pin
hogan.smith28-Nov-07 17:31
hogan.smith28-Nov-07 17:31 
AnswerRe: Benefit of make the business layer class as sealed class Pin
Michael Sync28-Nov-07 18:43
Michael Sync28-Nov-07 18:43 
GeneralRe: Benefit of make the business layer class as sealed class Pin
hogan.smith28-Nov-07 19:05
hogan.smith28-Nov-07 19:05 
Questionget SCOPE_IDENTITY() in asp.net Pin
AnhTin28-Nov-07 16:53
AnhTin28-Nov-07 16:53 
AnswerRe: get SCOPE_IDENTITY() in asp.net Pin
Michael Sync28-Nov-07 16:55
Michael Sync28-Nov-07 16:55 
GeneralRe: get SCOPE_IDENTITY() in asp.net Pin
AnhTin28-Nov-07 17:13
AnhTin28-Nov-07 17:13 
QuestionPushing Multiple Files In One Response Pin
RB@Emphasys28-Nov-07 12:29
RB@Emphasys28-Nov-07 12:29 
Hello Everyone,

I did a little searching around and couldn't find a good answer to this problem. I have multiple files, of multiple file types, that I would like to push to the client side with one button click. I'm doing one at a time just fine in the following fashion:

PDFGenerator oPDFGenerator = new PDFGenerator();
byte[] oByte = oPDFGenerator.Genereate52670a1PDF(Page.Request.PhysicalApplicationPath);

if (oByte != null)
{
this.Page.Response.ContentType = "application/pdf";
this.Page.Response.AddHeader("Content-Disposition", "attachment; filename=52670a1.pdf");
this.Page.Response.BinaryWrite(oByte);
this.Page.Response.Flush();
this.Page.Response.End();
}

Any idea on how I could pull this off with multiple files? Thanks for any suggestions in advance,

Ryan
AnswerRe: Pushing Multiple Files In One Response Pin
Prateek G28-Nov-07 17:42
Prateek G28-Nov-07 17:42 
QuestionFloor Map Pin
alexfromto28-Nov-07 8:32
alexfromto28-Nov-07 8:32 
AnswerRe: Floor Map Pin
Paul Conrad28-Nov-07 16:24
professionalPaul Conrad28-Nov-07 16:24 
GeneralRe: Floor Map Pin
alexfromto29-Nov-07 2:51
alexfromto29-Nov-07 2:51 
QuestionMake connection to Excel Pin
raushan raj28-Nov-07 7:03
raushan raj28-Nov-07 7:03 
AnswerRe: Make connection to Excel Pin
pmarfleet28-Nov-07 8:44
pmarfleet28-Nov-07 8:44 
GeneralRe: Make connection to Excel Pin
Amol M Vaidya28-Nov-07 16:42
professionalAmol M Vaidya28-Nov-07 16:42 
GeneralRe: Make connection to Excel Pin
pmarfleet28-Nov-07 19:34
pmarfleet28-Nov-07 19:34 
QuestionBest books on ASP .NET Pin
Mohammad A Gdeisat28-Nov-07 5:42
Mohammad A Gdeisat28-Nov-07 5:42 
AnswerRe: Best books on ASP .NET Pin
Paul Conrad28-Nov-07 16:25
professionalPaul Conrad28-Nov-07 16:25 
AnswerRe: Best books on ASP .NET Pin
Amol M Vaidya28-Nov-07 16:48
professionalAmol M Vaidya28-Nov-07 16:48 
AnswerRe: Best books on ASP .NET Pin
KANGAROO_28-Nov-07 20:01
KANGAROO_28-Nov-07 20:01 
Questionwork shift input and write it to a database Pin
roylamers28-Nov-07 5:36
roylamers28-Nov-07 5:36 
AnswerRe: work shift input and write it to a database Pin
Paul Conrad28-Nov-07 16:26
professionalPaul Conrad28-Nov-07 16:26 
Questionasp Pin
Ishan148728-Nov-07 5:31
Ishan148728-Nov-07 5:31 
AnswerRe: asp Pin
J4amieC28-Nov-07 5:56
J4amieC28-Nov-07 5:56 
AnswerRe: asp Pin
Guffa28-Nov-07 7:53
Guffa28-Nov-07 7:53 

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.