Comment on Tutorial - The Advantages of JSP By aathishankaran
Comment Added by : gendull
Comment Added at : 2007-02-25 21:03:20
Comment on Tutorial : The Advantages of JSP By aathishankaran
help, i want to migrate my system (asp to jsp)
i have source code encrypt.asp ; how i write in jsp code ???
thanks
my encrypt.asp
--------------------------------------
function Encrypt(Plain)
retVal=""
for i=1 to len(Plain)
retVal=retVal+chr(asc(mid(Plain,i,1))+99)
next
encrypt=retVal
end function
function Decrypt(Encrypted)
retVal=""
for i=1 to len(Encrypted)
retVal=retVal+chr(asc(mid(Encrypted,i,1))-99)
next
Decrypt=retVal
end function
View Tutorial
- Data Science
- React Native
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Read a file having a list of telnet commands and execute them one by one using Java
Open a .docx file and show content in a TextArea using Java
Step by Step guide to setup freetts for Java
Of Object, equals (), == and hashCode ()
Using the AWS SDK for Java in Eclipse
DateFormat sample program in Java
concurrent.Flow instead of Observable class in Java
Calculator application in Java
Sending Email from Java application (using gmail)