ImageURL doesn't work inside Update Panel
问题 I am writing a captcha authentication program in ASP.NET C#. The problem i face is that the image gets refreshed on entering wrong value during a postback; but same image doesn't get refreshed during a partial postback, when i keep them inside an update panel. aspx source <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Image ID="ImageCaptcha" runat="server" ImageUrl="~/BringImg.aspx" /><br /> <asp:TextBox ID="txtCaptcha" runat="server" ></asp:TextBox><br /> <asp