2013-09-27 52 views
0

如何在圖像控件中顯示其路徑存儲在數據庫中的圖像。 請給我提供示例代碼,我已經從數據庫中獲取路徑,但是如何在圖像控件中顯示。 這裏是我的代碼如何在圖像控件中顯示圖像,其路徑使用mvc存儲​​在分貝中

[HttpPost] 
    public ActionResult DisplayPic() 
    { 
     string UserName=User.Identity.Name; 
     var getPath = from p in Session.Query<Registration>() 
         where p.Email == UserName 
         select p.Path; 
     if (getPath.Count() > 0) 
     { 
      //display pic??? 

     } 

     return View(); 
    } 

查看:在你的模型屬性和

 @{ 
     ViewBag.Title = "DisplayPic"; 
     } 

    <h2>DisplayPic</h2> 
    @using (Html.BeginForm()) 

    { 
    <img alt="" src="" width="200" height="200" /> 
    } 
+0

一個字符串變量添加到您的模型(說 '的ImageUrl')和 – sekhar

+0

這是給我一個錯誤無法對空引用執行運行時綁定。我如何在IMG src中傳遞ImageUrl的值,這是我在DisplayPic方法中從db獲取的值。 – Wasfa

回答

2

存儲圖像路徑使用

<img src="@Url.Content(Model.ImagePath)" alt = "Image" />  
+0

我不知道它將如何顯示特定用戶的配置文件圖像。我已經得到了我想要顯示的圖像的路徑,但我該如何將該路徑給圖像src。 – Wasfa

+0

在您的模型類中爲圖像路徑提供了一個附加屬性 – AthibaN

相關問題