Upload the automatic upgrade of the software under. Net--upload
The code is as follows:
UpLoad.aspx.cs
Using System;
Using System.Collections;
Using System.ComponentModel;
Using System.Data;
Using System.Drawing;
Using System.Web;
Using System.Web.SessionState;
Using System.Web.UI;
Using System.Web.UI.WebControls;
Using System.Web.UI.HtmlControls;
Using System.IO;
Namespace Uploadnote
{
<summary>
Summary description of the WebForm1.
</summary>
public class UpLoad:System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label fname;
protected System.Web.UI.WebControls.Label Fenc;
protected System.Web.UI.WebControls.Label fsize;
protected System.Web.UI.WebControls.Label Labelerror;
protected System.Web.UI.HtmlControls.HtmlInputFile myFile;
protected System.Web.UI.HtmlControls.HtmlInputButton Button1;
private void Page_Load (object sender, System.EventArgs e)
{
Place user code here to initialize page
if (Labelerror.text!= "")
{
Labelerror.text = "";
}
}
Code generated #region the Web forms Designer
Override protected void OnInit (EventArgs e)
{
//
CodeGen: This call is required for the ASP.net Web forms Designer.
//
InitializeComponent ();
Base. OnInit (e);
}
<summary>
Designer supports required methods-do not use the Code editor to modify
The contents of this method.
</summary>
private void InitializeComponent ()
{
This. Button1.serverclick + = new System.EventHandler (this. Button1_serverclick);
This. Load + = new System.EventHandler (this. Page_Load);
}
#endregion
private void Button1_serverclick (object sender, System.EventArgs e)
{
Check that the upload file is not empty
if (MyFile.PostedFile.FileName!= "")
{
string FullName = MyFile.PostedFile.FileName;
Get the related attributes of this file: file name, file type, file size
This.fname.Text = MyFile.PostedFile.FileName;
This.fenc.Text = MyFile.PostedFile.ContentType;
This.fsize.Text = myFile.PostedFile.ContentLength.ToString () + "bytes";
Gets the index of the last "\" in the filename (enclosing path)
Int J = fullname.lastindexof ("\ \");
Get file name
String simplename = Fullname.substring (j);
Save the file to the directory you want, this is the Uploadnote directory under the IIS root directory. You can change.
Use Server.MapPath () to take the absolute directory of the current file. In asp.net, "\" is an escape character and must be replaced with "\"
String FilePath = Server.MapPath ("\\UpLoadNote");
MyFile.PostedFile.SaveAs ("D:\\test\\aa.doc");
MyFile.PostedFile.SaveAs (FilePath + simplename);
Response.Write (Server.machinename);
}
Else
{
Labelerror.text = "Please select the file to upload!" ";
}
}
}
}
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.