我希望在asp.net中使用这样的标题列制作GridView
<asp:TemplateField SortExpression="Date">
<HeaderTemplate>
<asp:LinkButton ID="headerDate" runat="server" Text="Date ↕️" CommandArgument="Date" CommandName="Sort" ></asp:LinkButton>
<br />
<asp:TextBox AutoPostBack="true" ontextchanged="bindFilteredList" ReadOnly="false" CssClass="search_textbox" runat="server" ID="fitlerDate" >
</asp:TextBox>
</HeaderTemplate>
<ItemTemplate>
<%#Eval("Date") %>
</ItemTemplate>
</asp:TemplateField>
我的问题是,当文本框被填充时,我的onTextChanged函数被触发,我做了一些技巧(textBox中的值仍在此处),并且页面刷新并经过page_Load:
if (!IsPostBack && !IsAsync)
{
this.mpePopUp.Hide();
String defaultSortExpression;
enuSortOrder defaultSortOrder;
int defaultIndex;
// On trie par date déscendant par défaut pour avoir les articles les plus récents
defaultSortExpression = sortExpression[0];
defaultSortOrder = enuSortOrder.soDescending;
defaultIndex = 0;
// bind data au gridview
this.ViewState.Add(VS_CURRENT_SORT_EXPRESSION, defaultSortExpression);
this.ViewState.Add(VS_CURRENT_SORT_ORDER, defaultSortOrder);
this.ViewState.Add(VS_CURRENT_INDEX, defaultIndex);
bindData(defaultSortExpression, defaultSortOrder, defaultIndex);
}
尽管我不适合if(已通过调试器检查),但在函数末尾,当调试器位于右括号时,我的值从TextBox中消失了。
我该怎么做才能将值保留在TextBox中?
您需要了解所有这些内容:
TextBox tb = (this.TableArticles.HeaderRow.FindControl("filterDate") as TextBox);
我不知道我的文本框ID不存在的原因。
答案 0 :(得分:0)
您必须在ontextchanged事件中在ViewState中存储fitlerDate的值。 像
ViewState["fitlerDate"] = fitlerDate.Text;
然后在过滤后重新绑定网格时再次绑定该值。
您必须注册GridView事件OnRowDataBound
,在这种情况下,您必须编写逻辑来查找标头控件,例如
protected void gvGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
TextBox fitlerDate = (TextBox)e.Row.FindControl("fitlerDate");
if (fitlerDate != null)
{
fitlerDate.Text = ViewState["fitlerDate"].ToString();
}
}
}