*********************************************** Customizing ProductCart Displaying code to wholesale customers only *********************************************** This code must be part of an ASP page. It will not work on an HTML page. To only show code if a wholesale customer is logged in: <% If session("customerType")="1" then %>

This section of my page will be shown only to wholesale customers who have logged into the store.

<% end if %> If you don't want the customer to view a page unless they are logged in as a wholesale customer, you can redirect them to another page using this code: <% if session("customerType")<>"1" then response.redirect "page.html" response.end end if %>