Set File = Upload.Files("file1")If Not File Is Nothing Then Response.Write("Oooo the file is not nothing")end if
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.
Post a Comment
1 comments:
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.
Post a Comment