|
-
April 8th, 2004, 04:13 AM
#1
Problem when using Excel with asp.net
Hi,
Thanks for your view, if you could give me some suggestion, I'll be very grateful.
I want to use Excel on the web server to create an .xls file and these codes shows how i create the excel app :
// these codes are in c#
Excel.ApplicationClass myExcel = new Excel.ApplicationClass();
myExcel.Visible = false;
Excel.WorkBooks.add(true);
Excel.WorkBook myBook = Excel.WorkBooks[1];
.......
// when work finished, close it.
myBook.close(true, "temp.xls", Missing.value);
myExcel.Quit();
But, after these codes, there's still EXCEL process zombies in the memory.
How to solve the zombie process?
Does anybody could give some suggestion?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|