一个页面里直接采用如下形式设置一个播放器:
该页面名为:set1.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="set1.aspx.cs" Inherits="set1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<OBJECT id="Player" BORDER=0 classid="CLSID:e62d1a95-8299-4b94-85d0-731dc125a60d" CODEBASE = "http://192.168.1.126/ocx/IMMP4Control.ocx#Version=1,18,3,5" width="830" height="437" >
<PARAM NAME="Width" VALUE="">
<PARAM NAME="Height" VALUE="">
<PARAM NAME="AutoPlay" VALUE="0">
<PARAM NAME="DisplayRate" VALUE="29.97">
<PARAM NAME="Source" VALUE="">
<FONT COLOR=red SIZE=5> Can't find object</FONT>
</div>
</form>
</body>
</html>
其中OCX组件采用Player.Source="http://192.168.1.xxx/vdata.v"设置视频地址
Player.Play()开始播放视频
我希望从另一个页面传过来一些可以让这个OCX组件可以播放视频的地址参数:set1.aspx?url1=192.168.1.126
传过来以后不知道怎么在aspx.cs写才能让它播放.
我直接在set.aspx.cs里写form1.Player是调用不了这个OBJECT的.
说的比较乱 见谅!