|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。access|数据|数据库1.
setdbconnection=Server.CREATEOBJECT("ADODB.CONNECTION")
DBPath=Server.MapPath("customer.mdb")
dbconnection.Open"driver={MicrosoftAccessDriver(*.mdb)};dbq="&DBPath
SQL="select*fromauthwhereid="&user_id&""
SETuplist=dbconnection.EXECUTE(SQL)
2.
setdbconnection=Server.CreateObject("ADODB.Connection")
DBPath=Server.MapPath("customer.mdb")
dbconnection.Open"provider=microsoft.jet.oledb.4.0;datasource="&dbpath
SQL="select*fromauthwhereid="&user_id&""
SETuplist=dbconnection.EXECUTE(SQL)
3.
DBPath=Server.MapPath("customer.mdb")
setsession("rs")=Server.CreateObject("ADODB.Recordset")
rs=Server.CreateObject("ADODB.Recordset")
connstr="provider=microsoft.jet.oledb.4.0;datasource="&dbpath
SQL="select*fromauthwhereid="&user_id&""
session("rs").Opensql,connstr,1,3
4.
建odbc源xxx
setconn=server.createobject("Adodb.connection")
conn.open"DSN=xxx;UID=;PWD=;Database=customer
</p>asp,jsp,php是web开发的三大技术,asp简单易用且有microsoft做靠山,jsp功能强大是因为有java支持,php则开源跨平台.在国内,asp应用范围最广,jsp发展势头最猛,php则处于劣势.这可能与公司的支持以及技术的培训有关. |
|