Prashant Mehta
Prashant Mehta

Reputation: 482

How to create custom text box in MVC4 with validation

I want to design Custom text box in MVC4.

Can anyone please suggest me the approach.

enter image description here

Any help is really appreciated.

Upvotes: 1

Views: 171

Answers (1)

sp_m
sp_m

Reputation: 2707

You can try this plugin digitalBush Masking Plugin.

 <script type="text/javascript">
        $(function () {
            $(".inputclass").mask("9999.99/9999.99");
        });
    </script>

HTML Source

<input type="text" class="inputclass" value="" />

Upvotes: 1

Related Questions