update 20260406

This commit is contained in:
Stefan Hutter
2026-04-06 12:40:02 +02:00
parent e82057b6e4
commit 7a28e0c2bb
519 changed files with 318370 additions and 634840 deletions
+7 -2
View File
@@ -50,8 +50,11 @@ namespace OnDocAPI_NetFramework
if (user != null)
{
lblLoginError.Text = "";
Button1.Visible = true;
Button2.Visible = true;
Button1.Visible = false;
Button2.Visible = false;
if (user.Funktionen.ToLower().Contains("clm")) { Button1.Visible = true; }
if (user.Funktionen.ToLower().Contains("jsonv")) { Button2.Visible = true; }
HttpContext.Current.Session["LoggedIn"] = true;
}
else
@@ -70,6 +73,8 @@ namespace OnDocAPI_NetFramework
{
public string UserID { get; set; }
public string Password { get; set; }
public string Funktionen { get; set; }
}
}
}