如何将CSS类添加到验证码

时间:2018-07-03 15:48:05

标签: c# asp.net captcha

在我的注册表中,我使用css类自定义了文本框。我不确定如何将CSS类添加到验证码。

这是我的文本框代码,用于输入验证码。如何在其中添加CSS类?

<div class="form-group col-md-3">
                    <label class="medialabel required" for="Captcha">Please enter the code</label>
                </div>
                <div class="form-group col-md-3">
                        @{ var exampleCaptcha = new MvcCaptcha("Captcha"); }
                        @Html.Captcha(exampleCaptcha)
                        @Html.TextBox("CaptchaCode") 
                    </div>

1 个答案:

答案 0 :(得分:0)

赞:

@Html.TextBox("CaptchaCode", null, new { @class= "myClass"})