惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
WordPress大学
WordPress大学
Recent Announcements
Recent Announcements
G
Google Developers Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
Check Point Blog
J
Java Code Geeks
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
量子位
A
About on SuperTechFans
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

博客园 - 四两

[转载]独家:.NET开发人员必知的八个网站 Arcgis Server开发群 oracle导出数据和表的结构 将E00矢量数据转换为shapefile文件 bs开发中常用的javascript技术 arcgis安装错误hresult:0x80070005解决 『转载』学习asp.net比较完整的流程 [转]解决“GridView1”激发了未处理的事件“PageIndexChanging” - 四两 - 博客园 控制图层的现实 绑定SqlDataSource的Gridview字符串字段长度截取 解决不能删除arcsde数据源的featureclass和table的方法 Arcgis server error:File inaccessible arcgis server object container account KML文件格式介绍 csdn为什么不能访问? oracle关键字特别注意 FreeTextBox3.1.6使用说明(整理) Asp.net上传图片产生预览效果(转) 编译器错误,错误代码为1。 asp.net 检测到有潜在危险的 Request.Form 值
asp.net验证码刷新 - 四两 - 博客园
四两 · 2008-07-31 · via 博客园 - 四两

aspx当中加入
    <script type="text/javascript">
    function refreshimg()
    {
    document.getElementById(" <% =Image1.ClientID %>").src="getimg.aspx"; //image1为你的验证图片名.getimg.aspx是你产生图生的网页.
    }
    </script>

<span style="cursor:hand"> <asp:Image ID="Image1" runat="server" Height="16px" ImageUrl="getimg.aspx" Width="34px" /> </span>  //span里为改变鼠标为手型.

cs当中
    protected void Page_Load(object sender, EventArgs e)
    {
      Image1.Attributes.Add("onmouseup", "javascript:refreshimg();");
     
    }