Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
HI I need to list different data on the List Page based on the user name.I was thinking using Events for the List page - Before displayLine one is created by Blake Line two is created by Ana Data :Column1 Column2 Column3 created by Mason 234 ford BlakeGreg 123 Honda Ana User logged in : Mason should see only Column1 Column2 Column3 created by Mason 234 ford BlakeUser logged in : Greg should see only Column1 Column2 Column3 created by Greg 123 Honda AnaThx guys!
How's about Advanced Security option 'Users can see and edit their own data only'?https://xlinesoft.com/asprunnernet/docs/advanced_security_settings.htm
Or you could use a "SQL variable" in the "where" of your SQL queryhttps://xlinesoft.com/asprunnernet/docs/sqlvariables.htmi.e. select column1, column2,column3from mytablewhere createdby = ':session.FooBar'In this example you'd have to setup the "FooBar" session variable at logon, or wherever makes sense. Or check out the ':user.field' variable.Tim