home *** CD-ROM | disk | FTP | other *** search
- <%
- Response.Buffer = True
- %>
-
- <HTML>
- <HEAD>
- <META NAME="GENERATOR" Content="Microsoft Developer Studio">
- <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
- <TITLE>Welcome to Fake Corp</TITLE>
- </HEAD>
- <BODY>
-
- <%
- Set cust = Server.CreateObject("IISSample.CustomerInfo")
-
- If cust.checkIfRegistered = False Then
- %>
- You are a new customer, please <A HREF="CustomerInfo_login.asp">register now</A>.<P>
- <%
- Else
- %>
-
- Welcome to the Fake Corp homepage, <%= cust.getFullName %>.<P>
-
- <%
- End If
- %>
-
- </BODY>
- </HTML>
-