ASP by the anti-virus software mistakenly deleted solution _ application techniques

Source: Internet
Author: User
This is mainly because the antivirus software will be some ASP keywords as a trojan feature, record preservation, so encountered with this keyword, it will prohibit the operation or deletion. The solution is to take these keywords apart.
Put
Copy Code code as follows:

Dim Tstream
Set tstream = Server.CreateObject ("ADODB.stream")

Change into
Copy Code code as follows:

Dim Tstream
Set tstream = Server.CreateObject ("ADO" & "Db.stre" & "AM")

If antivirus software is considered a critical string for a virus is a method or property of an object
Such as
Copy Code code as follows:

Tstream2.copyto tstream,200

can be changed into
Copy Code code as follows:

Execute ("Tstream2.cop" & "Yto tstream,200")

Put
Copy Code code as follows:

Dim Tstream
Set tstream = Server.CreateObject ("ADODB.stream")

Change into
Copy Code code as follows:

Dim Tstream
Execute ("Set tstream = Ser" & "ver.") Crea "&" Teobject ("ADO" & "Db.stre" & "AM" ")"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.