how to protect my Asp files contained folder in my client machine

how to protect my Asp files contained folder in my client machine

am 04.09.2007 16:43:11 von jagannath.ga

hey

I have folder with plenty of asp files
i want to propect all the files
i mean the folder should not allow to open for my customer's
and the mean time it should not affect my program , and web sites

i tried the EFS system .. but its not comfotable for my requirement

let me know if any one have solutions for this


thanks
Jagan

Re: how to protect my Asp files contained folder in my client machine

am 04.09.2007 17:00:46 von Ken Schaefer

ASP files need to be interpreted at runtime. This means that they need to be
read by the relevant script intepreter engine (VBScript or JScript). That
means that they need to be in decodable format.

Microsoft does produce a Script Encoder tool you can download, which can
encrypt your scripts. However, because they need to be decoded at runtime,
anyone can (with some effort) get the plain text.

If you need more protection then I suggest you look at moving the
functionality into a COM component (i.e. a .dll) that the customer must
install.

Alternatively host the application yourself.

Or lastly, be aware that there is very little ASP code these days that can't
be reproduced by any decent programmer. Why do you think your code is that
special?

Cheers
Ken

wrote in message
news:1188916991.778744.233050@d55g2000hsg.googlegroups.com.. .
> hey
>
> I have folder with plenty of asp files
> i want to propect all the files
> i mean the folder should not allow to open for my customer's
> and the mean time it should not affect my program , and web sites
>
> i tried the EFS system .. but its not comfotable for my requirement
>
> let me know if any one have solutions for this
>
>
> thanks
> Jagan
>