我正在尝试在上传文件时使用 .net 和 c# 将参数从我的 .aspx 页面发送到我的 handler.ashx 中。参数取自具有值的文本框。代码是:
<script type = "text/javascript">
$(document).ready(function() {
$("#<%=FileUpload1.ClientID %>").uploadify({
'swf': 'Scripts/uploadify.swf',
'uploader': 'Handler.ashx',
'auto': true,
'multi': true,
'buttonText': 'Select File(s)',
'removeCompleted' : false,
'fileTypeDesc' : 'PDF Files',
'fileTypeExts' : '*.pdf',
'formData' : { "id": "<%=TBcustnom.Text %>", "pwd": "<%=Pwd.Text %>" }
});
});
handler.ashx 仅接收第一个值(id),但不接收 pwd 部分中的内容。
string id = context.Request["id"];
string pwd = context.Request["pwd"];
如何配置 javascript 以发送两个参数?或者我如何配置 handler.ashx 来接收密码?
此致