我试图弄清楚如何在网页中使用 .NET dll。这可以用 ActiveX 控件完成吗?还是其他方式?以下不起作用。
<html>
<body>
<script type="text/javascript">alert("Top");</script>
This is a web page.
<object id="SimpleVBObject" classid="C:\IntuitiveDev\Bin\Test.dll#Test.Simple"></object>
<script type="text/vbscript">
MsgBox ("simple before")
SimpleVBObject.Message()
MsgBox ("simple after")
</script>
</body>
</html>
仅调用第一个消息框函数。