我希望仅在编辑模式处于活动状态时显示HeaderText
<asp:TemplateField>
<EditItemTemplate>
<asp:FileUpload ID="fileUploadControl" runat="server" />
</EditItemTemplate>
</asp:TemplateField>
我没有插入模板我希望标题文本仅在编辑模式下显示
答案 0 :(得分:1)
这样做的一种方法是订阅RowDataBound(假设您使用的是GridView)。检查Row是否处于Edit状态,并更新Cell的相应头文本。
protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowState == DataControlRowState.Edit)
{
grd.HeaderRow.Cells[0].Text = "Upload a File"; // Cell 0 in this case may need to be changed to match your Cell.
}
}