|
|
|
Our College &
University Student section is designed expressly for Students
only and will allow Students to:
- View their plan brochure
- Enroll online (If your plan allows
online enrollment)
- Waive the charge for the student
accident and sickness plan online (If your plan allows you
to waive the charge online.)
- Obtain a claim form
- Review general claim filing
procedures
If you are a Student and
this is the first time you have visited this page, please
Register Now. Students who have already registered can simply
log-in. |
<%
Response.Buffer = True
Response.ExpiresAbsolute = DateAdd(DateInterval.Minute, 1, Now())
Response.Expires = 0
Response.CacheControl = "no-cache"
If Len(Session("tokenId"))> 0 then
'The user has come back to this page after having visited
'it... wipe out the session variable and redirect them back
'to the home page
Session("tokenId") = ""
Response.Redirect("index.aspx")
Response.End
End If
'If we reach here, the user can view the page, create the form
%>
|