Recommended: Revealing the 17 basic typical codes of ASP programming 1. Method for ASP to obtain table input data: GETPOST 1.get: After the user adds the data to the URL, the format is "? Field 1=Input data 1 Field 2=Input data 2..., and then send it to the server. For example: action is www.abc.com, field Name input data is jack, and field age data is 15, then use the get method to http://www.abc.com?Name=jackAge=
Some antivirus software often deletes certain asp files as viruses, and sometimes it is impossible to prevent them. The program is inexplicably unable to use it because there are fewer files~~. This is mainly because the antivirus software treats certain asp codes as Trojan keywords and saves records, so when there is this keyword, it will be prohibited from running or deleting.The solution is to disassemble these keywords.
Bundle
dimtStream
setStream=Server.CreateObject(adodb.stream)
Change to
dimtStream
setStream=Server.CreateObject(ado&db.stre&am)
If the antivirus software considers a virus's keyword string to be an object's method or property
like
tStream2.CopyTotStream,200
Can be changed to
execute(tStream2.Cop&yTotStream,200)
Bundle
dimtStream
setStream=Server.CreateObject(adodb.stream)
Change to
dimtStream
execute(settStream=Ser&ver.Crea&teObject(ado&db.stre&am))
Another way is to use encryption software to encrypt the asp code, such as Microsoft's asp encryption tool SCRENC.
Share: Detailed explanation of SQLSERVER stored procedures and calls Using SQLSERVER stored procedures can greatly improve program running speed and simplify programming and maintenance difficulties, and have been widely used. A stored procedure is actually a collection of Transact-SQL statements that can accept and return parameters provided by the user. A process can be created for permanent use, or temporarily used in a session (a partial temporary procedure), or