我自己写了个ATL
想在网页中这样使用//index.html
<HTML>
<BODY>
<form name="f" Method="post" action="re.html">
  <input name="wd"     type = "text" size=35 >  
  <input type="submit" value=haha>
</form>
</BODY>
</HTML>//re.asp
<html>
<head>
<title> search </title>
</head>
<body>
用户输入的内容:<%=Request.form("wd")%><script language=vbscript>
<!--
     Set obj = CreateObject("Simple6.DispSimple")
     obj.Upper("abc")//Upper是需要一个BSTR的方法
     obj.Upper(<%=Request.form("wd")%>//想把用户在Index.html中的内容作为参数传进去,如何写
     Set obj = Nothing
-->
</script>
</body></html>