此回复为自动发出,仅用于显示而已,并无任何其他特殊作用
楼主【epui2008】截止到2008-07-06 23:34:59的历史汇总数据(不包括此帖):
发帖的总数量:9                        发帖的总分数:240                      
结贴的总数量:8                        结贴的总分数:220                      
无满意结贴数:1                        无满意结贴分:20                       
未结的帖子数:1                        未结的总分数:20                       
结贴的百分比:88.89 %               结分的百分比:91.67 %                  
无满意结贴率:12.50 %               无满意结分率:9.09  %                  
楼主加油

解决方案 »

  1.   

    showModalDialog方便,有center可以设置
      

  2.   


    <SCRIPT LANGUAGE="JavaScript">
    function openwin(url)
    {
    var w=410,h=350;
    var top,left;
    top = (screen.availHeight/2)-(h/2)
    left = (screen.availWidth/2)-(w/2)
    var query = "top="+top+",left="+left+",width="+w+",height="+h
    window.open(url,"down",query);
    }
    </SCRIPT>
    <a href="#" onclick="javascript:openwin('down.asp?传你想要传的东西 后面request就可以了')">
    <%=rs("nam")%></a>
      

  3.   

     window.showModalDialog(sURL [, vArguments] [, sFeatures])
     打开一个网页对话框
      

  4.   


    function openWindow(url,width,height,scrollbars)
    {
    var left = Math.ceil((screen.width - width) / 2);   //实现居中
        var top = Math.ceil((screen.height - height) / 2);  //实现居中
    if (arguments.length < 4) scrollbars = 0;

    newWindow = window.open(url,"","width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",scrollbars=" + scrollbars + ",menubar=0,toolbar=0,directories=0,location=0,status=0,resizable=0,copyhistory=0");
    }