>Dan, > >Very interesting thought. I have always done my input elements like >this: > ><input type="submit" name="btn_sumbit" value="Submit" /> ><input type="submit" name="btn_cancel" value="Cancel" />
Also, I almost never have a "Cancel" button actually do a submit. While this method isn't unobtrusive, I usually use something like: <input type="submit" value="Submit" /> <input type="button" value="Cancel" onclick="self.location = 'cancel.htm'" /> -Dan