国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

asp.net MVC實現(xiàn)簡單的上傳功能

2024-07-10 13:18:31
字體:
供稿:網(wǎng)友
方法一:
Home/Index.aspx中的代碼

復(fù)制代碼 代碼如下:


<% using (Html.BeginForm("up","Home",FormMethod.Post,new{enctype="multipart/form-data"})) {%>
<input type="file" />
<input type ="submit" name ="upload" value ="上傳" />
<%} %>

Homecontroller中的代碼
[code]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult up(HttpPostedFileBase upfile)
{
if (upfile != null)
{
if (upfile.ContentLength > 0)
{
upfile.SaveAs("d://7.jpg");
}
}
return RedirectToAction("Index");
}


方法二:



Home/Index.aspx中的代碼

復(fù)制代碼 代碼如下:


<form action="<%=Url.Action("upload2") %>" enctype="multipart/form-data" method="post">
<input type="file" /><input type="submit" />
</form>


Homecontroller中的代碼

復(fù)制代碼 代碼如下:


public ActionResult upload2(HttpPostedFileBase up1)
{
up1.SaveAs("d://8.jpg");
return Content(up1.FileName);
}

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 海淀区| 西宁市| 澎湖县| 杂多县| 临洮县| 石景山区| 闻喜县| 新宁县| 盐池县| 慈利县| 大足县| 湟源县| 灵宝市| 屏南县| 平邑县| 池州市| 河曲县| 清涧县| 新沂市| 黄平县| 芮城县| 即墨市| 富民县| 法库县| 益阳市| 固始县| 万宁市| 迭部县| 赞皇县| 翼城县| 明溪县| 遂昌县| 日照市| 安庆市| 牙克石市| 兴义市| 黑河市| 无棣县| 天等县| 周至县| 碌曲县|