要將本地文件上傳到服務(wù)器,可以使用ASP.NET的FileUpload控件。以下是一個簡單的示例:
<asp:FileUpload ID="fileUpload" runat="server" />
<asp:Button ID="btnUpload" runat="server" Text="上傳" OnClick="btnUpload_Click" />
protected void btnUpload_Click(object sender, EventArgs e)
{
if (fileUpload.HasFile) // 檢查是否選擇了文件
{
try
{
string fileName = fileUpload.FileName; // 獲取文件名
string filePath = Server.MapPath("~/uploads/") + fileName; // 生成服務(wù)器上的文件路徑
fileUpload.SaveAs(filePath); // 保存文件到服務(wù)器上
// 顯示上傳成功的消息
string message = "文件上傳成功!";
ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('" + message + "');", true);
}
catch (Exception ex)
{
// 顯示上傳失敗的消息
string message = "文件上傳失?。?quot; + ex.Message;
ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('" + message + "');", true);
}
}
else
{
// 顯示未選擇文件的消息
string message = "請選擇要上傳的文件!";
ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('" + message + "');", true);
}
}
以上代碼將讀取FileUpload控件中選擇的文件,保存到服務(wù)器上的指定文件夾中。上傳成功后會顯示一個提示框。如果出現(xiàn)任何錯誤,將顯示錯誤消息。