<% FirstName = Request.Form("FirstName") LastName = Request.Form("LastName") Username = Request.Form("UserName") Password = Request.Form("Password") getSub = Request.Form("SignUp") If FirstName = "" Or LastName = "" Or Username = "" Or Password = "" Then Response.Redirect "Sign Up.asp" MsgBox "You must enter all the information with the exeption of your email address if you do not want to take advantage of our offer.", vbExclamation, "Enter All Information" Else MsgBox "Your account has been registered!", vbInformation, "Welcome to the Revolution" Response.Redirect "Sign In.asp" End If %>