I have a Web Method returning the image in the form of a string.
I have to display it in the Classic ASP user interface by converting it to jpg or jpeg format.
I am able to do the same thing in ASP.NET by calling the Web Service method and converting it to formbase64 format then storing the returning string value in byte[] i.e.
byte[] byteArrayofimage = System.convert.FormBase64String(WebmethodClass.Webmethod(Parameter1,Parameter2));
Response.ContentType ="Image/Jpeg";
Response.BinaryWrite(byteArrayofimage);
but not in Classic ASP... Please help to get these lines in Classic ASP.