webBrowser 没有权限问题
使用时
<OBJECT id=WebBrowser height=0 width=0
classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 VIEWASTEXT>
</OBJECT>
<INPUT onclick="javascript:printit()" type="button" value="打印" name="button_print">
<INPUT onclick="javascript:printsetup();" type="button" value="打印页面设置" name="button_setup">
<INPUT onclick="javascript:printpreview();" type="button" value="打印预览" name="button_show">
变成:
<OBJECT id=WebBrowser height=0 width=0
classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 VIEWASTEXT>
<PARAM NAME="ExtentX" VALUE="26">
<PARAM NAME="ExtentY" VALUE="26">
<PARAM NAME="ViewMode" VALUE="0">
<PARAM NAME="Offline" VALUE="0">
<PARAM NAME="Silent" VALUE="0">
<PARAM NAME="RegisterAsBrowser" VALUE="0">
<PARAM NAME="RegisterAsDropTarget" VALUE="1">
<PARAM NAME="AutoArrange" VALUE="0">
<PARAM NAME="NoClientEdge" VALUE="0">
<PARAM NAME="AlignLeft" VALUE="0">
<PARAM NAME="NoWebView" VALUE="0">
<PARAM NAME="HideFileNames" VALUE="0">
<PARAM NAME="SingleClick" VALUE="0">
<PARAM NAME="SingleSelection" VALUE="0">
<PARAM NAME="NoFolders" VALUE="0">
<PARAM NAME="Transparent" VALUE="0">
<PARAM NAME="ViewID" VALUE="{0057D0E0-3573-11CF-AE69-08002B2E1262}">
<PARAM NAME="Location" VALUE="res://C:\WINDOWS\system32\shdoclc.dll/dnserror.htm#http:///">
</OBJECT>
<INPUT onclick="javascript:printit()" type="button" value="打印" name="button_print">
<INPUT onclick="javascript:printsetup();" type="button" value="打印页面设置" name="button_setup">
<INPUT onclick="javascript:printpreview();" type="button" value="打印预览" name="button_show">
打印预览跟 设置就会出现没有权限
经检查是这里的问题<PARAM NAME="Location" VALUE="res://C:\WINDOWS\system32\shdoclc.dll/dnserror.htm#http:///">
把它删了就可以了,但是以后还会有 有什么更好的解决办法??