I have the following fields in a form. The page uses .Net and MS SQL
<input type="text" name="Title" id="Title" />
<input type="text" name="FirstName" id="FirstName" />
<input type="text" name="LastName" id="LastName" />
I'd like to be able to grab these values and write them into an SQL query further down on the same form...
SELECT LastApp,
FROM kb_xmod_modules
WHERE infby1 = 'Dr Brian Cox'
In this example, Dr Brian Cox would be replaced by whatever values are entered in Title, FirstName & LastName
If anyone has any ideas, that would be great...
Thanks