Hello,
I have a following scenario.
I am working on a web based application which has SSO activated. I would like to store user name and password by giving a choice, “Do you want to remember User name and password” choice on a custom login screen. I browsed few topics in this forum, and found good tips too.
I tried following things
Created HTTP_Cookie, Comp for Disply but could not figure out how to set and get Cookie value?
I don’t know how it is possible using Javascript?
Any idea how to achieve this?
Thanks
MS
Subject: HTTP_Cookie
Hi,
Here (ND 4 and 5 forum) http://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/8dd411e704b5fded85256d7f002eeaf0?OpenDocument a JS solution to write, read and delete a cookie…
Also, to get the HTTP_Cookie in JS :
var CookieValue = document.forms[0].HTTP_Cookie.value;
HTH
Thierry
Subject: RE: HTTP_Cookie
Hi There,
Thanks for your response.
I have got the code from this website,
http://techpatterns.com/downloads/javascript_cookies.php
But some how could not make it working. Will you please explain?
Thanks
MS