我想在不刷新页面的情况下单击按钮重新加载图像。现在,当我单击“刷新图像”链接按钮时,图像正在发生变化。但是页面刷新..
代码 :
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:TextBox ID="txtCaptchaInput" BorderStyle="Solid" Style="vertical-align: top" runat="server" Width="106px" BorderWidth="1px"></asp:TextBox>
<asp:Image ID="img_captcha" runat="server" Height="32px" ImageUrl="~/captchaJPEG.aspx" Width="108px" />
<asp:LinkButton ID="captcha_refresh" runat="server">Refresh Image</asp:LinkButton>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="captcha_refresh" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
我对这段代码做错了什么?我正在使用 asncpostbacktrigger 并为其分配控件 ID 和事件名称。据我所知,这是一种正确的方法。请指教。