Cris
Posts: 78
|
Posted: 05/31/2018, 9:35 AM |
|
Hi
, it's been a while since I'm no longer programming with Classic ASP and I need to put my hand back on an old customer site that asking me for user profiling with complete news only available to members. but I do not remember what the function CCS uses to recognize the user is CCGetUserID or CCGroupID
Thank you
Cris
_________________
------
Cristiano
Skype: cris-do
|
 |
 |
Oper
Posts: 1195
|
Posted: 08/25/2018, 11:27 AM |
|
Maybe i did not understand your question.
but after doing Login you just has to filter data using the function on the select or beforebuildselect
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |
jsuarez2
Posts: 19
|
Posted: 03/19/2020, 8:28 PM |
|
Can you send your code please?
https://cl.tablago.com/
_________________
https://cl.tablago.com/ |
 |
 |
Oper
Posts: 1195
|
Posted: 08/18/2020, 2:45 PM |
|
Also you could do in the UI
but before Builfd Sql somethign like this:
Sender.where = " FIELDUSER = " & ccgetuserid()
or to force be loged in already
if len(ccgetuserid()) > 0 then
Sender.where = " FIELDUSER = " & ccgetuserid()
else
Sender.where = " 1=2 "
end if
_________________
____________________________
http://www.7bz.com (Free CMS,CRM Developed in CCS)
http://www.PremiumWebTemplate.com
Affiliation Web Site Templates
Please do backup first |
 |
 |