I have got a dropdownlist, a submit button and a textbox in my view. I want to pass the selected value of dropdownlist to the textbox when the submit button is clicked or onChange event of dropdownlist. How can I achieve this????
I solved it as follows:
<script type="text/javascript">
$(function() {
$('#ddlComp').change(function() {
var selectedValue = $(this).val();
$('#txtCompName').val(selectedValue);
});
});
</script>
<div>
@Html.DropDownList("ddlcomp", Model.CompanyList)
<input type="submit" value="Submit" />
@Html.TextBox("txtCompName")
</div>
1 Answer