我没有将多面读作成像。 我有一个网络应用程序,把一个大的温带上倍。 我愿接手这一节奏文件,并在文件上载后做一些其他事情。 如果没有用户在网站上查阅,我能否在另一个读物上做这项工作? 感谢任何帮助或建议。
1.User post large file 2.uploading temp to server 3.After upload completes. I would like to run another thread/worker that can run without any user iteration but is trigger by the user.
void uploading(){
//Uploading file To server
}
void Submitclick(){
Start a Thread
Thread thread = new Thread(DoThreadWork);// does the user still need to be logged in?
Send to another page
}
void DoThreadWork(){Do this in background}