动态修改gridview元素的类

时间:2015-01-05 17:50:34

标签: c# asp.net gridview

我有一个gridview:

<asp:GridView runat="server" ID="gv_patientMeds" Width="100%" AutoGenerateColumns="False" GridLines="Both" OnRowDataBound="gv_patientMeds_onRowDataBound">
    <Columns>
        <asp:TemplateField HeaderText="Edit" HeaderStyle-HorizontalAlign="Center">
            <ItemTemplate>
                <asp:Button ID="lb_editPatient" runat="server" CssClass="<%# Eval(Convert.ToInt32(Eval("recordId")) != 0 ? "btn-active" : "btn-inactive"); %>" Text="Delete" OnClientClick="SubmitDeleteMedicationChange(<%# Eval("updateClinicVisit_recordIdForDelete") %>);" UseSubmitBehavior = "false" />
            </ItemTemplate>
            <ItemStyle HorizontalAlign="Center" />
        </asp:TemplateField>
    </Columns>
</asp:GridView>

我将数据加载到其中:

gv_patientMeds.DataSource = theDataToBindInPopup;
gv_patientMeds.DataBind();

theDataToBindInPopup只是一个自定义对象列表。

正如您所看到的,我正在尝试使用一些逻辑来分配删除按钮的类,其中recordId是DataToBindInPopup列表中某个对象的属性。 ASP不喜欢这样。我收到的“服务器标签状况不佳”。

在这种情况下如何使用逻辑分配按钮的类?

提前致谢。

2 个答案:

答案 0 :(得分:1)

将此lb_editPatient按钮替换为此

在单引号内包装双引号

<asp:Button ID="lb_editPatient" runat="server" 
CssClass='<%# (Convert.ToInt32(Eval("recordId")) != 0 ? "btn-active" : "btn-inactive") %>' Text="Delete" 
OnClientClick='SubmitDeleteMedicationChange(<%# Eval("updateClinicVisit_recordIdForDelete") %>)' UseSubmitBehavior = "false" />

答案 1 :(得分:1)

虽然Ganesh和fnostro建议您使用它,但您也可以在代码中设置逻辑:

protected void gv_patientMeds_onRowDataBound(object sender, GridViewRowEventArgs e)
        {   
            //Get data row view
            DataRowView drview = e.Row.DataItem as DataRowView;
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                //Find dropdown control
                Button btn= (Button)e.Row.FindControl("lb_editPatient");
                btn.CssClass= Convert.ToInt32(drview["recordId"]) != 0 ? "btn-active" : "btn-inactive"; 

            }
        }