Jump to content

hgx

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by hgx

  1. You Can use FSO!! Exp:dim Fso,TxtFileSet Fso=Server.Createobject("Scripting.FileSystemObject")Set TxtFile=Fso.OpenTxtFile(ServerMapPath("SomeTxtFile.txt"),2,true) ' SomeTxtFile.txt Means: The txt file Path Which you want to write.' 2 Means: open txt file by write only' true means: if the txt file is not exists then create itTxtFile.WriteLine (Request.Form("FormData"))TxtFile.CloseSet TxtFile=NothingSet Fso=Nothing

    Well, i am trying to make a form and when u submit it, it saves to a txt file that i can view later. Can someone help me with this?

  2. You can do like this:<script language="VBscript">dim StrStr="..." 'The String Which you want to replacereplace(Str,CHR(34)," ")</script>May be It can help you a little. I come from China,I'am not good at English,but I want to help you.

    i am new to vb script please help meĀ  how to replace " (quote) with a space in vbscript

×
×
  • Create New...