查询不同数据源怎样跳转,请帮我分析一下
我用了1个javascript,2个vbscript控件得到的时间,
然后我的表单主页用vbscript调出时间,我的调用代码:
<script language=vbscript>
function CheckKey()
if window.event.keycode=113 then
fireDateCz
end if
end function
sub FireDateCz()
dim tStr
tstr=window.showModalDialog("calendar.htm","","dialogHeight:196px;dialogWidth:175px;dialogtop=160px;dialogleft=370px;status:no")
if tstr<>"" then document.all.txtDate.value=tStr
end sub
sub firedatecz1()
dim tstr1
tstr1=window.showModalDialog("calendar.htm","","dialogHeight:196px;dialogWidth:175px;dialogtop=160px;dialogleft=580px;status:no")
if tstr1<>"" then document.all.txtDate1.value=tStr1
end sub
</script>
后面怎样跳转年度数据查询,两个年度的数据怎样查询呀!请大家帮忙!最好用javascript实现的