I have a form with the following code.
<form method="POST" action="maintain1.asp" onSubmit="return(showall())">
if a user clicks one of my buttons I want it to change to this
<form method="POST" action="update.asp" name="Form1" onSubmit="return(showall())">
Is there an easy way to do this? I have tried a simple if statement, but can't get it to work right.
<form method="POST" action="maintain1.asp" onSubmit="return(showall())">
if a user clicks one of my buttons I want it to change to this
<form method="POST" action="update.asp" name="Form1" onSubmit="return(showall())">
Is there an easy way to do this? I have tried a simple if statement, but can't get it to work right.