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
  • ASP's automatic closing HTML/ubb tag function with simple comments

    ASP's automatic closing HTML/ubb tag function with simple comments

    When using the editor, you will encounter one point, that is, the closing problem of tags. This problem is very serious because it may cause the overall style of the web page to be displayed to be damaged. I recently saw this function in PJ's function
    2025-01-28
  • Example code for creating log files using ASP

    Example code for creating log files using ASP

    Create a log file with Asp This example uses a text file to write user information. Create a logfile.asp and place it at the top of each asp page.<!--#Include File=LogFile.asp--> When someone visits your site logfile.asp automatically writes his informati
    2025-01-28
  • Summary of ASP common functions

    Summary of ASP common functions

    -------------------------------------------------- -------------------- Function: Shield HTML code Parameters: StrInput User input information-------------
    2025-01-28
  • Browser commands can be implemented on the web page

    Browser commands can be implemented on the web page

    Whenever we see links on other people's web pages that implement browser commands such as open, print, forward, save as, back, close this window, disable right-click, etc., but we are unable to implement them ourselves, do we feel regretful? Do you al
    2025-01-28
  • An ASP function that displays remaining disk space

    An ASP function that displays remaining disk space

    This is a function for ASP to display remaining disk space. Friends who need it can use it directly. Function ShowFreeSpace(drvPath)Dim fso, d, sSet fso = CreateObject(Scripting.FileSys
    2025-01-28
  • asp string interception function

    asp string interception function

    asp string interception function'************************************************ ************* 'Function: cutStr[str(strlen)] 'Parameters: str, string to be processed, strlen, intercepted
    2025-01-28
  • Source code to implement code's "run code", "copy code" and "save code" functions under asp

    Source code to implement code's "run code", "copy code" and "save code" functions under asp

    The following code is a method of replacing characters, not a regular expression. Function content_Code(Str)dim ary_String,i,n,n_posary_String=split(Str,[ code ])n=ubound(ary_Stri
    2025-01-28
  • ASP VBScript Function Cheat Sheet - ASP Tutorial

    ASP VBScript Function Cheat Sheet - ASP Tutorial

    ASP VBScript function cheat sheet ASP tutorial VBScript function function description example Abs (numeric value) absolute value. The absolute value of a number is its positive value. The absolute value of the empty string (null) is also the empty string.
    2025-01-28
  • ASP:ActiveX cannot create Scripting.FileSystemObject object solution

    ASP:ActiveX cannot create Scripting.FileSystemObject object solution

    Regarding the similar problem that ActiveX cannot create Scripting.FileSystemObject objects, the solutions are generally similar. The main thing is to have a clear mind: first consider the component registration issue, and secondly the component permissio
    2025-01-28
  • How to use virtual space ASP to perform 301 permanent redirection

    How to use virtual space ASP to perform 301 permanent redirection

    Most people use virtual space. This article explains how to use a virtual space that supports ASP to set up 301 redirection. However, your program must be a full-site ASP. If you generate a static program, it will not work. Not much to say. Say, let’s con
    2025-01-28
  • Select-case usage in ASP

    Select-case usage in ASP

    Select-case usage in ASP executes one of several sets of statements based on the value of an expression. Select Case testexpression[Case expressionlist-n[statements-n]] . . .[Case Else express
    2025-01-28
  • Detailed configuration summary of ckEditor in asp

    Detailed configuration summary of ckEditor in asp

    Detailed configuration of ckeditor: After searching for a long time on the Internet, I finally found it! O(∩_∩)O haha~ How to use: 1. Introduce the ckeditor core file ckeditor.js into the page head; 2. Insert HTML where the editor is used Control textarea
    2025-01-28
  • Microsoft VBScript runtime error error ''800a0005'' is invalid

    Microsoft VBScript runtime error error ''800a0005'' is invalid

    Asp attachments cannot be uploaded or Microsoft VBScript runtime error 800a0005 is reported. Invalid procedure call or parameter: chr processing method. Yesterday, I redid the system on the company server. When I encountered that Asp attachments could not
    2025-01-27
  • Effectively prevent ASP Trojans from being uploaded and run—little knowledge [Network Security Technology

    Effectively prevent ASP Trojans from being uploaded and run—little knowledge [Network Security Technology

    Many webmasters currently use IIS servers, especially for ASP websites. Preventing ASP Trojans has become the most critical aspect of website security. Generally speaking, today's ASP Trojans often operate the server through the following four points,
    2025-01-27
  • ASP string uppercase converted to lowercase ASP lowercase converted to uppercase ucase lcase

    ASP string uppercase converted to lowercase ASP lowercase converted to uppercase ucase lcase

    Convert string uppercase literals to lowercase literals or lowercase literals to uppercase literals. ASP (specifically VBS) comes with two functions: LCase: Convert to lowercase UCase: Convert to uppercase. The following is the code in ASP. The effect can
    2025-01-27