I have a table called users.. in the table is a field called Status
Each user has a different status
How do I get the CurrentUser status to show in my Div Header
Thanks
I have a table called users.. in the table is a field called Status
Each user has a different status
How do I get the CurrentUser status to show in my Div Header
Thanks
Use the Page_DataRendering server event to add content to your page header. To get current user information, use the CurrentUserInfo function as described in:
https://aspnetmaker.dev/docs/#/customscripts.html
Use the User_Valdiated server event to get extra user info:
https://aspnetmaker.dev/docs/#/customsc ... _validated