I have the following fields in the 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 would like to be able to capture these values and write them to the SQL query further in the same form ...
SELECT LastApp,
FROM kb_xmod_modules
WHERE infby1 = 'Dr Brian Cox'
In this example, Dr. Brian Cox will be replaced with any values entered in Title, FirstName and LastName
If anyone has any ideas, that would be great ...
thank
source
share