View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.charting
sathya sathya is offline
external usenet poster
 
Posts: 1
Default Client side script in office web component

Hi all,

i am new to office web component, i am using client side script to pull
data from database to office web components. Now our client asks to
proivde an option to export the image to gif, which i am not knowing
how to do in client side script. I have searched lot in google but i
can able to find only solutions to export to gif in asp, server side
code. Bi\ut i need in client side code. I am using vbscript.

Code i found in c#:

Response.ContentType= "image/gif";
Response.BinaryWrite((byte[])objCSpace.GetPicture("gif",500,400));
Response.End();

i need the same code in vbscript (client side).

Please help me to solve this problem. thanks in advance

Sathya