I am trying to write something in JS where JS calls a outside page that generates the image to be displayed. Basically I was trying to set the image by..
Where when active_pull.asp runs some ASP script and then forwards to a image file for the JS script to use. For some reason it never sets the image. Does anyone have any suggestions?
I don't think that is possible, you would have to write the image and set the content type. If your server has .NET installed you can do this easily with
Actually, it must be possible using ASP only as the "gallery mod" uses pure ASP to upload files. It'd be worth you looking at that code to see how it works
basically here is the deal (and i have pages done is php that do this) page A has JS running that calls page B (asp page) to run a query. This query then needs to return the results to page A so page A can figure out if there is anything it needs to do. The way I was thinking is setting a image on page A to a different image that has a different size which the Js on page A can then check the image size to see if the script needs to run. Does this make since?