- I have two text boxes A, B using (Html.textboxfor).
- TextBox 'A' is enabled and TextBox 'B' is disabled.
- When I type values in Textbox 'A' and click outside( moving out the cursor from the textbox), TextBox 'B' should be populated with somevalue.
For example : iam entering value of TextBox A = "King", if the focus is lost from the box, The value in the Textbox B should be "Peter", which should be filled automatically.
I use asp.net mvc.