Dmitry_Eliseev's blog

Usefull C# code. How to find an IMISID of currently logged in user.

Hi All,

Recently I run into the issue of where(how) to find iMIS ID of currently logged in user in iMIS Public views.
After some research I finally come up with folowing code:

// VERY USEFULL ONE - Returns iMIS ID for currently Logged in USER
private string GetCurrentiMISID()
{
string _id = "";
if (Request.Cookies["UserID"] != null)
{

Syndicate content