搜索列表
-
给万博系统的新闻系统增加分页功能[配有详细说明]
【ASP编程】给万博系统的新闻系统增加分页功能,无需修改数据库,只需改变一个文件,就可以了. 如果将后台的Webediter增加一个插入分页符,那就更完美了.我还没加这个. 本例是在后台录入新闻时,在需要分页的位置插入分页符: {$html_page$} 就可以了. 代码如下,有详细说明 newsshow.asp <!--#include file="siteinf...
给万博系统的新闻系统增加分页功能[配有详细说明] -
asp,VBscript语法错误,史上最全最详细最精确第1/3页
【ASP编程】ASP错误总结 -------------------------------------------------------------------------------- Microsoft VBscript语法错误(0x800A03E9)-->内存不足 Microsoft VBscript语法错误(0x800A03EA)-->语法错误 Microsoft VBscript语法错误(0x800A03EB)-->缺少 ':...
aspVBscript语法错误史上最全最详细最精确 -
简单的ASP中经常用到的代码[推荐]第1/4页
【ASP编程】用数据库语句 1.select 语句:命令数据库引擎从数据库里返回信息,作为一组记录。 2.insert into 语句:添加一个或多个记录至一个表。 3.update 语句:创建更新查询来改变基于特定准则的指定表中的字段值。 4.delete 语句:创建一个删除查询把记录从 from 子句列出...
简单的ASP中经常用到的代码 -
用ASP打开远端MDB文件的方法
【ASP编程】如果你用ODBC connection (DSN or DSN-less)来访问远端的(UNC path)数据库, OLEDB会出现以下错误信息: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [Microsoft][ODBC&nbs...
用ASP打开远端MDB文件的方法 -
简单的ASP分页代码(测试正确)第1/2页
【ASP编程】本文匆匆已经全面测试,支持ASP+ACCESS以及ASP+SQL,请修改相关部分就可以了。 注意,匆匆谢绝基础问题回答,已经本代码已经很简单,如果还不懂可以参阅本站其他栏目。 <!--#include file="conn.asp"--> <% '以上为包含数据库衔接文件 '--------------------------------------------查...
简单的ASP分页代码(测试正确) -
提高关键字在百度里的排名的方法
【网站应用】1、 处理关键字: 首先收集很多与你的网站或产品有关的关键字了。接下来的工作就是把收集到的关键字进行组合,把它们组成常用的词组或短语。很多人在搜索的时候会使用两个或三个字组成词。据统计,平均是2.3个字。不要用普通的,单个字作为关键字。这样的关键字很难排到搜索引擎的前十位。例如:你有以下几个关键字...
提高关键字在百度里的排名的方法 -
javascript asp教程 日期相关
【ASP编程】JavaScript is loosely typed. Database files are not. If you put text into a Boolean database column or a Boolean value into a date/time column, then you will get an error. For the most part this is not a problem, except for date/time. It does not correspond to the JavaScript Date Object...
javascriptasp教程日期相关 -
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教程服务器对象
【ASP编程】Overview: The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections. List of Methods: Server Methods CreateObject( ) Server.CreateObject("ADODB.Recordset")Create an instance of an Object Execute( ) Server.Execute("fileName.asp")E...
javascriptasp教程服务器对象