ASP.NET Aspose.pdf

Hello! Sorry for my English.
I have a little question. I have downloaded your .Net component Aspose.PDF (demo) and I want to convert PDF to Word on my WebSite. You component is perfect and very cool! :slight_smile: I have some problems with dll.

I have on my aspx-page: button: “input PDF-file” and “convert”.
If I push button convert - the result is ok! I see Word-file. But If I push button and another man push button in one time - our Website is not available and we don’t see the results. Can you help me? Your dll supports multitasking? How to implement asp-application so that many people could convert at a time!

Thanks

/* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman","serif";}

<![endif]–>

Hi,

Thanks for using our products.

Aspose.Pdf for .NET is compatible with multi-threaded environment but I am afraid currently you cannot use any single document in multiple threads. It’s a know limitation and also specified in [Known Issues](http://www.aspose.com/docs/display/pdfnet/Others) section.

Once a particular user performs an operation, you can dispose the loaded document object by using following code snippet.

[C#]

// load PDF document
Document doc = new Document("");
// close all resources used by document object
doc.Dispose();