I wants to capture Table contents(ie. entire table) into image file in aspx page.
How to do?.
There is a code for captuer a portion of he screen.
Cature a rectangle of the screen and save to a png file
[CODE=javascript]var as=new ActiveXObject(" ActiveScreen.Ca pturer");
as.CaptureRect( 200, 200, 400, 300);
var fs=as.SaveToFil e("test3.png" );
WScript.Echo("I mage Size = " + fs.toString() + "\r\n");[/CODE]
But I want to capture only a particular control (Table) contents as image.
How to do?.
There is a code for captuer a portion of he screen.
Cature a rectangle of the screen and save to a png file
[CODE=javascript]var as=new ActiveXObject(" ActiveScreen.Ca pturer");
as.CaptureRect( 200, 200, 400, 300);
var fs=as.SaveToFil e("test3.png" );
WScript.Echo("I mage Size = " + fs.toString() + "\r\n");[/CODE]
But I want to capture only a particular control (Table) contents as image.
Comment