Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Equivalent to PHP's $_FILES and isset()

Status
Not open for further replies.

Quasibobo

Programmer
Oct 11, 2001
168
NL
Once again two newbie-questions:

Is there an equivalent to PHP's $_FILES['name']etc.?
and do you really need to install something like ASPsmartUpload?

Second question: What's the equivalent to PHP's
Code:
if(!isset($_GET['var'])) || empty($_GET['var']))

my

Code:
IF NOT isnull(Request.QueryString("var")) OR Request.QueryString("var")<>"" THEN

doesn't seem to work.... :'(

Does anyone know a site like My french isn't that good.... Then I can stop bothering you with questions like these....

T.I.A and thanks so far (my other questions)

Quasibobo

Don't eat yellow snow!
 
for the first question, no, u can upload without using component, but the code is huge and tiresome, u will be better off using a component.

for the second one:
there seems to be an error in ur checking
Code:
IF Request.QueryString("var")<>"" THEN
 response.write Request.QueryString("var")
end if
null is covered in the above check itself.


Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top