Click here to Skip to main content
15,868,016 members
Home / Discussions / Web Development
   

Web Development

 
QuestionHelp, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne16-Feb-07 2:49
DoomedOne16-Feb-07 2:49 
AnswerRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
Bradml16-Feb-07 11:15
Bradml16-Feb-07 11:15 
GeneralRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne20-Feb-07 3:16
DoomedOne20-Feb-07 3:16 
GeneralRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne20-Feb-07 3:24
DoomedOne20-Feb-07 3:24 
AnswerRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne26-Mar-07 8:24
DoomedOne26-Mar-07 8:24 
GeneralDisplay PDF in ASP.NET Pin
Brady Kelly16-Feb-07 0:55
Brady Kelly16-Feb-07 0:55 
AnswerRe: Display PDF in ASP.NET Pin
Ankur.Bakliwal16-Feb-07 2:19
Ankur.Bakliwal16-Feb-07 2:19 
GeneralRe: Display PDF in ASP.NET Pin
Sylvester george16-Feb-07 2:37
Sylvester george16-Feb-07 2:37 
yes this would be a Frame application

In the First Frame you can have TextBox

In the Second Frame you can add this code


FileStream fileStream = new FileStream("c:\\Admin.pdf", FileMode.OpenOrCreate, FileAccess.Read);

long len;

len = fileStream.Length;

Byte[] fileAsByte = new Byte[len];

fileStream.Read(fileAsByte, 0, fileAsByte.Length);


Response.Clear();
Response.ClearContent();
Response.ClearHeaders();

Response.Buffer = true;
Response.ContentType = "application/pdf";
Response.BinaryWrite(fileAsByte);
Response.Flush();
Response.End();

Regards,
Sylvester G
Senior Software Engineer
Xoriant Solutions
sylvester_g_m@yahoo.com

GeneralRe: Display PDF in ASP.NET Pin
badgrs16-Feb-07 3:19
badgrs16-Feb-07 3:19 
Questionfor ajax, do i nid... Pin
Nekshan15-Feb-07 20:11
Nekshan15-Feb-07 20:11 
AnswerRe: for ajax, do i nid... Pin
Bradml15-Feb-07 22:54
Bradml15-Feb-07 22:54 
AnswerRe: for ajax, do i nid... Pin
badgrs15-Feb-07 23:05
badgrs15-Feb-07 23:05 
GeneralRe: for ajax, do i nid... Pin
Bradml15-Feb-07 23:58
Bradml15-Feb-07 23:58 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 4:57
theJazzyBrain16-Feb-07 4:57 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 11:12
Bradml16-Feb-07 11:12 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 13:39
theJazzyBrain16-Feb-07 13:39 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 13:48
Bradml16-Feb-07 13:48 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain17-Feb-07 0:01
theJazzyBrain17-Feb-07 0:01 
AnswerRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 4:51
theJazzyBrain16-Feb-07 4:51 
GeneralRe: for ajax, do i nid... Pin
led mike16-Feb-07 4:57
led mike16-Feb-07 4:57 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 5:33
theJazzyBrain16-Feb-07 5:33 
GeneralRe: for ajax, do i nid... Pin
led mike16-Feb-07 5:55
led mike16-Feb-07 5:55 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 6:43
theJazzyBrain16-Feb-07 6:43 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 13:45
theJazzyBrain16-Feb-07 13:45 
QuestionLooking for some Web Developers. [modified] Pin
Programscripts15-Feb-07 18:34
Programscripts15-Feb-07 18:34 

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.