ASP高手帮帮忙啦~~~

2024-12-29 04:20:34
推荐回答(1个)
回答1:

<%=session("content")
'输出 session content 的值
%><%

Action=LCase(Request.QueryString("Action"))
' 将 URL 变量 Action 变成小写赋给变量 Action

set rs=server.createobject("adodb.recordset")
' 创建 recordset 对象

sql="select "&Action&" from webconfig "
' 从 webconfig 里面取得 action 列的值

rs.open sql,conn,1,1
' 打开 rs

If Not rs.Eof Then
' 如果记录存在

Content=rs(0)
' 将取得的数据库内容赋给变量 Content

End If
Response.Write Content
' 输出

%>