2015-04-14 80 views
1

我試圖在視圖頁面中顯示圖像,但它不顯示在瀏覽器中。 這是我的代碼: MyChat.cshtml使用Url.Action在視圖頁面中不顯示圖像

<td> 
<img src="@Url.Action("GetImage", "Mailbox", new { name = Session["Loginname"].ToString() })" id="photo"/> 
</td> 

控制器

public FileContentResult GetImage(string name) 
{ 
    byte[] cover = GetImageFromDataBase(name); 
    ViewData["image"] = cover; 
    if (cover != null) 
    { 
     return File(cover, "image/jpeg"); 
    } 
    else 
    { 
      return null; 
    } 
} 

public byte[] GetImageFromDataBase(string name) 
{ 
    RegisterLogic logic = new RegisterLogic(); 
    byte[] image = logic.GetImage(name); 
    return image; 
} 

我用於從SQL服務器2008 R2檢索值的業務邏輯是:

public byte[] GetImage(string name) 
     { 
      con.ConnectionString = str; 
      cmd.Connection = con; 
      if (con.State == ConnectionState.Open) 
       con.Close(); 
      if (con.State == ConnectionState.Closed) 
       con.Open(); 
      cmd.CommandText = "Select Picture from InspiniaMessage where UserName='" + name + "'"; 
      cmd.CommandType = CommandType.Text; 


      SqlDataAdapter sda = new SqlDataAdapter(cmd); 
      DataTable dt = new DataTable(); 
      sda.Fill(dt); 
      Message m = new Message();   
      foreach (DataRow dr in dt.Rows) 
      { 
       Message mn = new Message(); 
       mn.Picture = (byte[])(dr["Picture"]); 
       m.Picture = mn.Picture;    

      }   
      return m.Picture; 
      con.Close(); 
     } 
    } 

我沒有任何錯誤,但圖像不顯示在視圖中。

+0

看到這一點: http://stackoverflow.com/questions/29576699/how-to-return-url-string-from-controller- a-controller-in-mvc-4/29577189#29577189 –

回答

0

Url.Action產生針對控制器的動作url,它從不會調用動作,對於調用動作您必須使用Html.Action()幫助器。

當你寫:

@Url.Action("ActionName","ControllerName")

它返回的URL作爲字符串是這樣的:

localhost/Controller/Action 

使用Html.Action(),你要執行的動作:

<img src="@Html.Action("GetImage", 
         "Mailbox", 
         new 
         { 
         name = Session["Loginname"].ToString() 
         })" 
    id="photo"/> 
+0

它給出錯誤'執行處理程序'System.Web.Mvc.HttpHandlerUtil + ServerExecuteHttpHandlerAsyncWrapper'的子請求時出錯。你能幫我解決這個問題嗎?如何整理出來。 –

+0

在你的動作中加入了斷點,看看它是否被調用 –