在ASP Web Forms解决方案中,我想在Page_Load方法中隐藏 EmptyDataTemplate ?怎么做?
这是前端:
<EmptyDataTemplate>
<div id="hideInPageLoad" class="row" runat="server">
<div class="col-md-12">
<div class="mt16 white p16 text-center">
<%# LoadResource("SHGHSearchInFund_NoResultsFound") %>
</div>
</div>
</div>
</EmptyDataTemplate>
这是后端:
protected void Page_Load(object sender, EventArgs e)
{
try
{
if (string.IsNullOrEmpty(tbSearch.Text))
{
hideInPageLoad.Visible = false;
}
但错误就是这样.....:
错误1当前上下文中不存在名称“hideInPageLoad”
答案 0 :(得分:1)
因为hideInPageLoad
在Gridview EmptyDataTemplate中,所以可以试试这个:
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack){
try
{
if (string.IsNullOrEmpty(tbSearch.Text))
{
HtmlGenericControl Emptydiv=(HtmlGenericControl)gvAcheologyMonuments.Controls[0].Controls[0].FindControl("hideInPageLoad") ;
Emptydiv.Style.Add("Display", "none");
}
}
}
}