asp教程

以下是为您整理出来关于【asp教程】合集内容,如果觉得还不错,请帮忙转发推荐。

【asp教程】技术教程文章

javascript asp教程第八课--request对象【代码】

Request Object: Request has five (5) Collections, one (1) Property, and one (1) Method. Youll use the Collections far more than the property or the method. Request Collections: Below is a table of the Request Collections and descriptions of how they are used. Request CollectionsClientCertificate Request.ClientCertificate("Key[Field]")Client security info for SSL encryptionCookies Request.Cookie...

javascript asp教程第十课--global asa【代码】

Global.asa: First of all, what is a global.asa? Its 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 in your top level directory. Below is an example global.asa file. Dont try to understand the script just...

javascript asp教程第四课 同时使用vbscript和javascript

开始: 你能让javascript和vbscript实现从同一个表格里传出音乐。看看下面的脚本: function JSGreeting() { return "Greetings from a JavaScript Function"; } Function VBGreeting() VBGreeting="Greetings from a VBScript Function" End Function Function toDollars(x) toDollars=FormatCurrency(x) End Function \r") Response.Write(JSGreeting() + " \r") Response.Write(VBGreeting() + " \r") Response.Write(c + ...