Create Your FREE Business Booster Account
Register Your Business
Corporate/Main Location Only! Additional locations of the same business are added in the Back Office
<%
if Session("LoggedIn") then
if Session("UserTypeBiz") then
Response.Redirect "/Full/Biz"
else
Response.Redirect "/Full/Index"
end if
end if
Dim rc
Set rc = New RegisterClass
rc.RegisterPage = "/Full/CreateAccountBiz" 'Set the page for the full registration process.
rc.SuccessPage = "/Full/CreateAccountBiz" 'Set the page after the registration/confirmation is complete.
rc.FormType = "B" '(F)ull or (C)oupon or (P)ersonal only or (B)usiness only
rc.UseNewCSSModule = True
rc.GetSaverKey = False 'Set to False to bypass SaverKey ID request.
rc.Register() 'Start the process.
%>