<!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>html控件与ashx进行保存上传文件</title>
</head>
<body>
<!--enctype="multipart/form-data"该类型指定传输数据特殊类型,如图片或mp3等,-->
<form action="Handler.ashx" method="post" enctype="multipart/form-data" id="form1">
<p>
<input id="imgfile" name="imgfile" type="file" /></p>
<p>
<input id="Button1" type="submit" value="button" /></p>
</form>
</body>
</html>
>数中拆>>>>>>>>>>>
//下面是ashx文件
<%@ WebHandler Language="C#" Class="Handler" %>
using System
using System.Web
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain"
HttpPostedFile hpf = HttpContext.Current.Request.Files["imgfile"]//HttpPostedFile提供对客户端已培侍上薯枣载的单独文件的访问
string savepath = context.Server.MapPath("." + hpf.FileName)//路径,相对于服务器当前的路径
hpf.SaveAs(savepath)//保存
context.Response.Write("保存成功"+hpf.FileName)
}
public bool IsReusable {
get {
return false
}
}
}
1、将网线连接两台电脑。
2、在第一台电脑中的widows桌面中选择任务栏的“internet访问”按钮。
3、点击“internet访问”后,选择下拉菜单中的“网络和internet设置”。
4、进入“网络和internet设置”后,点击“更改适配器选项”进入网络连接面板。
6、在d出的以太网转台中,选择“属性”点击打开。
7、在以太网属性中选择“internet 协议版本4(TCP/IPV4)”双击打开。
8、在常规中,设置为“使用下面的IP地址”然后填写如图的地址信息。
9、按照以上步骤,设置第二台电脑的IP地址信息。
10、在第一台电脑上,按键盘的“win+r”打开,运行命令框。
11、在运行命令框中升明输入“cmd”,点击确定,打开命令提示符。
12、在d出的命令提示符中输入“ping,192.168.1.1。得到以下信息。
13、在郑猜第二台电脑上吵丛告,重复10到12步骤,得到回复时间,就证明两台点来已经连接成功。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)