aspx.cs代码:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.IO;
namespace WebUI
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnUpload_Click(object sender, EventArgs e)
{
try
{
HttpFileCollection hfc = Request.Files;
for (int i = 0; i < hfc.Count; i++)
{
HttpPostedFile hpf = hfc[i];
if (hpf.ContentLength > 0)
{
hpf.SaveAs(Server.MapPath("Upload") + "\\" + Path.GetFileName(hpf.FileName));
}
}
}
catch (Exception ex)
{
Response.Write(ex);
}
}
}
}
写在后面:
1、如果你每次上传的文件总大小超过了4MB,需要修改Web.config文件,在
2、要给服务器上接收上传文件的目录赋予能写文件的权限,本例为Upload目录。
你把php接收到的数据,再返回就可以了,echo 或者exit,die都可以。
$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
success: function(result){
alert( result );//这里的result 就是从你的php页面里返回的数据
}
});
这句写在最开头
把这句写到
$(":file").val()就可以得到file标签的值。
这里有一个多文件上传系统
你可以看看这里是怎样获取的