Usercontrol Hosted in IE
做了一個Windows.Form.UserControl, 然后試圖將它嵌入到IE中,不管怎么嵌在IE里只顯示一個TextBox, 但卻不是我設計的Control畫面,在網上找的例子也與我做的無差,后來發現是由于寫class的標簽classid后面用的是單引號而用的不是“,將它改到雙引號后就成功顯示了
不work的代碼:
hello mmmmmmmmmmmmmm
<BR>
<body bgcolor='white'>
<object id="helloworld" classid=‘http:HelloWorld.dll#HelloWorld.UserControl2’ Width="184" Height="96" VIEWASTEXT> </object>
</body>
Work的代碼:
hello mmmmmmmmmmmmmm
<BR>
<body bgcolor='white'>
<object id="helloworld" classid="http:HelloWorld.dll#HelloWorld.UserControl2" Width="184" Height="96" VIEWASTEXT> </object>
</body>