Active Server Pages 错误 'ASP 0113'
脚本超时
/admin/affiche_zx/index.asp
超过了脚本运行的最长时间。您可以通过指定 ......
conn.asp
<%
Set Conn=Server.CreateObject("ADODB.Connection")
Conn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0; Data Source="&server.MapPath("Conntion/yg.mdb")
Conn.Open
%>
<% function encrypt(ecode)
Dim texts
......
我要为 服务器端控件 asp:checkbox 注册客户端属性 value 怎么做啊
value属性无法注册,建议lz换个属性,反正属性名字也就是个代号而已如:
CheckBox1.Attributes.Add("value1", "服务器端注册的checkbox的值");
取值,
Response.Write(CheckBox1.Attributes["val ......
<!--#include file="Conn.asp"-->
<body>
<table border="0" align="left" cellpadding="0" cellspacing="0">
<%
URL= Request.ServerVariables("URL")
sql="select * from news order by N_id desc" ......
初学asp 知道可以定义多维数组
Dim a(5,3,2)
但是看到另外一种写法
Dim thisarray(1 to 10,-4 to 5, 5 to 11)
但是编译的时候出错
错误描述:缺少 ')'
如果解决??
VBScript和VB的语法有不同, VBScript不能这样写
你的意思是 VBScript中 只能支持Dim a(5,3,2)
这种写法?
是 ......
news表里有pname(上层科目),mname(科目),type(分类)这三个字段;
下面这个递归.实验测试只能递归到110层..需要怎么改,才能无限??
JScript code:
function gethz(pname8,type8)
dim str,rs
sql="select * from [news] where mname=('"& pname8 &"')"
set rs=co ......