1. Construct a string containing a user name and password.
Dim str as string="user=John&pwd=Hell
2. Encrypt this string with some string encription.
3. Pass the resulting string to java app
Response.redirect("http://
4. Decrypt that string at java app side, parse it into user name and password and check if credentials are valid...
Main Topics
Browse All Topics





by: frodomanPosted on 2006-05-03 at 13:52:54ID: 16600280
Querystring is going to be visible whether you encode it or not so I'm not sure what you're asking? You can encrypt 'John' to be 'H&y4Fv_9' but that isn't going to stop someone from copying 'H&y4Fv_9' and pasting it into a URL at a later date...
If you want to have credentials hidden then don't put them in the querystring!