Click here to Skip to main content
15,790,440 members
Home / Discussions / Web Development
   

Web Development

 
QuestionHelp, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne16-Feb-07 3:49
DoomedOne16-Feb-07 3:49 
AnswerRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
Bradml16-Feb-07 12:15
Bradml16-Feb-07 12:15 
GeneralRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne20-Feb-07 4:16
DoomedOne20-Feb-07 4:16 
GeneralRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne20-Feb-07 4:24
DoomedOne20-Feb-07 4:24 
AnswerRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne26-Mar-07 9:24
DoomedOne26-Mar-07 9:24 
GeneralDisplay PDF in ASP.NET Pin
Brady Kelly16-Feb-07 1:55
Brady Kelly16-Feb-07 1:55 
AnswerRe: Display PDF in ASP.NET Pin
Ankur.Bakliwal16-Feb-07 3:19
Ankur.Bakliwal16-Feb-07 3:19 
GeneralRe: Display PDF in ASP.NET Pin
Sylvester george16-Feb-07 3:37
Sylvester george16-Feb-07 3: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 4:19
badgrs16-Feb-07 4:19 
Questionfor ajax, do i nid... Pin
Nekshan15-Feb-07 21:11
Nekshan15-Feb-07 21:11 
AnswerRe: for ajax, do i nid... Pin
Bradml15-Feb-07 23:54
Bradml15-Feb-07 23:54 
AnswerRe: for ajax, do i nid... Pin
badgrs16-Feb-07 0:05
badgrs16-Feb-07 0:05 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 0:58
Bradml16-Feb-07 0:58 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 5:57
theJazzyBrain16-Feb-07 5:57 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 12:12
Bradml16-Feb-07 12:12 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 14:39
theJazzyBrain16-Feb-07 14:39 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 14:48
Bradml16-Feb-07 14:48 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain17-Feb-07 1:01
theJazzyBrain17-Feb-07 1:01 
AnswerRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 5:51
theJazzyBrain16-Feb-07 5:51 
GeneralRe: for ajax, do i nid... Pin
led mike16-Feb-07 5:57
led mike16-Feb-07 5:57 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 6:33
theJazzyBrain16-Feb-07 6:33 
GeneralRe: for ajax, do i nid... Pin
led mike16-Feb-07 6:55
led mike16-Feb-07 6:55 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 7:43
theJazzyBrain16-Feb-07 7:43 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 14:45
theJazzyBrain16-Feb-07 14:45 
QuestionLooking for some Web Developers. [modified] Pin
Programscripts15-Feb-07 19:34
Programscripts15-Feb-07 19: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.