最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
兼容ie,ff异步表单提交与无刷新提交
时间:2022-06-25 04:22:14 编辑:袖梨 来源:一聚教程网
兼容ie,ff异步表单提交与无刷新提交
htm代码
秦仕川
handler.ashx文件
using system;
using system.web;public class handler : ihttphandler {
public void processrequest (httpcontext context) {
var name = context.request["username"];
var age = context.request["age"];
var address = context.request["address"];
var file = context.request.files[0].filename;
var ret = name + " " + age + " " + address + " " + file;
writeform(context, ret);
}
public bool isreusable {
get {
return false;
}
}
public void writeform(httpcontext context,string str)
{
string method = context.request["callback"];
string hs = "";
context.response.write(hs);
context.response.flush();
context.response.close();
context.response.end();
}
}
相关文章
- 微信电脑版手机离开会导致微信电脑版断开吗 04-04
- 咸鱼如何下架商品 04-04
- 学信网官方入口网页版在哪里 04-04
- 饺子云app如何获取永久时长 04-04
- 在哪能看到美团2025年度报告 04-04
- 汗汗漫画网页版如何阅读 04-04