*********************************************** Customizing ProductCart Displaying code to logged in users only *********************************************** Use this 'if' statement to show code only to customers that are logged in. This code must be part of an ASP page. It will not work on an HTML page. <% if session("idCustomer")="0" or session("idCustomer")="" then %>

This part of my page will be shown when customers are not logged in.

<% else %>

This part of my page will be shown after the customer has logged in.

<% end if %>