如题,onclick能否调用openDB()子程序,该如何调用?TKS
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<%
sub openDB()
Set Rs=server.CreateObject("adodb.recordset")
sql = "select * from table"
Rs.open sql,conn,1,1
str1 = rs("str1")
rs.close
set rs = nothing
end sub
%>
<input type="button" value="函 数 确 认" onclick="" >
</body>
</html>
------解决方案--------------------
<input type="button" value="函 数 确 认" onclick="<%=openDB()%>" >
试试
------解决方案--------------------
应该不行,js是客户端脚本,调用服务器脚本应该不能成功。
把你的需求说说,大家帮想办法。