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

推荐订阅源

博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
罗磊的独立博客
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
B
Blog RSS Feed

博客园 - 四两

[转载]独家:.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();");
     
    }