只要是服务器控件Button,按下就会刷新,你指的刷新具体做什么?

解决方案 »

  1.   

    TO:acewang(龍芯*Inside!) 请问如果当我按下Button时,不想网页刷新,我要怎么做,能告诉我吗?谢谢
      

  2.   

    <script>
    function refreshPage()
    {
         location.reload();
    }
    function timeRefresh()
            //settimeout(刷新过程名称,定时时间);
         settimeout('refreshPage()',100);</script>
      

  3.   

    将这句加入<head>
    <meta http-equiv="Refresh" content="1000;URL=xxxxxxxx">
      

  4.   

    to yanga(急雨):
    如果是服务器控件,不刷新页面就完成服务端Button的操作是不可能的.
      

  5.   

    我要的是: 
       當button1按下後 允許定時刷新, 但刷新一次後就中止定時刷新,除非再次按下button1
      

  6.   

    acewang(龍芯*Inside!)
    怎么可能,用.NET Remote
      

  7.   

    acewang(龍芯*Inside!)
    怎么不可能,用.NET Remote
      

  8.   

    to  lar99(短裤浪子) :
    是.net Remoting 如果您对Remoting比较熟悉的话请参考:
    http://www.microsoft.com/China/Community/program/originalarticles/TechDoc/remotingServerObj.mspx
      

  9.   

    use clearTimeout() to cancel
      

  10.   

    請問如果用web控件, settimeout和cleartimeout應該如何在vs.net代碼編輯器里寫.