91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在asp.net中獲取HTML表單中File的路徑

發布時間:2021-01-19 17:17:38 來源:億速云 閱讀:197 作者:Leah 欄目:開發技術

本篇文章為大家展示了怎么在asp.net中獲取HTML表單中File的路徑,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

代碼如下:


#region 上傳文件到數據庫和服務器
public void FN_UpFiles()
{
//遍歷File表單元素
HttpFileCollection files = HttpContext.Current.Request.Files;
try
{
for (int iFile = 0; iFile < files.Count; iFile++)
{
//檢查文件擴展名字
HttpPostedFile postedFile = files[iFile];
string fileName = "";//定義文件名
//string fileExtension = "";
fileName = Path.GetFileName(postedFile.FileName);//得到上傳文件的完整名稱 即文件名+后綴名
int index = fileName.IndexOf(".");
string FileType = fileName.Substring(index).ToLower();//截取文件后綴名
//FileTypeImg = "../FileTypeimg/" + hz + ".gif";
Guid fileGuid = Guid.NewGuid();//生成新的文件名稱 以GUID命名防止文件名相同
string NewFileName = fileGuid.ToString();//新的文件名
NewFileName = NewFileName + FileType;//新的文件名+后綴名
if (postedFile.ContentLength > 2097151 * 1024)//判斷是否大于配置文件中的上傳文件大小
{
Page.RegisterStartupScript("提示", "<script language='javascript'>alert('對不起您的上傳資源過大!');return;</script>");
return;
}
else
{
if (fileName != "")//如果文件名不為空
{
try
{
//文件虛擬路徑
string strpath = System.Web.HttpContext.Current.Server.MapPath("~/Upload/") + NewFileName;
try
{
NRModel.File model = new NRModel.File();
NRBLL.File bf = new NRBLL.File();
Guid guid1 = Guid.NewGuid();
Guid guid2 = new Guid(FolderId);
Guid guid3 = Guid.NewGuid();
Guid guid4 = Guid.NewGuid();
model.Fileid = guid1;
model.Folderid = guid2;
model.Filepath = strpath;
model.FileNam = fileName;
model.FileSize = postedFile.ContentLength;
model.Decription = TextArea1.Value.ToString();
model.CreateOn = DateTime.Now;
model.CreateBy = guid3;
model.ModefyBy = guid4;
if (bf.FN_AddNewRes(model) > 0)
{
NR.Error.Log.LogType("上傳資源" + fileName + "成功!" + "服務器路徑:" + strpath);
//保存文件到指定目錄(虛擬目錄)
postedFile.SaveAs(System.Web.HttpContext.Current.Server.MapPath("~/Upload/") + NewFileName);
//Page.RegisterStartupScript("提示", "<script language='javascript'>alert('上傳成功!');self.opener.location.reload();window.close();</script>");
AlertMsg("上傳成功!");
}
}
catch (Exception ex)
{
NR.Error.Log.LogType(ex.ToString());
}


}
catch (Exception ex)
{
NR.Error.Log.LogType(ex.ToString());
}
}
else
{
Response.Write("上傳文件不能為空!");
NR.Error.Log.LogType("文件不能為空!");
}
}


}
}
catch (System.Exception ex)
{
NR.Error.Log.LogType(ex.ToString());
}
}
#endregion

上述內容就是怎么在asp.net中獲取HTML表單中File的路徑,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

佛教| 北辰区| 景泰县| 太康县| 历史| 柳河县| 郑州市| 中卫市| 阆中市| 集贤县| 屯留县| 巩义市| 天水市| 竹山县| 龙陵县| 承德县| 濮阳市| 油尖旺区| 宣汉县| 中超| 观塘区| 将乐县| 漳平市| 蓬溪县| 荆州市| 西和县| 土默特左旗| 墨江| 安国市| 罗城| 广灵县| 泽州县| 田林县| 通道| 高淳县| 闽侯县| 邻水| 綦江县| 遵义市| 伊宁县| 津南区|