Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypt an asp page

Status
Not open for further replies.

wassup

Technical User
Oct 3, 2000
52
0
0
GB
e.g can you convert ASP to JSP.

Can convert asp to a dll.
 
There is no straight conversion between ASP and JSP that I know of; they're fundamentally different technologies (languages at least). HOWEVER, you can "package" up an ASP site into one "compiled" COM object using Monte Kalisch
Brainbench MVP for ASP

Anti-Spam Email: montek at montekcs dot com
 
Is it possible to Encrypt an asp page?
 
Yes, but you'd probably have to write your own COM object or ISAPI DLL to handle it and it would destroy performance on your web application.

In theory, though, you could write an object that encrypts local files (or database "files"), perhaps with a different extension, like .ase, and then have a .asp page that uses that object to decrypt and process the page on the fly. You'd need VBScript 5.5 and to use the advanced Eval function. This would be entirely complex, though, and I'm still not sure if it would work exactly correctly. Monte Kalisch
Brainbench MVP for ASP

Anti-Spam Email: montek at montekcs dot com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top