HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/EBos/ellen-paragnost.nl/wwwroot/modules/module2.asp
<p><%
'This is another sample script that can be added to your QuickerSite.
'This script checks if you are logged on to the backsite. 

if Session(Application("QS_CMS_iCustomerID") & "isAUTHENTICATED")=true then

	'THIS USER IS LOGGED ON THE BACKSITE! You can now assume this user is the webmaster of the site.

	'in case you want the second admin to have access also, add: or Session(Application("QS_CMS_iCustomerID") & "isAUTHENTICATEDSecondAdmin")=true

	Response.Write "You have access to the backsite. A custom module could be added here, only available to backsite users!"
	
else
	'THIS IS USER IS NOT AUTHENTICATED AS THE Webmaster.
	Response.Write "You are currently not authenticated. Please logon to the backsite of QuickerSite first!"

end if
%></p>