我在更新面板中有一个按钮和一个图像。如何通过单击按钮强制刷新图像?
更新
<b>Enter the code</b>
<asp:UpdatePanel runat="server">
<ContentTemplate>
<uc:TextBox ID="txtCaptcha" runat="server" />
<asp:Button ID="btnRefreshCaptcha" runat="server" Text="Refresh the code" CausesValidation="false" onclick="btnRefreshCaptcha_Click" />
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnRefreshCaptcha" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
答案 0 :(得分:7)
将随机值参数添加到图片网址的末尾,并在每次更新时更改
有点ImageUrl = baseUrl +“?” + new Random()。Next()
答案 1 :(得分:1)
你试过吗
Sub btnRefresh_Click() Handles btnRefresh.Click
Me.Image.ImageUrl = "path to your image file"
End Sub
答案 2 :(得分:1)
我使用了上面的代码,但它在下拉列表中显示了我在主页面中给出的脚本问题,并在每个页面中将它们称为类文件。在我的编码中使用上面的代码后我刷新了验证码我的页面中下拉列表的重载和验证码的刷新仅在出现问题后才能工作一次我无法刷新页面中的验证码图像。