using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class sc : System.Web.UI.Page
{
string fileExtension;
Random r = new Random();//输出一个随机数
SqlConnection conn;
SqlCommand comm;
protected void Page_Load(object sender, EventArgs e)
{
Image1.ImageUrl = Server.MapPath("~/UpImage/");
}
protected void UploadButton_Click(object sender, EventArgs e)
{
Boolean fileOK=false;
string path = Server.MapPath("~/UpImage/");
if(FileUpload1.HasFile)
{
fileExtension = System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();
string[] allowedExtension ={".gif",".png",".jpeg",".jpg" };
for (int i = 0; i < allowedExtension.Length;i++)
{
if (fileExtension == allowedExtension[i])
{
fileOK = true;
}
}
}
if (fileOK)
{
try
{
//上传并写入数据库,把上传时间和随机数作为图片识别名,以免重复上传一样名字的图片!
string t = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + r.Next();
string c=t+fileExtension;
Response.Write(c);
string sqlconn = Convert.ToString(ConfigurationManager.ConnectionStrings["kingconntion"]);
conn = new SqlConnection(sqlconn);
conn.Open();
comm = new SqlCommand("exec cr2 '"+c+"','"+PhotoName.Text+"','"+PhotoJS.Text+"'",conn);
comm.ExecuteNonQuery();
FileUpload1.PostedFile.SaveAs(path + t + fileExtension);
Response.Redirect("Default.aspx");
}
catch (Exception)
{
Response.Write("<script>alter('错误!')</script>");
}
}
else
{
Label1.Text = "上传文件类型出错!";
}
}
}
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class sc : System.Web.UI.Page
{
string fileExtension;
Random r = new Random();//输出一个随机数
SqlConnection conn;
SqlCommand comm;
protected void Page_Load(object sender, EventArgs e)
{
Image1.ImageUrl = Server.MapPath("~/UpImage/");
}
protected void UploadButton_Click(object sender, EventArgs e)
{
Boolean fileOK=false;
string path = Server.MapPath("~/UpImage/");
if(FileUpload1.HasFile)
{
fileExtension = System.IO.Path.GetExtension(FileUpload1.FileName).ToLower();
string[] allowedExtension ={".gif",".png",".jpeg",".jpg" };
for (int i = 0; i < allowedExtension.Length;i++)
{
if (fileExtension == allowedExtension[i])
{
fileOK = true;
}
}
}
if (fileOK)
{
try
{
//上传并写入数据库,把上传时间和随机数作为图片识别名,以免重复上传一样名字的图片!
string t = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + DateTime.Now.Day.ToString() + r.Next();
string c=t+fileExtension;
Response.Write(c);
string sqlconn = Convert.ToString(ConfigurationManager.ConnectionStrings["kingconntion"]);
conn = new SqlConnection(sqlconn);
conn.Open();
comm = new SqlCommand("exec cr2 '"+c+"','"+PhotoName.Text+"','"+PhotoJS.Text+"'",conn);
comm.ExecuteNonQuery();
FileUpload1.PostedFile.SaveAs(path + t + fileExtension);
Response.Redirect("Default.aspx");
}
catch (Exception)
{
Response.Write("<script>alter('错误!')</script>");
}
}
else
{
Label1.Text = "上传文件类型出错!";
}
}
}