日期:2014-05-17 浏览次数:20435 次
<object id="TouchYb" classid="clsid:F0108360-7849-4066-87D9-BFBC5259A9EF" codebase="Setup.exe" width="184" > </object>
------解决方案--------------------
具体不懂再问我
------解决方案--------------------
http://download.csdn.net/source/398073
以前写的,你down下来自己先看看吧
------解决方案--------------------
test.html 有下面代码
<OBJECT
id="ufo"
classid='clsid:F65A9D3B-CB1B-4776-A63B-7E9714A044B9'
codebase='../MyNewFProj1.ocx##version=1,0,0,0'
width=500
height=500
>
<PARAM NAME="PlaceName" VALUE="PlaceName1">
<PARAM NAME="LegalPerson" VALUE="LegalPerson2">
<PARAM NAME="BuinessNature" VALUE="BuinessNature3">
<PARAM NAME="Address" VALUE="Address4">
<PARAM NAME="BuinessScope" VALUE="BuinessScope5">
<PARAM NAME="gh" VALUE="gh6">
<PARAM NAME="dh" VALUE="dh7">
<PARAM NAME="year" VALUE="year8">
<PARAM NAME="month" VALUE="month9">
<PARAM NAME="day" VALUE="day10">
<PARAM NAME="smallyear" VALUE="smallyear">
<PARAM NAME="smallmonth" VALUE="smallmonth">
<PARAM NAME="smallday" VALUE="smallday">
</OBJECT>
NAME 就代表 activex 的属性或者叫做变量 VALUE 就是给activex这个 NAME 赋值了
------解决方案--------------------
<PARAM NAME="PlaceName" VALUE="<%=后台变量>">
后台:
public string 后台变量=“后台变量”;
这样就可以赋值了
------解决方案--------------------