开发者

cannot clear textbox wtihin update panel

开发者 https://www.devze.com 2023-02-27 17:45 出处:网络
I\'m prett开发者_如何学Goy new to update panels and would appreciate some help.I have a form with a few textboxes and submit button.Before the update panel, I would do a page validation on the button

I'm prett开发者_如何学Goy new to update panels and would appreciate some help. I have a form with a few textboxes and submit button. Before the update panel, I would do a page validation on the button click event and if everything was okay, enter the date into a db and then clear two of the textboxes. Then I added the update panel. Now, the textboxes won't clear. Everything else is working great. Any help?

    <asp:UpdatePanel ID="upForm" runat="server" ChildrenAsTriggers="false" 
        UpdateMode="Conditional">
    <Triggers><asp:AsyncPostBackTrigger ControlID="ddlMember"  
        EventName="SelectedIndexChanged" /></Triggers></asp:UpdatePanel>

CType(upForm.FindControl("txtAuth"), TextBox).Text = String.Empty  
txtAuth.Text = String.Empty


Try calling upForm.Update() after setting the textbox's Text to String.Empty

0

精彩评论

暂无评论...
验证码 换一张
取 消