I am trying to use Response.BinaryWrite to open a new window with a tif file.  A 
multipage tif is built on the fly with a memoryfile and is in a byte Array.  I have 
tried various itterations of the code below.  It has opened the image/fax viewer but 
there is no content.  I know the byte array is populated properly.  Please help....

Thanks

'Response.Buffer = False
'Response.Charset = "UTF-8"
Response.ContentType = "image/tiff"
'Response.AddHeader("Content-Type", "image/tif")
'Response.AddHeader("Content-Disposition", "inline;filename=image.tiff")
Response.BinaryWrite(br)
Response.End()

===================================
This list is hosted by DevelopMentorŪ  http://www.develop.com
Some .NET courses you may be interested in:

NEW! Guerrilla ASP.NET, 17 May 2004, in Los Angeles
http://www.develop.com/courses/gaspdotnetls

View archives and manage your subscription(s) at http://discuss.develop.com

Reply via email to