本文介绍了从ashx重定向到aspx页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用HTTPUploadHandler上传多个文件。文件上传成功...但我需要在文件上传后禁用aspx页面中的silverlight控件。我怎么能这样做。





公共类HttpUploadHandler:IHttpHandler

{

public void ProcessRequest(HttpContext context)

{

}

}





我想要的是禁用选择文件,上传,清除列表;上传过程中的按钮?完成后重新启用它们?非常感谢提前。

I am using HTTPUploadHandler to upload multiple files. Files getting uploaded successfully... But I need to disable silverlight control in aspx page after files getting uploaded. How can i do this.


public class HttpUploadHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
}
}


What i want is disable the "Select Files", "Upload", "Clear List"; buttons in the uploading process? And re-enable them back after completion? Many thanks in advance.

推荐答案




这篇关于从ashx重定向到aspx页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 11:14
查看更多