12

这就是我导航到的方式myPage.aspx

<a href='~/myPage.aspx?show=<%#Eval("id")%>' id="showEach" runat="server">Show Each</a>

<a href="~/myPage.aspx?show=all" id="showAll" runat="server">Show All</a>

我有一个gridviewmyPage.aspx

<asp:GridView ID="GridView1" runat="server">
<Columns>
<asp:BoundField  HeaderText="ColumnOne"  Visible="true"/>
<asp:BoundField  HeaderText="ColumnTwo"  Visible="true"/>
</Columns>
</asp:GridView>

我想要做的是,如果 Query String 等于all(~/myPage.aspx?show=all) ,我想将 GridView1 的Column2可见设置为 true ,否则将可见设置为 false 。
我该怎么做 ?

4

3 回答 3

9

您可以使用 gridview 预渲染方法来设置这个...

protected void GridView_PreRender(object sender, EventArgs e)
    {
        if(Reqest.QueryString["Id"]=="all"&& Reqest.QueryString["Id"]!=null)
         {
           GridViewId.Columns[1].Visible = true;
         }
        else
            GridViewId.Columns[1].Visible = false;
    }
于 2013-07-05T04:59:16.563 回答
8

您可以使用 gridview 列索引来隐藏特定列

代码可以是

 if(Request.QueryString.Get("show")=="all")
    GridView1.Columns[1].Visible=true;
 else
    GridView1.Columns[1].Visible=false;

更多详情

GridView 按代码隐藏列

编辑 3

无法直接在 ASPX/ASCX 中进行设置。

<%= %> 直接输出到响应流,asp 标记不是响应流的一部分。假设 <%= %> 运算符对 asp 标记执行任何类型的预处理是错误的。

更多解释

为什么将 <%= %> 表达式作为服务器控件上的属性值会导致编译错误?

编辑 1

我想是的

 <asp:BoundField HeaderText="ColumnTwo" 
      Visible='<% if (Request.QueryString.Get("all") == "all" ) "true" else "false" %>'/>

您将不得不检查语法

编辑 2

试试这个

 Visible='<% Request.QueryString.Get("all") == "all"? "true": "false"%>'
于 2013-07-05T04:58:59.843 回答
1

亲爱的尝试使用Grid View 的RowDataBound事件,例如

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        //here apply your condition
        if(Request.QueryString["name"] == "all")
        e.Row.Cells[<index_of_cell>].Visible = true;
        else
        e.Row.Cells[<index_of_cell>].Visible = false;
    }
}

尝试类似的东西。

希望对你有效。

于 2013-07-05T04:59:23.147 回答