I\'m having a problem here. I\'ve created a page for adding records into a database, it\'s working fine however the asp script is running every time the page loads, inputting a
Give your submit input a name attribute - eg submitbutton - then do something like
if request.form("submitbutton") <> "" then 'put your insert code here End if