Hello i have a simply ASP page written in vb in visual web developer 2005:
Schematics is this ---->
1-user select file with file upload control
2-user click a button
3-asp page transfer file on server via FileUpload1.PostedFile.SaveAs method
4-server stock this file on session("filedata")array (oFileStream.Read(session("fileData"), 0, lbytes)) and then execute some operation on this array
5-server convert this fileinto another file .modified and save it on a server folder(oFile.Write(session("fileData"), 0, lbytes)
6-server trasmit .modified file to user with response.trasmitfile method("path")
All this work, but when i tryto do it from two pc on same timewe get error and timeout and all application seems to lock
If only oneuser on asp page all works ok
Is this a trouble on something on code? or Poor server performance?
...
Go to the complete details ...