Tag Archive for 'web-design-company-in-india-expertz-web'

Javascript Encription Method

October 3rd, 2008 by admin

A very simple encryption method that uses random values for each character. Interestingly, you can encrypt the same string as many times as you want and the result will always be different. Best used with short strings.

<script LANGUAGE=”JavaScript”>

function Encrypt(theText) {
output = new String;
Temp = new Array();
Temp2 = new Array();
TextSize = theText.length;
for (i = 0; i [...]

Tags: , , ,

The Dojo Toolkit in Practice

September 24th, 2008 by admin

We have posted a new article on using the Dojo Toolkit in a project.
The article discusses a piece of a project that uses Ajax to create a responsive itinerary viewer. The article was just updated for the latest Dojo 0.3 release.
Introduction
When you start to build an Ajax application, you quickly run into situations where [...]

Tags: , ,