我想在下面的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>
<%} %>
答案 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>
<% } %>
我得到了答案