<span class="huiyuanFont02">验 证 码:</span><asp:TextBox ID="randstr" runat="server" Width="76px" MaxLength="4"></asp:TextBox><asp:ImageButton ID="ImageButton1" runat="server" OnClick="ImageButton1_Click" Style="width: 60px;height: 20px" CausesValidation="False" /> 然后就是我验证码是用一个Aspx写的,每次点击验证码的时候,向验证码页面重新获取图片URL
2 回答
慕慕森
TA贡献1856条经验 获得超17个赞
<asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <span class="huiyuanFont02">验 证 码:</span> <asp:TextBox ID="randstr" runat="server" Width="76px" MaxLength="4"></asp:TextBox> <asp:ImageButton ID="ImageButton1" runat="server" OnClick="ImageButton1_Click" Style="width: 60px;height: 20px" CausesValidation="False" /> </ContentTemplate> </asp:UpdatePanel> <asp:ScriptManager ID="TheScriptManager" runat="server" />
使用updatepanel 可以防止页面 刷新, 不过不建议使用。 可以尝试使用ajax方式。
- 2 回答
- 0 关注
- 369 浏览
添加回答
举报
0/150
提交
取消