Hi,
I've written some code in PHP, which I have tried converting to ASP.NET after looking at some examples.
I'm stuck on a form processor, where I'm trying to check if some values have been filled in or not. Basicly I had a few issets() to do this in the PHP version. But, it doesn't seem to be liking what I have written in ASP. It says Expression expected.
<%
Dim rating,surveyID,vID,recommend,valid,survey,visitor,contents,message
If ((Request.Form("ratingI"))&&(Request.Form("recommend"))&&(Request.Form("sID"))&&(Request.Form("vID"))) Then
Could anyone give some pointers on this. I want all of those conditions to be true to run through the If statement I have in place.
Thanks,