www.ajax.com里面有ajax的控件
vs05能安装
下个用就行

解决方案 »

  1.   

    简单方法是把验证码放在一个iframe里面
    就不会刷新了
      

  2.   

    简单方法是把验证码放在一个iframe里面
    就不会刷新了
    ---------------------------------
    可不可以说具体点,iframe是?
      

  3.   

    我试过iframe了,不管用的,不知道还有没有可行的方法,急啊
      

  4.   

    confei(飞在路上【QQ群:17366995】) 的意思是把panel放在另外一个页面里,然后嵌套在iframe里面,button3的onclick事件中跨页面调用Panel1.visible,这样点击button,刷新的是iframe中的内容,父页面不会刷新
    我不会asp.net,不知道如何纯粹.net实现,认为使用Js + html 是及其简单有效的办法建议把button转换成普通的html控件,直接添加onclick属性,在属性中写上 
    Panel1.style.display="none";return false;
    或者在把button转换成html按钮而不是html 的 form提交按钮
    纯html代码应该如下:
    <input type="button" value="Click Me to Kiss Slawdan!" onClick="Panel1.style.display="none";">
      

  5.   

    <input type="button" onclick="aa()" value="显示" style="z-index: 102; left: 364px; position: relative; top: -16px">
                        <script language =javascript >
                           document.getElementById("Panel1").style.display = "none"; function aa()
    {
    document.getElementById("Panel1").style.display = "block";
    }</script>
    这样写运行还是不对啊?
      

  6.   

    用AJAX技术 或者你用iframe来修改网页内容也可以