我是新手上传。我在我的 customer.aspx 页面中使用了它。我的代码如下所示。
当我选择多个文件时,它会调用名为 Handler.ashx 的处理程序并执行 ProcessRequest 方法。
我也想实现这些场景
如何从我的处理程序中调用在我的 customer.aspx 页面中定义的服务器端方法“insertDB”。
如何从处理程序中传递在我的 customer.aspx 页面中定义的服务器端方法“errorDB”中的错误。
完成所有处理后,处理程序应刷新我的 customer.aspx 页面
$(文档).ready(函数 () {
$("#<%=file_upload.ClientID %>").uploadify({ 'swf': 'uploadify.swf', 'uploader': 'Handler.ashx', 'cancelImg': 'cancel.png', 'buttonText': 'Select Files', 'fileDesc': 'Image Files', 'fileExt': '*.jpg;*.jpeg;*.gif;*.png', 'multi': true, 'auto': true }); }) </script>