开发者

Rendering update to update panel despite of validator presence

开发者 https://www.devze.com 2023-02-07 10:26 出处:网络
I have an asp.net update panel in my page and I set a trigger to update the panel. There are also some required field outside the update panel which is linked with some validator. I am using the Async

I have an asp.net update panel in my page and I set a trigger to update the panel. There are also some required field outside the update panel which is linked with some validator. I am using the AsyncPostBack Trigger which is supposed to update only th开发者_运维百科e update panel contents, but when I clicking the trigger, the valdator is triggered and stopping even the partial postback. But I need to update the update panel irrespective of the requied field. I want the validation when there is a full postback which will be handled by some other button. how can I do that? Any help...

                  <asp:RequiredFieldValidator runat="server" CssClass="validatormsg" ErrorMessage="Please enter Ad description" ControlToValidate="AdSummaryTextBox">
                  </asp:RequiredFieldValidator>

Some value I want to update here and Trigger is also in this region


You should Set CausesValidation to false in the control that triggers the updatepanel.

0

精彩评论

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