搜索列表
-
在InstallShield中引用WINSOCK 的示例代码
【其它脚本】通过以下示例,InstallShield可以用WINSOCK获取IP地址,可将以下文件保存为tcpip.rul #define WSADESCRIPTION_LEN 256 #define WSASYS_STATUS_LEN 128 typedef WSADa...
在InstallShield中引用WINSOCK的示例代码 -
在InstallShield中通过主机名获取IP地址的代码
【其它脚本】// 文 件 名:setup.rul // 脚本功能:通过主机名获得TCP/IP地址 // 编写日期:2003-07-15 // 使用方法:调用函数 fGetIpAddress(szHost, szIPAdress) // written by Jaron ,2002-07-15 // 原出处:江都资讯网论坛 htt...
在InstallShield中通过主机名获取IP地址的代码 -
站长必看!赚钱网站资源贴
【网站应用】站长必看!赚钱网站资源贴(转贴) https://www.google.com/adsense?hl=en_US支持中国地址,不支持中国网站和流量.100刀支付.http://www.advertising.com/Contact/ContactEmailPub.html 这个广告是ADV的广告,信誉极好,有中国可以申请,最好用美国地址后改地址!http://www.clixgalore.com 这个支持中国 里...
站长必看!赚钱网站资源贴 -
ASP生成柱型体,折线图,饼图源代码
【ASP编程】ASP生成柱型体,折线图,饼图源代码 -------------------------------------------------------------------------------- <% function table2(total,table_x,table_y,all_width,all_height,line_no) '参数含义(传递的数组,横坐标,纵坐标,图表的宽度,图表的高度,折线条数) '纯ASP代码生成图表函数2——折...
ASP生成柱型体,折线图,饼图源代码 -
用正则和xmlHttp实现的asp小偷程序
【ASP编程】复制代码 代码如下:<% '======================================== class EngineerSearch '老龙:laolong9999@sina.com ':模拟XML获取http标记资源(用过之后就知道为什么XML有用:)) '利用引擎搜索(显示引擎信息或其超连接网站上的信息或直接一个指定页面的相关信息...
用正则和xmlHttp实现的asp小偷程序 -
asp,VBscript语法错误,史上最全最详细最精确第1/3页
【ASP编程】ASP错误总结 -------------------------------------------------------------------------------- Microsoft VBscript语法错误(0x800A03E9)-->内存不足 Microsoft VBscript语法错误(0x800A03EA)-->语法错误 Microsoft VBscript语法错误(0x800A03EB)-->缺少 ':...
aspVBscript语法错误史上最全最详细最精确 -
ASP中常用的函数和详细说明第1/2页
【ASP编程】各位都把ASP用的函数和详细说明贴出来,供大家学习. 我知道的如下: 1.函数array() 功能:创建一个数组变量 格式:array(list) 参数:list 为数组变量中的每个数值列,中间用逗号间隔 例子: <% i = array ("1","2","3") %> 结果: i 被赋予为数组 2.函数Cint() 功能:将一表达式/其它类型的变量转...
ASP中常用的函数和详细说明 -
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教程第十二课---session对象
【ASP编程】Overview: The Session Object is how you track a single user across many pages. It has four (4) properties, two (2) collections, one (1) method, and two (2) events. Get Started: In this series of examples we will create a password system. We will use the Session Object to track whet...
javascriptasp教程第十二课---session对象 -
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 -
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属性 -
VBA 中要用到的常数第1/2页
【其它脚本】Calendar 常数 可在代码中的任何地方用下列常数代替实际值: 常数 值 描述 vbCalGreg 0 指出使用的是阳历。 vbCalHijri 1 指出使用的是伊斯兰历法。 Color 常数 可在代码中的任何地方用下列常数代替实际值: 常数 值 描述 vbBlack 0x0 黑色 vbRed 0xFF 红色 vbGreen 0xFF00 绿色 vbYellow 0xFFFF 黄色 vbBl...
VBA中要用到的常数