9.20.2006

There is no hope for me ...


Set File = Upload.Files("file1")

If Not File Is Nothing Then
Response.Write("Oooo the file is not nothing")
end if


It made sense to me the first time I wrote it.

1 comments:

Craig said...

Instead of "If Not File is Nothing", it seems more readable if you'd said "If File is Not Nothing".

Then your text output could go a step further to say "Oooo the file is something"

...at least that's what I would have done.