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

首頁 > 編程 > .NET > 正文

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

2024-07-10 12:42:55
字體:
供稿:網(wǎng)友
方法一:
Home/Index.aspx中的代碼
代碼如下:
<% using (Html.BeginForm("up","Home",FormMethod.Post,new{enctype="multipart/form-data"})) {%>
<input type="file" name="upfile" />
<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中的代碼
代碼如下:
<form action="<%=Url.Action("upload2") %>" enctype="multipart/form-data" method="post">
<input name="up1" type="file" /><input type="submit" />
</form>

Homecontroller中的代碼
代碼如下:
public ActionResult upload2(HttpPostedFileBase up1)
{
up1.SaveAs("d://8.jpg");
return Content(up1.FileName);
}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 瑞金市| 定远县| 仪陇县| 会理县| 乌海市| 石阡县| 绍兴市| 丰城市| 麻栗坡县| 台东县| 滦南县| 肥乡县| 如东县| 钟山县| 石景山区| 佛坪县| 诏安县| 仁布县| 冀州市| 南澳县| 专栏| 民勤县| 湾仔区| 志丹县| 商丘市| 乌拉特中旗| 黑河市| 蒲江县| 贡觉县| 镇江市| 德江县| 广宁县| 祁门县| 台南市| 信丰县| 阳朔县| 镇江市| 郴州市| 安西县| 太仆寺旗| 江都市|