搜索列表
-
flash和asp分页的一点心得与flash脚本
【ASP编程】看了这个的一些帖子,学到了很多东西,现在和大家一起分享 flash现在只是一个显示的功能,过程中看了一些别人的东西,觉得分页似乎有很简单的实现方式.基本上都是用xml传送的.显示用 list 组件和 datagrid 都可以,这里我用的是动态文本,因为觉得组件用的太麻烦了.所以用了蠢办法,没办法,找不到...
flash和asp分页的一点心得与flash脚本 -
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教程创建数据库连接 -
很有用的学习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设计与数据库 -
按ID号发布文章(精)
【整站程序】今天终于把按文章ID生成静态文章搞定了,相信许多朋友应该需要,为发布文章节约不少时间. 此主题相关图片如下: 第一步:在Admin\Include\refreshhtml.asp文件的第90行下面插入下面代码 Response.Write " <form action=""RefreshHtmlSave.asp?Types=Content&RefreshFlag=AID&ChannelID=...
按ID号发布文章(精) -
超全的webshell权限提升方法
【安全相关】WEBSHELL权限提升技巧 c: d: e:..... C:\Documents and Settings\All Users\「开始」菜单\程序\ 看这里能不能跳转,我们从这里可以获取好多有用的信息比如Serv-U的路径, C:\Documents and Settings\All Users\Applicatio...
超全的webshell权限提升方法 -
ASP数据库连接方式大全
【ASP编程】<% '#######以下是一个类文件,下面的注解是调用类的方法################################################ '# 注意:如果系统不支持建立Scripting.FileSystemObject对象,那么数据库压缩功能将无法使用 '# Access 数据库类 '# CreateDbFile 建立一个...
ASP数据库连接方式大全 -
ASP常用函数收藏乱七八糟未整理版
【ASP编程】<% '******************************************************************* '取得IP地址 '******************************************************************* Function Userip() Dim GetClientIP '如果客户端用了代理服务器,则应该用S...
ASP常用函数收藏乱七八糟未整理版 -
改进性能和样式的24个ASP 技巧
【ASP编程】简介 技巧 1:在 Web 服务器上缓存常用数据 技巧 2:在 Application 或 Session 对象中缓存常用数据 技巧 3:在 Web 服务器磁盘上缓存数据和 HTML 技巧 4:避免在 Application 或 Session 对象中缓存非灵活组件 技巧 5:不要在 Application 或 Session 对象中缓存数据库连接 技巧 6:妙用 Session 对象 技巧 7:在...
改进性能和样式的24个ASP技巧 -
我用ASP写的m行n列的函数,动态输出创建TABLE行列
【ASP编程】没有用正常的循环tr内循环td的方法,所以就没有计算最后一页的记录集数量。 但当记录集不足时也同样能够自动补空行空列,如有不足请指出,谢谢。 使用方法很简单: 复制代码 代码如下:<% showData("查询语名") Call pagehead(行数,列数) '------------------------------------------------...
我用ASP写的m行n列的函数动态输出创建TABLE行列