in reply to Re: Arguments needed for comparision between Perl, ASP and Java
in thread Arguments needed for comparision between Perl, ASP and Java
I myself don't do much ASP or know enough about it to call it "superior" to anything, but let's be fair in our comparison.<% Dim objFSO, objTextStream, file file = Server.MapPath("samplefile.txt") Set objFSO = Server.CreateObject("Scripting.FileSystemObject") Set objTextStream = objFSO.OpenTextFile(file , 2, True) #If I'm not mistaken you can bump these two writes into one. objTextStream.WriteLine "We are writing a line of text to our text fil +e" objTextStream.Write "This is our second line of text" & VBCrLf #You didn't echo in the perl example Response.Write "we have written to our text file" objTextStream.Close #Are these neccesary ? Set objTextStream = Nothing Set objFSO = Nothing %>
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Arguments needed for comparision between Perl, ASP and Java
by batkins (Chaplain) on Nov 10, 2003 at 15:35 UTC | |
by Grygonos (Chaplain) on Nov 10, 2003 at 16:40 UTC |