hi 2gether,<BR><BR>i have created a .htm which includes a form.<BR>by clicking the submit-button at this .htm, the form is sent to an .asp (by method=post). then the .asp has to save the data (from the form) to a local file (called form_results.txt).<BR>but this doesnt work...i dont know why?<BR>is anybody able to help me? i would be more then glad...<BR>thx a lot.<BR><BR>the .asp-code:<BR><BR><%@ Language=VBScript%><BR><HTML><BR> <HEAD><BR> <TITLE>OKTOBERFEST</TITLE><BR> </HEAD> <BR> <BODY text="#FFFFFF" bgcolor="#000000"><BR> <BR> <%<BR> Dim fs, a<BR> <BR> Set fs = CreateObject("Scripting.FileSystemObject")<BR> Set a = fs.CreateTextFile("c:inetpubwwwrootform_results.txt", True) <BR> <BR> a.WriteLine("MiddleName: " & Request.Form("middleName") & "<BR>")<BR> a.WriteLine("LastName: " & Request.Form("lastName") & "<BR>") <BR> a.WriteLine("Profession: " & Request.Form("profession") & "<BR>")<BR> a.WriteLine("Date of Birth: " & Request.Form("birth") & "<BR>")<BR> a.WriteLine("Sex: " & Request.Form("sex") & "<BR>")<BR> a.WriteLine("Email-Address: " & Request.Form("email") & "<BR>") <BR> a.WriteLine("I am ") & Request.Form("iam") & "<BR>")<BR> a.WriteLine("Number of Visits: " & Request.Form("visited") & "<BR>") <BR> a.WriteLine("__________________________________________________ _____") <BR> a.WriteLine("Street: " & Request.Form("address1") & "<BR>") <BR> a.WriteLine("Apartment: " & Request.Form("address2") & "<BR>") <BR> a.WriteLine("City: " & Request.Form("city") & "<BR>")<BR> a.WriteLine("State: " & Request.Form("State") & "<BR>")<BR> a.WriteLine("Other State: " & Request.Form("OtherState") & "<BR>") <BR> a.WriteLine("ZipCode: " & Request.Form("zipcode") & "<BR>") <BR> a.WriteLine("Country: " & Request.Form("Country") & "<BR>")<BR> a.WriteLine("Phone Number: " & Request.Form("phoneno") & "<BR>") <BR> a.WriteLine("Description: " & Request.Form("description") & "<BR>")<BR> a.WriteLine("Interestes: " & Request.Form("interests") & "<BR>")<BR> a.WriteLine("__________________________________________________ _____")<BR> IF(Request.Form("iam_Smoker").value=http://aspmessageboard.com/archive/index.php/="Yes") THEN a.WriteLine("Smoker" & "<BR>") END IF<BR> IF(Request.Form("iam_Non_Smoker").value=="Yes") THEN a.WriteLine("Non_Smoker" & "<BR>") END IF <BR> IF(Request.Form("iam_Under_Graduate").value=="Yes") THEN a.WriteLine("Under_Graduate" & "<BR>") END IF<BR> IF(Request.Form("iam_Graduate").value=="Yes") THEN a.WriteLine("Graduate" & "<BR>") END IF<BR> IF(Request.Form("iam_Tidy").value=="Yes") THEN a.WriteLine("Tidy" & "<BR>") END IF<BR> IF(Request.Form("iam_Studious_Quiet").value=="Yes") THEN a.WriteLine("Studious_Quiet" & "<BR>") END IF<BR> IF(Request.Form("iam_Early_Riser").value=="Yes") THEN a.WriteLine("Early_Riser" & "<BR>") END IF<BR> IF(Request.Form("iam_Very_Active").value=="Yes") THEN a.WriteLine("Very_Active" & "<BR>") END IF<BR> IF(Request.Form("iam_Party_Person").value=="Yes") THEN a.WriteLine("Party_Person" & "<BR>") END IF<BR> a.WriteLine("__________________________________________________ _____")<BR> a.WriteLine("MoveInDate: " & Request.Form("moveindate" & "<BR>")<BR> a.WriteLine("MoveOutDate: " & Request.Form("moveoutdate" & "<BR>")<BR> a.WriteLine("Co-Inhabitants: " & Request.Form("firstchoice" & "<BR>")<BR> a.WriteLine("Status: " & Request.Form("secondchoice" & "<BR>") <BR> a.WriteLine("__________________________________________________ _____")<BR> a.WriteLine("Roommate-FullName: " & Request.Form("Roomate_FullName" & "<BR>")<BR> a.WriteLine("Roommate-Age: " & Request.Form("Roomate_Age" & "<BR>") <BR> IF(Request.Form("Roomate_Sex").value=="Male") THEN a.WriteLine("Male" & "<BR>")<BR> ELSE a.WriteLine("Female" & "<BR>") END IF<BR> a.WriteLine("RMProfession" & Request.Form("rmschool" & "<BR>") <BR> a.WriteLine("__________________________________________________ _____")<BR> a.WriteLine("Emergency-Contact: " & Request.Form("emergencycontact" & "<BR>") <BR> a.WriteLine("Emergency-PhoneNumber: " & Request.Form("ecphoneno" & "<BR>") <BR> a.WriteLine("__________________________________________________ _____")<BR> a.WriteLine("PayMethod: " & Request.Form("paymethod" & "<BR>") <BR> a.WriteLine("CardType: " & Request.Form("Ordering_CardType" & "<BR>") <BR> a.WriteLine("CardHolderName: " & Request.Form("Ordering_CardHolderName" & "<BR>") <BR> a.WriteLine("CardNumber: " & Request.Form("Ordering_CardNumber" & "<BR>")<BR> a.WriteLine("CardExpiration: " & Request.Form("Ordering_CardExpiration" & "<BR>")<BR> a.WriteLine("__________________________________________________ _____")<BR> <BR> a.Close<BR> %> <BR> <BR> <P align="center">TRANSMISSION SUCCESSFULL</P> <BR> </BODY><BR></HTML><BR><BR><BR><BR>--> thx a lot for your help....marc.