Does any one know how to get the userid from the cookie (WCM site)?
user authentication
Can I get some more info on this
On July 23rd, 2009 Aby Singh says:
Hi Balaji,
Thanks for your response. Can I please contact you thru email or phone to get some more information? Thanks!
Hi Aby, My emai
On July 23rd, 2009 Balaji says:
Hi Aby,
My emai id is lb@fishtech.net. If you have any questions please send to me directly or you can use contact form from imiscommunity itself.
public string
public string GetSelectediMISID()
{
string _id = "";
try
{
if (Request.Cookies["UserID"] != null)
{
_id = Request.Cookies["UserID"].Value;
Secure _tool = new Secure();
_id = _tool.Decrypt(_id);
if (_id == null)
_id = "";
}
}
catch { }
return _id;
}