国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 娄底市| 巴青县| 云龙县| 保德县| 南阳市| 广宁县| 镇巴县| 肇东市| 荔波县| 阿图什市| 安康市| 呈贡县| 和林格尔县| 福泉市| 山阳县| 丰顺县| 万山特区| 陕西省| 台湾省| 宜阳县| 平远县| 吕梁市| 精河县| 高清| 东莞市| 松溪县| 册亨县| 南丰县| 高唐县| 伽师县| 措美县| 惠东县| 芦山县| 全州县| 申扎县| 论坛| 留坝县| 龙胜| 正安县| 邹城市| 嘉义市|