Top "Forms" questions

A form is essentially a container that can be used to hold any amount of any subset of several types of data.

How to handle checkboxes in ASP.NET MVC forms?

Caution: This question is over nine years old! Your best option is to search for newer questions, or to search …

asp.net-mvc forms checkbox
Sending data from HTML form to a Python script in Flask

I have the code below in my Python script: def cmd_wui(argv, path_to_tx): """Run a web UI.""" …

python html forms input flask
Multiple submit buttons in an HTML form

Let's say you create a wizard in an HTML form. One button goes back, and one goes forward. Since the …

html forms form-submit submit-button
Submitting form and pass data to controller method of type FileStreamResult

I have an mvc form (made from a model) which when submitted, I want to get a parameter I have …

asp.net-mvc forms controller
HTML5 form validation pattern alphanumeric with spaces?

I have the following input tag in my html5 form: <p> <label>Company Name*</label&…

regex html validation forms alphanumeric
Best Practice: Access form elements by HTML id or name attribute?

As any seasoned JavaScript developer knows, there are many (too many) ways to do the same thing. For example, say …

javascript html forms dom
How to make 'submit' button disabled?

How to disable the "Submit" button until the form is valid? Does angular2 have an equivalent to ng-disabled that can …

forms angular
Angular 2: Can't bind to 'ngModel' since it isn't a known property of 'input'

I'm trying to implement Dynamic Forms in Angular 2. I've added additional functionalities like Delete and Cancel to the dynamic forms. …

forms angular angular2-template angular2-forms
Change value of input and submit form in JavaScript

I'm currently working on a basic form. When you hit the submit button, it should first change the value of …

javascript html forms onclick submit
How to ensure a <select> form field is submitted when it is disabled?

I have a select form field that I want to mark as "readonly", as in the user cannot modify the …

javascript html css forms html-select