Is it possible to have an asp button that isn\'t rendered with a type=\"submit\" tag. I don\'t want the button to submit the form, so I\'d like to have it as
type=\"submit\"
You can just set UseSubmitBehavior="false" and it will render type="button" instead of type="submit" (.net 4 at least)
type="button"
type="submit"