2015-05-19 14:45:47 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.UI;
|
|
|
|
|
using System.Web.UI.WebControls;
|
|
|
|
|
|
|
|
|
|
namespace FineUI.Examples.form
|
|
|
|
|
{
|
|
|
|
|
public partial class fileupload_toolbar : PageBase
|
|
|
|
|
{
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void filePhoto_FileSelected(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (filePhoto.HasFile)
|
|
|
|
|
{
|
|
|
|
|
string fileName = filePhoto.ShortFileName;
|
|
|
|
|
|
|
|
|
|
if (!ValidateFileType(fileName))
|
|
|
|
|
{
|
|
|
|
|
Alert.Show("无效的文件类型!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fileName = fileName.Replace(":", "_").Replace(" ", "_").Replace("\\", "_").Replace("/", "_");
|
|
|
|
|
fileName = DateTime.Now.Ticks.ToString() + "_" + fileName;
|
|
|
|
|
|
|
|
|
|
filePhoto.SaveAs(Server.MapPath("~/upload/" + fileName));
|
|
|
|
|
|
|
|
|
|
imgPhoto.ImageUrl = "~/upload/" + fileName;
|
|
|
|
|
|
|
|
|
|
// 清空文件上传组件
|
|
|
|
|
filePhoto.Reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void btnSubmit_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (imgPhoto.ImageUrl == "~/res/images/blank.png")
|
|
|
|
|
{
|
|
|
|
|
filePhoto.MarkInvalid("请先上传个人头像!");
|
|
|
|
|
|
|
|
|
|
Alert.ShowInTop("请先上传个人头像!");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Alert.ShowInTop("用户名:" + tbxUserName.Text + "<br/>" +
|
|
|
|
|
"邮箱:" + tbxEmail.Text + "<br/>" +
|
|
|
|
|
"头像地址:" + imgPhoto.ImageUrl + "<br/>");
|
|
|
|
|
|
|
|
|
|
// 清空表单字段(注意,不要清空imgPhoto,否则就看不到上传的头像了)
|
|
|
|
|
filePhoto.Reset();
|
|
|
|
|
tbxEmail.Reset();
|
|
|
|
|
tbxUserName.Reset();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2013-11-01 14:13:51 +08:00
|
|
|
|
}
|