hi
I tried developing a page in asp and populated data into the page.
I also wrote a perl script that will get this page and store it in a different location and then attatch the page with the mail and send.
when i do this, all my labels in the page are lost and the data grids doesnot work properly.
To store it, i basically use MLWP::Simple.
Can anybody give me the solution to solve this problem.
Any suggestion would be of gr8 help!!!
here is the code snipet -
i call a batch file that has the following code-
perl.exe -MLWP::Simple -e "../in_status.aspx'" >>D:\Load_Status.htm
after that in the perl code-
$mail_msg->attach(Type => 'htm',
Path => 'path_name\P_Status.htm',
Filename => 'P_Status.htm');
Thanks in advance!!!