Asp.net - 在后面的代码中将Textbox字段更改为gridview中的标签

时间:2014-04-16 04:22:42

标签: c# asp.net gridview textbox

<ItemTemplate>
    <asp:TextBox ID="Q1" runat="server" Text='<%# Bind("Q1") %>'></asp:TextBox>
</ItemTemplate>
.
.
.
<ItemTemplate>
    <asp:TextBox ID="Q2" runat="server" Text='<%# Bind("Q2") %>'></asp:TextBox>
</ItemTemplate>

我目前有一个字段作为文本框的页面,我想根据代码背后的条件更改其中一些标签。

例如,如果Window_name ='Q2' - >制作Q2 Q3 Q4文本框和Q1标签 如果它是Window_name ='Q3',则生成Q3和Q4文本框,但Q1和Q2标签

顺便说一句,我没有使用编辑/选择gridview模式,因为我使用了批量更新gridview(一个按钮来更新所有行)

1 个答案:

答案 0 :(得分:2)

我正在尝试帮助您使用两个控件的示例并在此处对网格视图ID'GridView1'进行示例,根据您的代码对其进行更改:

您可以创建标签,而不是在CODE BEHIND中显示文本框,或者最初创建文本框和标签,并在需要时显示它们。

而不是在Page_Load函数中执行它,您可以在GridView的'RowDataBound'事件中执行它,并在每次回发完成时绑定GridView。

ASPX代码:

<ItemTemplate>
      <asp:TextBox ID="Q1" runat="server" Text='<%# Bind("Q1") %>'></asp:TextBox>
      <asp:Label ID="Label1" runat="server" Text='<%# Bind("Q1") %>' Visible="false">
      </asp:Label>
</ItemTemplate>

.....

<ItemTemplate>
      <asp:TextBox ID="Q2" runat="server" Text='<%# Bind("Q2") %>'></asp:TextBox>
      <asp:Label ID="Label2" runat="server" Text='<%# Bind("Q2") %>' Visible="false">
      </asp:Label>
</ItemTemplate>

代码背后:

protected void Page_Load(object sender, EventArgs e)
        {
            //Bind your grid view
            GridView1.DataBind();
        }

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
            {
                int rowIndex = e.Row.RowIndex;
               //First fetch your textboxes and labeles 
                TextBox textBoxQ1 = GridView1.Rows[rowIndex].FindControl("Q1") as TextBox;
                TextBox textBoxQ2 = GridView1.Rows[rowIndex].FindControl("Q2") as TextBox;

                Label Label1 = GridView1.Rows[rowIndex].FindControl("Label1") as Label;
                Label Label2 = GridView1.Rows[rowIndex].FindControl("Label2") as Label;

                if (Window_name.Equals("Q2"))
                {
                    //Set 'visiblity' to 'true' for those LABEL you want to show. Sample one below
                    Label2.Visible = false;
                    //Set 'visibilty' to 'false' for those TEXT BOXES you want to hide. Sample one below
                    textBoxQ2.Visible = false;
                }
            }

如有任何疑问,请与我联系。