Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
ASP Text Files: What's the implication of "Nothing" in the example below?
<%
dim fs,tfile
set fs=Server.CreateObject("Scripting.FileSystemObject")
set tfile=fs.CreateTextFile("c:\somefile.txt")
tfile.WriteLine("Hello World!")
tfile.close
set tfile=nothing
set fs=nothing
%>
Come ONNNNNN
I need answers, people. Just write me one already!
1 Answer
- 8 years agoFavorite Answer
"Nothing is no thing,[1] denoting the absence of something. Nothing is a pronoun associated with nothingness.[1]
In nontechnical uses, nothing denotes things lacking importance, interest, value, relevance, or significance.[1] Nothingness is the state of being nothing,[2] the state of nonexistence of anything, or the property of having nothing."
IN your case Nothing = NULL but for an object.
Source(s): Wikipedia