method to solve the accidental deletion of ASP files by antivirus software

Source: Internet
Author: User

Some anti-virus software will often be some of the ASP files as a virus deletion, sometimes simply impossible, the program inexplicably can not be used, because the file is less AH ~ ~. This is mainly because the antivirus software will be some ASP code as a trojan keyword, record preservation, so encountered with this keyword, it will prohibit the operation or deletion. The
   solution is to take these keywords apart. &NBSP
               
   dim tStream   
  set tstream = server.createobject (" ADODB.stream ")             
   Change to    &NBSP
  dim tStream   
  set tStream =  Server.CreateObject ("ADO"  &  "Db.stre"  &  "AM")         
   If antivirus software is considered a critical string of viruses is a method or attribute of an object     
      &NBSP
   such as   
  tStream2.CopyTo tStream,200       
   can be changed to          
  execute ("Tstream2.cop"  &  "yto tstream,200")          &NBSP
         
  dim tstream    
  set tstream = server.createobject ("ADODB.stream")     &NBSP
  changed to   
  dim tStream   
  execute ( "Set tstream = ser"  &  "ver." Crea " & " Teobject ("ADO"  &  "Db.stre"  &  "AM" ")"     &NBSP
      
   There is another way to encrypt ASP code with encryption software, such as Microsoft's ASP encryption tool SCRENC.

Related Article

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.