搜索列表
-
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
javascript asp教程More About Recordsets
【ASP编程】Below we will attempt to access data from a database without knowing the column names. Clearly the best way to utilize data in your database is to keep track of your schema. Schema is the layout of data in your database. The concept is well beyond the scope of this web site, but it is ...
javascriptasp教程MoreAboutRecordsets -
javascript asp教程Recordset记录
【ASP编程】Recordset is another created/instanciated Object. It is a collection of data taken from a database. Recordset has 26 properties, 25 methods, 11 events, and two (2) collections. The vast majority of Recordset is beyond the scope of this web site. Quick Aside: The database we are using for l...
javascriptasp教程Recordset记录 -
javascript asp教程创建数据库连接
【ASP编程】While this section is devoted to ASP database utilization, it very important to remember that this web site is not intended to be a thorough ASP resource. Remember, the focus of this site is strictly limited to how to use JavaScript as your primary scripting language for ASP. You'...
javascriptasp教程创建数据库连接 -
javascript asp教程第七课--response属性
【ASP编程】Below is a table of Response Properties along with examples and explanations. Response Properties Buffer Response.Buffer = trueAllows for the buffering of output CacheControl Response.CacheControl="Public" Sets Cache to "Public" or "Private" CharSet Response.CharSet="window...
javascriptasp教程第七课--response属性 -
ASP与数据库,有用的代码(转贴,摘贴)
【ASP编程】ASP与数据库 ASP与数据库运用:密码验证 Microsoft 的大作ASP(Active Server Pages)以其易学易用、扩充性好、功能多而强等优点正掀起一场新的web编程革命(从严格意义上讲,编写asp并不是编程),它以令人吃惊的发展和普及速度大有取代由perl等语言编...
ASP与数据库,有用的代码(转贴,摘贴) -
很有用的学习ASP常用到的代码第1/2页
【ASP编程】1、数据库连接。 ASP与Access数据库连接: <%@ language=VBscript%> <% dim conn,mdbfile mdbfile=server.mappath("数据库名称.mdb") set conn=server.createobject("adodb.connection") conn.open "driver={microsoft a...
很有用的学习ASP常用到的代码 -
后台管理登录篇-asp设计与数据库
【ASP编程】实现功能不难,想要完善,甚至完美,那才叫难。所以,小弟将功能实现帖出来,和各位初学者讨论讨论。至于完善,就看各位自己的想法了 一、建立数据库 在就开始了,我建了一个名为windsn.mdb的数据库,包含4张表admin表(用于管理员信息):id, name(用户名), pwd(密码), ...concent表(用于存放文档数据):con_id, title,...
后台管理登录篇-asp设计与数据库 -
用VB生成DLL封装ASP连接数据库的代码
【ASP编程】这篇文章以VB生成的DLL封装ASP代码来连接数据库(以Access数据库为例)。 一般情况下我们在用ASP连接Access的数据库时通常都会进行如下的操作 '//Proconn.asp <% dim ProConn set ProConn=Server.CreateObject("ADODB.CONNECTION") ProConn.Open "driver...
用VB生成DLL封装ASP连接数据库的代码 -
超全的webshell权限提升方法
【安全相关】WEBSHELL权限提升技巧 c: d: e:..... C:\Documents and Settings\All Users\「开始」菜单\程序\ 看这里能不能跳转,我们从这里可以获取好多有用的信息比如Serv-U的路径, C:\Documents and Settings\All Users\Applicatio...
超全的webshell权限提升方法 -
激发你的灵感:50个优秀的Favicons
【CSS/HTML】原文:http://www.smashingmagazine.com/page/2/翻译:Blank(怿飞) Inspire Yourself: 50 Remarkable Favicons激发你的灵感:50个优秀的Favicons 引用:Actually it's a pity that many designers don't really make use of them. Favicons, mini graphics for a particular web-site, can be displayed in...
激发你的灵感:50个优秀的Favicons -
ASP数据库连接方式大全
【ASP编程】<% '#######以下是一个类文件,下面的注解是调用类的方法################################################ '# 注意:如果系统不支持建立Scripting.FileSystemObject对象,那么数据库压缩功能将无法使用 '# Access 数据库类 '# CreateDbFile 建立一个...
ASP数据库连接方式大全