当我在没有在 iis 中托管的情况下使用 uploadify 时,它可以工作,但在 IIS 中它不工作我收到以下错误消息 http 500 错误
我的 uplodify 包含 likw
<script type="text/javascript">
$(document).ready(function () {
$("#<%=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,
'onError': function (event, ID, fileObj, errorObj) {
alert(errorObj.type + ' Error: ' + errorObj.info);
},
'onUploadSuccess': function (file, data, response) {
$.ajax(
{
type: "POST",
contentType: "application/json; charset=utf-8",
url: "Upload.aspx/ServerSideMethod",
data: "{ sendData: 'ok' }",
success: function (result) {
alert(result.d);
}
})
}
});
})
// $("#<%=ddlPageName.ClientID %>").change(function () {
// alert("hi");
// var Pnamespace = $('#<%=ddlCustomerName.ClientID %> option:selected').attr('value');
// $("#<%=hnpagenamespace.ClientID %>").attr('value', Pnamespace);
// });
</script>
在upload.aspx页面中的ServerSideMethod方法下面
[WebMethod(EnableSession=true)]
public static string ServerSideMethod()
{
string strSend = string.Empty;
strsend="hi";
}
return strSend;
}