搜索列表
-
给万博系统的新闻系统增加分页功能[配有详细说明]
【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下实现替换远程文件为本地文件并保存远程文件的代码
【ASP编程】1、将下面的文本文件下载,并将.TXT改为remote.asp,里面有具体设置方法 复制代码 代码如下:<% '添加资源时是否保存远程图片 Const sSaveFileSelect=True '远程图片保存目录,结尾请不要加“/” Const sSaveFilePath="/images/News" '远程图片保存类型 Const sFileExt="jpg|gif|...
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分页代码(测试正确) -
ASP中常用的函数和详细说明第1/2页
【ASP编程】各位都把ASP用的函数和详细说明贴出来,供大家学习. 我知道的如下: 1.函数array() 功能:创建一个数组变量 格式:array(list) 参数:list 为数组变量中的每个数值列,中间用逗号间隔 例子: <% i = array ("1","2","3") %> 结果: i 被赋予为数组 2.函数Cint() 功能:将一表达式/其它类型的变量转...
ASP中常用的函数和详细说明 -
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教程服务器对象