webgrid中的自定义消息如果为空则使用Asp.net Mvc3?

时间:2012-08-29 10:35:58

标签: asp.net-mvc-3 webgrid

我想在下面的else语句中在网格中显示一条消息“找不到记录”。有人可以帮我这个吗?

<%      
var grid = new WebGrid(source: Model, defaultSort: "ProjectName", rowsPerPage: 5);
using (Html.BeginForm())
{ %> 
    <div class="resourcereprtsmain">
    <%:Html.Label("Project Name") %>
    <%: Html.DropDownList("Projects", (SelectList)ViewBag.Projects, "--Select Project--")%>   
    <br />
    <%:Html.Label("Release Phase") %>
    <%:Html.DropDownList("ReleasePhase", "--Select ReleasePhase--")%>                                      

    <input type="submit" value="search" />                            
    </div>                                                                  
    <div id="grid">
    <%:grid.GetHtml(
     tableStyle: "listing-border_c", headerStyle: "gridhead", footerStyle: "paging", rowStyle: "td-dark", alternatingRowStyle: "td-light",                            
     columns:grid.Columns(
     grid.Column("ProjectName", "Project Name"),
     grid.Column("ReleasePhase", "ReleasePhase"),
     grid.Column("Newbugs", "New Bugs"),
     grid.Column("Assignedbugs", "Assigned Bugs"),
     grid.Column("Fixedbugs", "Fixed Bugs"),
     grid.Column("Reopenedbugs", "Reopened Bugs"),
     grid.Column("Closedbugs", "Closed Bugs"),
     grid.Column("Defferedbugs", "Deffered Bugs"),
     grid.Column("NotaBug", "Not a Bug")                           
      ))%>
    </div>                  
<%} %>

1 个答案:

答案 0 :(得分:0)

在控制器代码

      if (ds.Tables[0].Rows.Count == 0)
            {

                TempData["notice"] = "No Records are Not Found";

            }
            else
            {

            }

在视图代码

<% if (TempData["notice"] != null) { %>
<p><label id="msgtext" >No Records Are Not found !!!!</label></p>
 <% } %>

我得到了答案