in both register.asp and pop_profile.asp I changed this:
if (lcase(left(Request.Form("Homepage"), 7)) <> "http://") and (lcase(left(Request.Form("Homepage"), 8)) <> "https://") and (Request.Form("Homepage") <> "") then
Err_Msg = Err_Msg & "<li>You Must prefix your URL with <b>http://</b> or <b>https://</b></li>"
end if
to this:
if (lcase(left(Request.Form("Homepage"), 7)) <> "http://") and (lcase(left(Request.Form("Homepage"), 8)) <> "https://") and (Request.Form("Homepage") <> "") then
Err_Msg = Err_Msg & "<li>You Must prefix your Homepage URL with <b>http://</b> or <b>https://</b></li>"
end if
if (lcase(left(Request.Form("LINK1"), 7)) <> "http://") and (lcase(left(Request.Form("LINK1"), 8)) <> "https://") and (Request.Form("LINK1") <> "") then
Err_Msg = Err_Msg & "<li>You Must prefix your Cool Links URL with <b>http://</b> or <b>https://</b></li>"
end if
if (lcase(left(Request.Form("LINK2"), 7)) <> "http://") and (lcase(left(Request.Form("LINK2"), 8)) <> "https://") and (Request.Form("LINK2") <> "") then
Err_Msg = Err_Msg & "<li>You Must prefix your Cool Links URL with <b>http://</b> or <b>https://</b></li>"
end if
if (lcase(left(Request.Form("Photo_URL"), 7)) <> "http://") and (lcase(left(Request.Form("Photo_URL"), 8)) <> "https://") and (Request.Form("Photo_URL") <> "") then
Err_Msg = Err_Msg & "<li>You Must prefix your Picture URL with <b>http://</b> or <b>https://</b></li>"
end if