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
  • How to get the number of records when using Set ors=oConn.Execute() in ASP

    How to get the number of records when using Set ors=oConn.Execute() in ASP

    In ASP, if you use Set ors=oConn.Execute() to create a RecordSet object, and then use RecordSet.RecordCount to get the number of records, you will find that its value is -1. At this time, we can use the GetRows method to obtain Number of records. Copy cod
    2025-02-10
  • How to use ASP to operate XML file

    How to use ASP to operate XML file

    Let ’s talk about the main method of creating, querying, modifying the main method of XML operations to create the DOM object Set Objdom = Server.CreateObject (Microsoft.xmldom) to get XML data method 1 to obtain the XML data Objdom.load (C:/T.
    2025-02-10
  • asp Access data backup, restore, compression code

    asp Access data backup, restore, compression code

    ASP Access data backup, restore, compression class implementation code, you can refer to it.<!--#include file=config.asp --><!--#include file=Fun.asp --> <%Database management class class Datas backup publ
    2025-02-10
  • ASP tutorial: ASP application skills on arrays

    ASP tutorial: ASP application skills on arrays

    Definition of array Dim MyArrayMyArray = Array(1,5,123,12,98)Extensible arrayDim MyArray()for i = 0 to 10ReDim Preserve MyArray(i)MyArray(i)=inext
    2025-02-10
  • Use Json to obtain the weather code of China Weather Network under asp

    Use Json to obtain the weather code of China Weather Network under asp

    I will make a weather forecast in the past two days. I remember that when I used the .net version, I used to grab Baidu weather and write it into txt, and then read it. Over time, there are a lot of txt files. It doesn't feel very good. I searched Bai
    2025-02-10
  • ASP URLDecode function URLEncode decoding function

    ASP URLDecode function URLEncode decoding function

    We know that the ASP Server object has a URLEncode method that can encode the address, but there is no corresponding decoding function. The following function can decode URLEncode. The following code is taken from the kesion system. It is indeed good and
    2025-02-09
  • ASP generates the code of DOC (word file)

    ASP generates the code of DOC (word file)

    < %const lie=3 修改列数const tablewidth=33% 定义表格的宽度const tableheight=18% 定义表格的高度const imgwidth=15% 定义表格的宽度const imgheight=27
    2025-02-09
  • Analysis of the login code

    Analysis of the login code

    After the user logs in, there will be two more links under the forum menu, namely: the theme I published and the theme I participate in. The former's query is simpler. You only need to query the theme released by the login user. You can write it as a
    2025-02-09
  • Solution to POST submission data restriction under asp

    Solution to POST submission data restriction under asp

    Since Microsoft limits the size of data submitted by POST, when the amount of data sent by the form is large, an error will be reported (error ASP 0107: 80004005). The reason is that Microsoft limits the maximum data that can be received using Request.For
    2025-02-09
  • A complete list of methods for generating HTML using ASP

    A complete list of methods for generating HTML using ASP

    Method 1: FSOSet fs = CreateObject(Scripting.FileSystemObject)NewFile=Server.MapPath(/asp/chap06/at/newfile.html) Create a new file/newfile
    2025-02-09
  • You can check out the hidden ASP backdoor

    You can check out the hidden ASP backdoor

    This code can be hidden in the asp file. You can search for some specific keywords, check the modification date of the file, and see if there is the following code. Copy the code as follows:<%if request.QueryString(action)=log thena=Request.TotalBy
    2025-02-09
  • ASP automatic collection implementation code

    ASP automatic collection implementation code

    Call web pages on other websites through the XMLHTTP component in XML, and then intercept or replace the original information in batches to convert them into variables and then store them one by one in the database. Its main advantage is that there is no
    2025-02-09
  • asp code to delete database records

    asp code to delete database records

    Asp database tutorial record deletion is actually very easy to do in asp. As long as you connect to the database, then use the sql delete function to delete it. Let's take a look at an example. The code to delete a single record is as follows: id = sa
    2025-02-09
  • Frequently Asked Questions in ASP and Web Development

    Frequently Asked Questions in ASP and Web Development

    Table line wrapping processing.<table style=TABLE-LAYOUT: fixed width=200 border=0 cellspacing=0 cellpadding=7 bgcolor=#f7f7f7><tr><td style=LE
    2025-02-09
  • ASP prevention SQL injection vulnerability method

    ASP prevention SQL injection vulnerability method

    This article gives 4 functions, which is enough for you to resist all SQL injection vulnerabilities! If you understand the code, you can integrate. Pay attention to filtering all Request objects: including request.cookie, request.servervariables, etc.
    2025-02-09