Multiple company support

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
s_daman
User
Posts: 1

Multiple company support

Post by s_daman »

I am looking to create a website that can be used by mutiple clients. Can I restrict access at record level, such that users can see records of only their company? Similarly when they create a new record, their company ID should be automatically added as part of the record key?


motfs
User
Posts: 258

Post by motfs »

User ID Security secure data at record level. Read Security Settings -> User ID Security in help file for more details.

To auto-update the value, setup the field with "Auto-Update Value" if you want to auto-update the value in Add/Edit Pages. Read Field Setup -> Auto-Update Value in help file for more details. If adding in Add Page Only, use the Row_Inserting server event (C#), e.g.:

rsnew["<field>"] = CurrentUserID();


Post Reply