Click here to Skip to main content
15,900,643 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Question"life cycle of server control" Pin
ravikiranreddydharmannagari20-Feb-07 23:40
ravikiranreddydharmannagari20-Feb-07 23:40 
AnswerRe: "life cycle of server control" Pin
badgrs21-Feb-07 0:38
badgrs21-Feb-07 0:38 
JokeRe: "life cycle of server control" Pin
Sandeep Akhare21-Feb-07 2:11
Sandeep Akhare21-Feb-07 2:11 
Questionlauch pdf file Pin
srinandan..20-Feb-07 23:05
srinandan..20-Feb-07 23:05 
AnswerRe: lauch pdf file Pin
nikneem200520-Feb-07 23:37
nikneem200520-Feb-07 23:37 
GeneralRe: lauch pdf file Pin
srinandan..21-Feb-07 0:01
srinandan..21-Feb-07 0:01 
AnswerRe: lauch pdf file [modified] Pin
Sylvester george20-Feb-07 23:43
Sylvester george20-Feb-07 23:43 
GeneralRe: lauch pdf file Pin
srinandan..20-Feb-07 23:59
srinandan..20-Feb-07 23:59 
thanks sylveseter,

here is the my code snippet:

protected void btnDownloadForm_Click(object sender, EventArgs e)
{
//DataTable _dtRaiseDepositLevel = new DataTable();
//_dtRaiseDepositLevel = _objXmlHelper.getResult(_objCashier.CreateRaiseCCLimitPDF());

byte[] bytePdf = _objCashier.CreateRaiseCCLimitPDF(MerchantUser.UserName, MerchantUser.Password, (string)Session["Username"]);
char[] charPdf = new char[bytePdf.Length];
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
Response.Buffer = true;
Response.ContentType = "application/pdf";
Response.BinaryWrite(bytePdf);
Response.Flush();
Response.End();
}

bebugging goes successfully but i am unable to find the pdf file.
pls tell me what wrong i am doing.

Regards
Srinandan

GeneralRe: lauch pdf file Pin
Sylvester george21-Feb-07 0:02
Sylvester george21-Feb-07 0:02 
GeneralRe: lauch pdf file Pin
srinandan..21-Feb-07 0:04
srinandan..21-Feb-07 0:04 
GeneralRe: lauch pdf file Pin
Sylvester george21-Feb-07 0:18
Sylvester george21-Feb-07 0:18 
GeneralRe: lauch pdf file Pin
srinandan..21-Feb-07 0:32
srinandan..21-Feb-07 0:32 
GeneralRe: lauch pdf file Pin
Sylvester george21-Feb-07 0:43
Sylvester george21-Feb-07 0:43 
Question[Message Deleted] Pin
Khan.Bangash20-Feb-07 23:01
Khan.Bangash20-Feb-07 23:01 
AnswerRe: Sandeep Pin
Colin Angus Mackay20-Feb-07 23:16
Colin Angus Mackay20-Feb-07 23:16 
AnswerRe: Sandeep Pin
Sandeep Akhare20-Feb-07 23:16
Sandeep Akhare20-Feb-07 23:16 
GeneralRe: Sandeep Pin
Sandeep Akhare20-Feb-07 23:28
Sandeep Akhare20-Feb-07 23:28 
GeneralRe: Sandeep Pin
rama charan20-Feb-07 23:54
rama charan20-Feb-07 23:54 
Questionhow to redirect ot desired page after forms authentication Pin
rama charan20-Feb-07 22:59
rama charan20-Feb-07 22:59 
AnswerRe: how to redirect ot desired page after forms authentication Pin
PandemoniumPasha20-Feb-07 23:32
PandemoniumPasha20-Feb-07 23:32 
Generalhow to redirect ot desired page after forms authentication Pin
rama charan20-Feb-07 23:46
rama charan20-Feb-07 23:46 
GeneralRe: how to redirect ot desired page after forms authentication Pin
luckyve21-Feb-07 0:46
luckyve21-Feb-07 0:46 
GeneralRe: how to redirect ot desired page after forms authentication Pin
rama charan21-Feb-07 0:55
rama charan21-Feb-07 0:55 
GeneralRe: how to redirect ot desired page after forms authentication Pin
luckyve21-Feb-07 2:24
luckyve21-Feb-07 2:24 
Generalits not working Pin
rama charan21-Feb-07 3:09
rama charan21-Feb-07 3:09 

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.