Hi I'm completely new to Sharepoint. I have a very simple application, basically a list of records. Now I need to show the records based on the user is visiting the page, I need a very simple access rights logic Example now is
User | Data Example |
---|---|
User1 | Row1 |
User1 | Row2 |
User2 | Row3 |
What I would like to have
User1 sees
User | Data Example |
---|---|
User1 | Row1 |
User1 | Row2 |
User2 sees
User | Data Example |
---|---|
User2 | Row3 |
Is that possible? otherwise I prefer to develop from scratch a .NET application
Thanks in advance for your support
G.