-
10 Jan 2008 4:08 AM #1
How to give password field (encrypted format)
How to give password field (encrypted format)
Hi,
I am working with login page of a portal, I just couldnt give password in encrypted format, as we used to do in HTML.
Any input on this issue????
-
10 Jan 2008 4:35 AM #2
Easiest Way: with ext-basex
This would encrypt all serialized form values prior to POSTing.Code:Ext.lib.Ajax.encoder = function(value){ return encodeURIComponent( myEncrypt(value)); };
Then your server would need to decode, decrypt each name=value pair before use."be dom-ready..."
Doug Hendricks
Maintaining ux: ManagedIFrame, MIF2 (FAQ, Wiki), ux.Media/Flash, AudioEvents, ux.Chart[Fusion,OFC,amChart], ext-basex.js/$JIT, Documentation Site.
Got Sencha licensing questions? Find out more here.


Reply With Quote

