About 51 results
Open links in new tab
  1. html - required or required = "required" - Stack Overflow

    Sep 24, 2013 · Required This attribute specifies that the user must fill in a value before submitting a form. It cannot be used when the type attribute is hidden, image, or a button type (submit, reset, or …

  2. How do I make a field required in HTML? - Stack Overflow

    Find out how to make a field required in HTML forms using the "required" attribute and ensure proper validation for user inputs.

  3. validation - How to Indicate Required Fields? - Stack Overflow

    Source: Form fields — Required vs Optional by Jordane Sanson Why use optional fields is always better than required : An asterisk is obvious to you, not to everyone, believe me, there are always some …

  4. .net - required vs [Required] in C# 11 - Stack Overflow

    Mar 30, 2023 · Agreed. [Required] is for data validation and in many cases work with ef, and required keyword is c# general.

  5. c# - Required keyword causes error even if member initialized in ...

    Aug 15, 2023 · I have the following code. The two lines that create a TestClass instance fail with the errors shown. I would expect the first one to fail because a required property is not initialized. …

  6. yt-dlp Error: 'Sign in required' When Downloading YouTube Video

    Oct 3, 2024 · I'm trying to download audio from a YouTube Shorts video using yt-dlp, but I keep encountering an error that says "Sign in to confirm you’re not a bot." I would ...

  7. html - Required attribute HTML5 - Stack Overflow

    Required attribute HTML5 Asked 15 years, 9 months ago Modified 7 years, 9 months ago Viewed 217k times

  8. Validation | required="true" / "false" | HTML form - Stack Overflow

    Explains how to use the "required" attribute in HTML forms for input validation, including examples and best practices.

  9. How to use the "required" attribute with a "radio" input field

    I am just wondering how to use the new HTML5 input attribute "required" in the right way on radio buttons. Does every radio button field need the attribute like below or is it sufficient if only one

  10. asp.net mvc - How to add "required" attribute to mvc razor viewmodel ...

    new { @class = "form-control", placeholder = "short name", required="required"}) or you can use the RequiredAttribute class in .Net. With jQuery the RequiredAttribute can Validate on the front end and …