日期:2014-05-17 浏览次数:20556 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<form id="form1" action="Handler2.ashx" method="post" enctype="multipart/form-data">
<input type="file" id="upfile" name="upfile" />
<input type="submit" />
</form>
</body>
</html>
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/html";
context.Response.Write("{123412312}");
}