esb01
02-16-2007, 07:35 PM
I have the following tag -
<input id="FileToSave" type="file" runat="server">
and use the following method to upload files to the server -
FileToSave.PostedFile.SaveAs(filename)
Can anybody tell me if this is a blocked method? In other words does it need something like DoEvents if the file to save is pretty large? And if yes, how to implement DoEvents in ASP.NET?
<input id="FileToSave" type="file" runat="server">
and use the following method to upload files to the server -
FileToSave.PostedFile.SaveAs(filename)
Can anybody tell me if this is a blocked method? In other words does it need something like DoEvents if the file to save is pretty large? And if yes, how to implement DoEvents in ASP.NET?