asp.net MVC實現無組件上傳圖片實例介紹_.Net教程

      編輯Tag賺U幣

      推薦:Asp.net在ashx文件中處理Session問題解決方法
      Asp.net在ashx文件中處理Session問題解決方法,需要的朋友可以參考一下

      例子:
      如我想上傳一個圖片到服務器端:asp頁面
      復制代碼 代碼如下:www.wf0088.com

      <form id="form1" runat="server" action="/bookIndex/fileUpLoad/(你準備處理的 ActionResult)" method="post" enctype="multipart/form-data">
      <input type="file" id="imageUpLoad" name="imageUpLoad">
      <input type="button" value="點擊上傳" onclick="UpLoad()">
      ....
      </form>

      js代碼:
      復制代碼 代碼如下:www.wf0088.com

      <script type="text/javascript">
      function UpLoad()
      {
      如果有其他的值,判斷下是否為空.
      form1.submit();
      }
      <script>

      后臺代碼
      復制代碼 代碼如下:www.wf0088.com

      public ActionResult fileUpLoad(HttpPostedFileBase imageUpLoad(這里跟前臺頁面input輸入框name保持一致))
      {
      string fileName = imageUpLoad.FileName;
      //轉換只取得文件名,去掉路徑。
      if (fileName.LastIndexOf("\\") > -1)
      {
      fileName = fileName.Substring(fileName.LastIndexOf("\\") + 1);
      }
      //保存到相對路徑下。
      imageUpLoad.SaveAs(Server.MapPath("../../image/img/" + fileName));
      //以下代碼是將 路徑保存到數據庫。
      string ImagePath = "../../image/img/" + fileName;
      string sql = "insert into bookinfo(bookphoto)values('" + ImagePath + "')";
      //封裝好的代碼,直接調用。
      DataBase db = new DataBase();
      db.getConn();
      int result = db.executeUpdate(sql);
      return View();
      }

      分享:.net控件dropdownlist動態綁定數據具體過程分解
      一、在頁面初始化時候將集合綁定到DropDownList;二、在頁面初始化的時候向DropDownList添加數據;三、將DataReader讀取的數據動態綁定到DropDownList等等

      來源:模板無憂//所屬分類:.Net教程/更新時間:2013-05-28
      相關.Net教程