Pflaumi
Mitglied
hallo all, ich hab meinen ersten newslettereintrager programmiert
er schreibt einen string in eine einfache txt. datei
<%
Dim objFSO, objFile
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFS
penTextFile("email.txt", 8, true)
objFile.Write Request.Form("email") & vbCrLf
objFile.Close
Set objFile = Nothing
Set objFSO = Nothing
%>
ich möchte aber, dass man sich auch beim newsletter austragen kann, d.h., dass eine gewisse zeichenfolge in der datei gesucht wird und dann gelöscht wird
wie muss ich da machen...??
er schreibt einen string in eine einfache txt. datei
<%
Dim objFSO, objFile
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFS

objFile.Write Request.Form("email") & vbCrLf
objFile.Close
Set objFile = Nothing
Set objFSO = Nothing
%>
ich möchte aber, dass man sich auch beim newsletter austragen kann, d.h., dass eine gewisse zeichenfolge in der datei gesucht wird und dann gelöscht wird
wie muss ich da machen...??