最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時(shí)間:2009年11月30日 21:01:14   作者:  
MVC中上傳變得越來越容易,可是對于新手這個(gè)也還是不知道如何實(shí)現(xiàn),以下方式實(shí)現(xiàn)MVC的上傳功能,以下2種方法都是可以實(shí)現(xiàn)的,其中的代碼參考了藍(lán)色小鋪和重典的文章。
方法一:
Home/Index.aspx中的代碼
復(fù)制代碼 代碼如下:

<% 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中的代碼
復(fù)制代碼 代碼如下:

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

Homecontroller中的代碼
復(fù)制代碼 代碼如下:

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

相關(guān)文章

最新評論

武鸣县| 叙永县| 拜泉县| 浠水县| 东辽县| 涿鹿县| 承德县| 阿城市| 明水县| 永善县| 隆林| 泸州市| 资中县| 迁安市| 启东市| 离岛区| 克什克腾旗| 松滋市| 理塘县| 会泽县| 雅安市| 开封市| SHOW| 大同县| 元朗区| 都匀市| 炉霍县| 梁山县| 丰原市| 桂东县| 南靖县| 沁源县| 开平市| 陈巴尔虎旗| 西乌珠穆沁旗| 清镇市| 临泉县| 延庆县| 永城市| 巍山| 固原市|