Ask a Question related to ASP.NET General, Design and Development.
-
Jerry J #1
Streaming Image data to an image viewer
I have a third party image viewer that can display various
types of images. The image viewer is ActiveX and lives
inside of Internet Explorer.
To get the image viewer to retrieve an image, java script
on the client looks something like this:
VIEWER.GetImage("http://www.url.com/SomeImage.jpg")
VIEWER.GetImage("http://www.url.com/SomeImage.tif")
Instead of doing the above, I want to have the image
viewer always hit the same web page as in this:
VIEWER.GetImage("http://www.url.com/ImgStreamingFrm.aspx")
ImgStreamingFrm would stream the image data out something
like this:
Response.Clear()
Response.ContentType = "image/tif"
Response.WriteFile("C:\theImage.tif")
The above doesn't work, I believe because the imageviewer
uses the extension such as 'jpg' or 'tif' to know what
kind of image to expect.
Can someone give me a suggestion here?
Jerry J
Jerry J Guest
-
Flash Image Viewer
I am creating a page in DW8 and have inserted an instance of the Flash Image Viewer though despite changing the parameters in the Tag Inspector to... -
Image Viewer in DW8
I'll apologize in advance if this turns out to be so obvious that it's a waste of proples' time, but I can't figure it out. Here's the scenario:... -
Image Viewer Control
Hello All, Could anybody please give me ideas on building a Image viewer control regards, Kuldeep -
Bloom image viewer
Hi all Wondering if anyone out there has used Bloom image viewer in any of their sites. If so I have a question. I have a number of... -
sw image viewer
Hi Im trying to write a image viewer for the web using shockwave. My goal is to make it as simple and fast as acdsee (classic). But I am having...



Reply With Quote

