Wrox Programmer Forums
|
ASP.NET 1.0 and 1.1 Professional For advanced ASP.NET 1.x coders. Beginning-level questions will be redirected to other forums. NOT for "classic" ASP 3 or the newer ASP.NET 2.0 and 3.5
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 23rd, 2006, 03:25 AM
Authorized User
 
Join Date: May 2006
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Sorry but I don't understand.

If I put the actual value of the path from the database (like PDF1.pdf), how will I get a pdf file from a different ID?

 
Old October 23rd, 2006, 04:06 AM
Authorized User
 
Join Date: May 2006
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I made it!!!

I just droped MapPath and coded like this:

Dim RecID
Dim strPath
Dim ImagePath
ImagePath="c:\inetpub\wwwroot\pessoal\docs\"
RecID=Request.QueryString("id")
strPath = imagePath & RecID & ".pdf"
   Response.ClearContent()
   Response.ClearHeaders ()
   Response.ContentType = "application/pdf"
   Response.WriteFile(StrPath)
   Response.Flush()
   Response.Close()

I found the solution in here:
http://www.thescripts.com/forum/thread51090.html

Thanx anyway. You always help a lot!

C U







Similar Threads
Thread Thread Starter Forum Replies Last Post
error while opening the pdf file jijish ASP.NET 2.0 Professional 3 November 23rd, 2007 10:07 AM
Opening a PDF from html page hp1502 Javascript 1 September 19th, 2007 02:15 AM
Opening of New Window to show a .pdf report Dilip Nagle General .NET 5 March 8th, 2007 01:25 AM
Error in Opening PDF File ctranjith General .NET 0 September 30th, 2005 04:53 AM
opening of pdf file viren_balaut Pro JSP 2 August 23rd, 2004 06:43 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.