Hi !!!
i have made a database login !!!
after the details for register form is entered it takes to a process.asp ,
from here the details entered in the form is entered properly in the database , the comes when i get
this error
---------
Header Error
/teenzdir/Epalz/Process.asp, line 36
The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.
-------
here is the code
<!--#include file="../../functions.asp"-->
<%
Dim Firstname , Lastname , Nickname , Passw , Sex , Country , Age , Email , Website , Choice , How , Vdate
Firstname = Request.Form("Firstname")
Lastname = Request.Form("Lastname")
Nickname = Request.Form("Nickname")
Passw = Request.Form("Passw")
Sex = Request.Form("Sex")
Country = Request.Form("Country")
Age = Request.Form("Age")
Email = Request.Form("Email")
Website = Request.Form("Website")
Choice = Request.Form("Choice")
How = Request.Form("How")
Vdate = Date()
%>
<%
sqry = "INSERT INTO Tmembers (Firstname , Lastname , Nickname , Passw , Sex , Country , Age , Email , Website , Choice , How , Vdate ) Values ("&Firstname&", "&Lastname&" , "&Nickname&", "&Passw&" , "&Sex&" , "&Country&" , "&Age&" , "&Email&", "&Website&" , "&Choice&" , "&How |