注册 登录
编程论坛 ASP.NET技术论坛

.net编程的时间参数传递(高手帮帮我啊,我急着用)!!!!!!!!!!

kingdomsheng 发布于 2008-05-08 15:58, 751 次点击
我做的是在xx.aspx页面中<script type="text/jscript" >
      function OwnerSearch()
            {
          var  str=window.showModalDialog("MT118P.aspx?temp=14",'',"DialogWidth:1280px;DialogHeight:1024px;help:no;resizable:no;status:no;");   
                  if(str!=null)   
                  {   
                       document.getElementById("txtOwner").value = str;
                  }   
            }
        </script>
    我要求的功能是在temp=4后加一个时间参数传递temp0=??,怎么实现啊,大家告诉我啊,谢了啊!!
就是要求传俩个参数temp0是当前时间
2 回复
#2
beniao2008-05-09 22:03
回复 1# 的帖子
MT118P.aspx?temp=14&temp0=??
#3
senrw2008-05-10 09:17
MT118P.aspx?temp=14&temp0=<%=now()%>
1