B
Bob
I was wondering if anyone knew how to display an OWC chart without
having it be the only thing on the page. I am currently using the
following code to display my chart:
Response.ContentType = "image/gif"
Response.BinaryWrite(CType(objCSpace.GetPicture("gif", 700, 400),
Byte()))
Can I assign the chart to an ASP.Net object or write it into a SPAN or
DIV? Can write the file into memory and assign an Image Objects URL
to the object in memory? Any ideas? I can't write the file to the
web server and then display the picture because I don't have access to
write files to the web server, and the access won't be granted either
for security reasons.
Thanks in advance for any help you can offer.
having it be the only thing on the page. I am currently using the
following code to display my chart:
Response.ContentType = "image/gif"
Response.BinaryWrite(CType(objCSpace.GetPicture("gif", 700, 400),
Byte()))
Can I assign the chart to an ASP.Net object or write it into a SPAN or
DIV? Can write the file into memory and assign an Image Objects URL
to the object in memory? Any ideas? I can't write the file to the
web server and then display the picture because I don't have access to
write files to the web server, and the access won't be granted either
for security reasons.
Thanks in advance for any help you can offer.