Change Text Box Color using Required Field Validator. No Extender Controls Please

前端 未结 16 2146
广开言路
广开言路 2020-11-28 07:07

I need to change color of TextBox whenever its required field validator is fired on Clicking the Submit button

16条回答
  •  北海茫月
    2020-11-28 07:38

    in css:

           .form-control
            {
                width: 100px;
                height: 34px;
                padding: 6px 12px;
                font-size: 14px;
                color: black;
                background-color: white;
            }
            .form-control-Error
            {
                width: 100px;
                height: 34px;
                padding: 6px 12px;
                font-size: 14px;
                color: #EBB8C4;
                background-color: #F9F2F4
                border: 1px solid #DB7791;
                border-radius: 4px;
            }
    

    in your page:

    
     
    

    at the end of your page above of

    
    

提交回复
热议问题