Should I use get and refresh for form submissions?
The form-data can be sent as URL variables (with method=”get” ) or as HTTP post transaction (with method=”post” ). Notes on GET: Appends form-data into the URL in name/value pairs. The length of a URL is limited (about 3000 characters) Can I submit form with GET method? The form-data can be sent as URL variables (with method=”get” ) or as …