如何把一个值不用表单就能传送到另一个ASP页面?

来源:百度知道 编辑:UC知道 时间:2024/06/10 08:19:03
我做有一个播放器的网页,想从其他页面上获取一个地址然后播放.播放代码为:<embed src=<%=rs("video")%> width=381 height=360 loop="2" style="BORDER-RIGHT: #666666 1px solid; BORDER-TOP: #666666 1px solid; BORDER-LEFT: #666666 1px solid; BORDER-BOTTOM: #666666 1px solid" id=mePlay codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,5,0803 type=application/x-oleobject classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" standby="Loading Windows Media Player components..." name="mePlay"></embed>
关键是我第一个网页应该怎么写才能保证我播放器里的src=<%=rs("video")%>能获取到第一个网页里的video的地址呢?
<tr bgcolor="#EFEBEF">
<td colspan="6" height="30" align="center" valign="middle" class="font"><table wid

<a href="showvod_sell.asp?video=<%= server.URLEncode(rs("video")) %>" target="_blank" class="STYLE1">点击查看视频</a>

<embed src=<%=Trim(Request.QueryString("video"))%> width=381 height=360 loop="2" style="BORDER-RIGHT: #666666 1px solid; BORDER-TOP: #666666 1px solid; BORDER-LEFT: #666666 1px solid; BORDER-BOTTOM: #666666 1px solid" id=mePlay codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,5,0803 type=application/x-oleobject classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" standby="Loading Windows Media Player components..." name="mePlay"></embed>