Hi,
I have a form of type:
<form METHOD="POST" ACTION="Recordset.asp">
Enter Family Name <input type="text" name="Family"></p>
<input type="submit" value="Submit" name="Family"></p>
</form>
which is writing to an asp page using javascript as follows
<%@ Language=JavaScript %>
Family = String(Request("Family"
);
sql = "select * from table where Family = " + Family + ";
however no matter which way I write the code the family variable is not being defined - could somebody please help me.
I have a form of type:
<form METHOD="POST" ACTION="Recordset.asp">
Enter Family Name <input type="text" name="Family"></p>
<input type="submit" value="Submit" name="Family"></p>
</form>
which is writing to an asp page using javascript as follows
<%@ Language=JavaScript %>
Family = String(Request("Family"
sql = "select * from table where Family = " + Family + ";
however no matter which way I write the code the family variable is not being defined - could somebody please help me.