-
常用CSS样式
Aug252006
-
用CSS做的几个漂亮的Button
Aug252006.btn { BORDER-RIGHT: #7b9ebd 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7b9ebd 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 12px; FILTER: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#cecfde); BORDER-LEFT: #7b9ebd 1px solid; CURSOR: hand; COLOR: b ...
阅读全文作者: | 分类:设计代码 | 阅读:318 views
-
CSS的优化与技巧
Aug252006
-
CSS实现简单的图片防盗链代码
Aug252006
-
CSS使用详解
Aug252006
-
通过ASP与ACCESS数据库建立连接
Aug022006
-
ASP错误信息总汇
Aug0220061.错误信息 Microsoft OLE DB Provider for ODBC Drivers error “80004005“ [Microsoft][ODBC Microsoft Access 97 Driver] The Microsoft Jet database engine cannot open the file “(unknown)“. It is already opened exclusively by another user, or you need permission to view its data. 原因: 这个错误 ...
阅读全文
-
一个让用户更改密码的简单程序
Aug022006<% id = Request("id") newpassword = Request("password") newpasswordtemp = Request("passwordtemp") If newpassword <> newpasswordtemp Then
Response.Write "对不起,新密码与新密码确认不同!请重试! "
Response.End
End IfSet conn = Server.CreateObject("ADODB.Connection")
阅读全文
DBPath = Server.MapPath("userinfo.mdb")
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath
Set rs = Server.CreateObject("ADODB.Recordset")
sql="update userinfo set 密码=“" & newpassword & "“ where id="&id
rs.Open sql, conn, adOpenDynamic, adLockPessimistic
%>
此程序非常简单,相信各位都会懂!跟“如何使用 Microsoft Access 和 Active Server Pages 加密你的页面 !”的结合,实现让用户更改密码就简单了!
作者:奇风 | 分类:设计代码 | 阅读:313 views
-
自动选出最快站点的路径
Aug022006
-
ASP提速技巧
Aug022006