0

I have encrypted my ASP File. But when i run it in browser it fails. How to execute that asp file so that my application could run ? how to decrypt it, it is encrypted using a tool , how do I decrypt it while execution ? I don't want that anybody whom I give that file , sees the code of the file , but could only execute it and use it.

sqlchild
  • 8,754
  • 28
  • 105
  • 167

1 Answers1

1

Ah, I think I understand:

ASPEncrypt is a component you can use to encrypt files using ASP or ASP.NET. It is NOT a tool to encrypt your ASP(.NET) source code files with.

You're looking for something like Microsoft script encoder (I don't know if it's still available), you want your sourcecode to be unreadable right?
There are tools that claim to do this, but there isn't one I know of that can't be reversed. So it's only a small obstacle if someone really wants to get their hands on your code.

Here are some more tools that claim to do this.

I hope one of them suits your needs.

Erik Oosterwaal
  • 4,272
  • 3
  • 44
  • 64