Home>Network programming tutorial> ASP tutorial
All ASP tutorial ASP tutorial ASP.NET tutorial PHP tutorial JSP tutorial C#/CSHARP tutorial XML tutorial Ajax tutorial Perl tutorial Shell tutorial Visual Basic tutorial Delphi tutorial Mobile development tutorial C/C++ tutorial Java tutorial J2EE/J2ME Software engineering
ASP tutorial
  • Three ways to get form objects

    Three ways to get form objects

    1. getElementById() getElementById() can access a specific element in DOCUMENT. As the name suggests, it obtains the element through the ID, so it can only access the element with the ID set. For example, there is a DIV with the ID docid: program code
    2025-01-29
  • 18 security rules you need to pay attention to when using Access database under ASP

    18 security rules you need to pay attention to when using Access database under ASP

    There are 18 security rules that you need to pay attention to when using Access database under ASP. If you pay attention to the following points, your access database will basically not be easily stolen by others. 1. First, we need to filter all content s
    2025-01-29
  • ISAPI Filter website resource anti-download system-AntiDownload.DLL

    ISAPI Filter website resource anti-download system-AntiDownload.DLL

    Recently, due to project needs, I learned ISAPI Filter programming and wrote this system. Now open source to friends in the programming forum. Instructions for use of the RedIce website resource anti-download system. The website resource anti-download sys
    2025-01-29
  • Problems with submitting Chinese when XMLHTTP uses POST to send forms

    Problems with submitting Chinese when XMLHTTP uses POST to send forms

    I just wrote a thief program, and suddenly I found that the content could not be captured when POSTing in Chinese. Considering the Chinese encoding problem, like escape() in javascript, this function can also be used in vbscript. You only need to send it
    2025-01-29
  • Two function codes to prevent SQL injection in ASP

    Two function codes to prevent SQL injection in ASP

    Function SafeRequest(ParaName,ParaType) '--- Incoming parameters --- 'ParaName: parameter name - character type' ParaType: parameter type - numeric type (1 means that the above parameters are numbers, 0 means that the above parameters are char
    2025-01-29
  • ASP universal program to implement collapsible menu in web pages

    ASP universal program to implement collapsible menu in web pages

    ASP universal program to implement folding menus in web pages. Bank of China, Shanxi Province Jincheng Branch Technology Keyuan Jinyu With the increasing popularity of the Internet/Intranet, Web programming and web page production have become a trend. Thi
    2025-01-29
  • The difference between set and dim in ASP (my own understanding)

    The difference between set and dim in ASP (my own understanding)

    dim is used to define a variable, and set is used to specify an object for a variable. This is the explanation on the Internet. Next, I will introduce my own understanding. Friends who are interested can refer to it. I hope it can help you-- -------------
    2025-01-29
  • Solution to download failure through Response.Flush()

    Solution to download failure through Response.Flush()

    When Response.Flush() implements downloading of server-side files, it will fail and the IE download box cannot pop up normally. Through testing, it is discovered that the security settings of the browser are problematic. The following operations can solve
    2025-01-29
  • ASP classic introductory tutorial on using SQL statements in ASP Page 1/2

    ASP classic introductory tutorial on using SQL statements in ASP Page 1/2

    There are so many different kinds of SQL products that you may just throw off your sleeves and get started without taking care of the rest. But if you want to use ASP and SQL at the same time, you may get dizzy. MySQL, SQL Server, and mSQL are all excelle
    2025-01-28
  • ASP empty string, IsNull, IsEmpty difference analysis

    ASP empty string, IsNull, IsEmpty difference analysis

    This article will introduce in detail the differences between ASP hollow strings, IsNull, and IsEmpty. Friends in need can refer to the following instructions: set aa=server.createobject(ddd)isnull means that the pointer is null, and the pointer points to
    2025-01-28
  • ASP code to prevent image Trojans from uploading

    ASP code to prevent image Trojans from uploading

    Sometimes Trojans are uploaded through programs, usually disguised as pictures. The following is the code for detecting picture Trojans under asp. Friends in need can refer to it. ASP Trojan Defense: Copy the code as follows: const adTypeBinary=1dim jpg(1
    2025-01-28
  • New method to prevent collection of asp dynamic pages

    New method to prevent collection of asp dynamic pages

    The principle of anti-collection is very simple. First, put a dynamic statement to add the visitor's IP to a table in the database. Then add a JS at the bottom of the page. The JS directly accesses the dynamic page and adds the visitor's IP to ano
    2025-01-28
  • Solution to Oracle Large Text Access Problem in ASP

    Solution to Oracle Large Text Access Problem in ASP

    When I develop BS structure programs, I often need to process some large-capacity text data in ORACLE, so after repeated testing, I finally used ASP to successfully solve the problem of large text data access under ORACLE. 1. Operating environment: 1. M
    2025-01-28
  • ASP encryption and decryption online method and ASP backdoor ultimate disguise

    ASP encryption and decryption online method and ASP backdoor ultimate disguise

    The principle of ASP encryption and decryption is to replace the line feed/carriage return character with the word "lin". As for entering a number between -95~+95, it is to find a manual random number, which can also be used in the decryption pr
    2025-01-28
  • Implementation method and code of binary upload file

    Implementation method and code of binary upload file

    <Form action=upload.asp method=post enctype=multipart/form-data>上传文件:<Input type=file name=file1><br><input type=submit
    2025-01-28