1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

difference types of validation controls in asp.net?

Discussion in 'C#' started by bulochc83, Jul 1, 2010.

  1. #1
    suggest me
     
    bulochc83, Jul 1, 2010 IP
  2. m2hmonique

    m2hmonique Peon

    Messages:
    41
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Hello,

    These are difference types of validation controls in asp.net
    1. CompareValidator 2.CustomValidator 3.RangeValidator 4. RegularExpressionValidator 5.RequiredFieldValidator 6.ValidationSummary
     
    m2hmonique, Jul 4, 2010 IP
  3. bulochc83

    bulochc83 Peon

    Messages:
    260
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thank you for your reply m2hmonique
     
    bulochc83, Jul 6, 2010 IP
  4. sauravmandhotra

    sauravmandhotra Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    u can also use javascript for ur validations
     
    sauravmandhotra, Jul 30, 2010 IP
  5. chanda

    chanda Peon

    Messages:
    155
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    u can see it into solution explorer given as validation
     
    chanda, Aug 5, 2010 IP
  6. bhuppi890109

    bhuppi890109 Member

    Messages:
    1,337
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    48
    #6
    why you dont see it into visual studio toolbox ...all the validation are given there
     
    bhuppi890109, Aug 8, 2010 IP
  7. RonBrown

    RonBrown Well-Known Member

    Messages:
    934
    Likes Received:
    55
    Best Answers:
    4
    Trophy Points:
    105
    #7
    Exactly, or do a search in Google.

    Your signature has links for asp.net development. Given the basic questions you've asked on this forum about .NET I'd be very wary about going anywhere near these companies to get .NET development work done if your associated with them.
     
    RonBrown, Aug 8, 2010 IP
  8. zinist

    zinist Banned

    Messages:
    91
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    43
    #8
    Different Validation types in asp are
    1)RequiredFieldValidator
    2)CompareValidator
    3)RangeValidator
    4)RegularExpressionValidator
    5)CustomValidator
     
    zinist, Jun 27, 2015 IP
  9. Amelie001

    Amelie001 Greenhorn

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #9
    In SolutionExplorer of Asp.net web page under Validations Tab you can find below controls

    1. CompareValidator
    2. CustomValidator
    3. RangeValidator
    4. RegularExpressionValidator
    5.RequiredFieldValidator
    6. ValidationSummary
    You can choose any control among provided controls according to your requirement. If you have any doubt, how to use these controls you can PM me.
     
    Amelie001, May 25, 2016 IP
  10. Saqib Habib

    Saqib Habib Greenhorn

    Messages:
    20
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #10
    There are the types of the validations in ASP.Net....

    1. Compare Validator
    2. Custom Validator
    3. Range Validator
    4. Regular Expression Validator
    5.Required Field Validator
    6. Validation Summary
    You can choose any in Solution Explorer....

    These Validation also used by using Java script...
     
    Saqib Habib, Jun 18, 2016 IP
  11. codecompiled

    codecompiled Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #11
    Also I would suggest that if you have custom validation logic such as numerous business rules you can use custom validator to perform the validations on the client as well as the server .
    To perform validations you can use the
    onservervalidate. to call the server side function for validation
    ClientValidationFunction to call the client or JavaScript function for validation
    Custom validators can be useful when we have complex business rules that needs to be validated
     
    codecompiled, Jun 19, 2016 IP
  12. Naina S

    Naina S Active Member

    Messages:
    203
    Likes Received:
    7
    Best Answers:
    1
    Trophy Points:
    93
    #12
    The validation controls are -
    1. Compare Validator
    2. Custom Validator
    3. Range Validator
    .etc.

    Actually these controls just render a JavaScript for validation. I suggest you not to use them because they make the web page heavy and slow. Instead use JavaScript or jQuery for validation.
     
    Naina S, Jan 18, 2017 IP