LilProgrammerGirl
Programmer
Hi everyone,
I have a button that when you click on it.. I would like it to insert a record (variables from page) into a database on my SQL Server. How would I go about doing this?
Here is my code for the button:
and the code for the function I started:
Any advise would be greatly appreciated!
Thanks much!
Hailey
I have a button that when you click on it.. I would like it to insert a record (variables from page) into a database on my SQL Server. How would I go about doing this?
Here is my code for the button:
Code:
<input type="submit" value="Skip W/O" name="B3" onclick="return SkipCheck();">
Code:
function SkipCheck() {
alert("Nothing is programmed on the Skip Button Yet.");
return false;
}
Any advise would be greatly appreciated!
Thanks much!
Hailey