搜索列表
-
用正则和xmlHttp实现的asp小偷程序
【ASP编程】复制代码 代码如下:<% '======================================== class EngineerSearch '老龙:laolong9999@sina.com ':模拟XML获取http标记资源(用过之后就知道为什么XML有用:)) '利用引擎搜索(显示引擎信息或其超连接网站上的信息或直接一个指定页面的相关信息...
用正则和xmlHttp实现的asp小偷程序 -
一段在asp中加密与解密对应的函数
【ASP编程】在ASP中加密方法有对应的解密方法好象不多,现在根据前辈资料整理出在asp中加密与解密函数 rsa.asp <% rem 在ASP中实现加密与解密,加密方法:根据RSA rem 联系:hnsoso@sina.com Class clsRSA Public PrivateKey Public PublicKey Public Modulus ...
一段在asp中加密与解密对应的函数 -
在asp中通过vbs类实现rsa加密与解密的代码
【ASP编程】在asp中通过vbs类实现rsa加密与解密,建议入精华 本文章有两文件组成 test.asp 测试演示文件 clsrsa.asp 实现rsa加密与解密的vbs类文件 下面是代码: 1. test.asp 复制代码 代码如下:<% rem 文章标题:在asp中通过vbs类实现rsa加密与解密 rem 收集整理:yanek rem...
在asp中通过vbs类实现rsa加密与解密的代码 -
ASP中常用的函数和详细说明第1/2页
【ASP编程】各位都把ASP用的函数和详细说明贴出来,供大家学习. 我知道的如下: 1.函数array() 功能:创建一个数组变量 格式:array(list) 参数:list 为数组变量中的每个数值列,中间用逗号间隔 例子: <% i = array ("1","2","3") %> 结果: i 被赋予为数组 2.函数Cint() 功能:将一表达式/其它类型的变量转...
ASP中常用的函数和详细说明 -
flash和asp分页的一点心得与flash脚本
【ASP编程】看了这个的一些帖子,学到了很多东西,现在和大家一起分享 flash现在只是一个显示的功能,过程中看了一些别人的东西,觉得分页似乎有很简单的实现方式.基本上都是用xml传送的.显示用 list 组件和 datagrid 都可以,这里我用的是动态文本,因为觉得组件用的太麻烦了.所以用了蠢办法,没办法,找不到...
flash和asp分页的一点心得与flash脚本 -
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教程第十三课--include文件
【ASP编程】Server Side Includes: Experienced JavaScript programmers know that code reuse is good. Experienced JavaScript programmers also know that JavaScript functions are data types. So, we should be able to store a JavaScript function inside a Session Variable or an Application Variable,...
javascriptasp教程第十三课--include文件 -
javascript asp教程第十课--global asa
【ASP编程】Global.asa: First of all, what is a global.asa? It's an optional script file that holds certain "global" information that you can access through the entire ASP appliciation. The global.asa is a plain text file saved with the .asa extension. You should only have one global.asa and it should go ...
javascriptasp教程第十课--globalasa -
javascript asp教程第九课--cookies
【ASP编程】Response Cookies in General: We'll start with the Response Cookies collection. I don't think it could be any easier. You simply put the name of the cookie in the argument. The corresponding value is a string. The only time it gets complicated is when you use keys (which I demonstrate b...
javascriptasp教程第九课--cookies