< p align="center" >< font size="4" face="arial" >< b >
the physical path to this virtual website is:
< /b >< /font >
< font color="#ff0000" size="6" face="arial" >
< %= server.mappath("\\")% >
< /font >< /p >
2.我如何知道使用者所用的浏览器?
答:使用the request object方法
strbrowser=request.servervariables("http_user_agent")
if instr(strbrowser,"msie") < > 0 then
response.redirect("formsieonly.htm")
else
response.redirect("forall.htm")
end if
3.如何计算每天的平均反复访问人数
答:解决方法
< % startdate=datediff("d",now,"01/01/1990")
if strdate< 0 then startdate=startdate*-1
avgvpd=int((usercnt)/startdate) % >
显示结果
< % response.write(avgvpd) % >
that is it.this page have been viewed since november 10,1998
6) 现在使用右键单击你刚建立的那个包下面展开后的"components"。选择 "new then component"。
7) 选择 "install new component" 。
8) 找到你的.dll文件然后选择next到完成。
要删除这个对象,只要选择它的图标,然后选择delete。
附注:特别要注意第二种方法,它是用来调试自己编写组件的最好方法,而不必每次都需要重新启动机器了。
16. asp与access数据库连接:
<%@ language=vbscript%>
<%
dim conn,mdbfile
mdbfile=server.mappath("数据库名称.mdb")
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};uid=admin;pwd=数据库密码;dbq="&mdbfile
%>
17. asp与sql数据库连接:
<%@ language=vbscript%>
<%
dim conn
set conn=server.createobject("adodb.connection")
con.open "provider=sqloledb;data source=sql服务器名称或ip地址;uid=sa;pwd=数据库密码;database=数据库名称
%>
建立记录集对象:
set rs=server.createobject("adodb.recordset")
rs.open sql语句,conn,3,2
18. sql常用命令使用方法:
(1) 数据记录筛选:
sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]"
sql="select * from 数据表 where 字段名 like '%字段值%' order by 字段名 [desc]"
sql="select top 10 * from 数据表 where 字段名 order by 字段名 [desc]"
sql="select * from 数据表 where 字段名 in ('值1','值2','值3')"
sql="select * from 数据表 where 字段名 between 值1 and 值2"
(2) 更新数据记录:
sql="update 数据表 set 字段名=字段值 where 条件表达式"
sql="update 数据表 set 字段1=值1,字段2=值2 …… 字段n=值n where 条件表达式"
(3) 删除数据记录:
sql="delete from 数据表 where 条件表达式"
sql="delete from 数据表" (将数据表所有记录删除)
asp是active server page的缩写,意为“活动服务器网页”。asp是微软公司开发的代替cgi脚本程序的一种应用,它可以与数据库和其它程序进行交互,是一种简单、方便的编程工具。asp的网页文件的格式是.asp,现在常用于各种动态网站中。 asp是一种服务器端脚本编写环境,可以用来创建和运行动态网页或web应用程序。这套教程,能有效的帮助你从不懂asp到懂asp,从不会写asp程序到会写asp程序。祝你好运!