Is there any way to refresh some part of page (e.g div/span) on selection of dropdownlist option ... ?? Please note I'm using razor syntax.
If yes, then please give some sample code.
Is there any way to refresh some part of page (e.g div/span) on selection of dropdownlist option ... ?? Please note I'm using razor syntax.
If yes, then please give some sample code.
Yes, you can subscribe to the
onchange
event.Maybe like this (real example):
And then have this javascript function (or similar)
EDIT: This example assumes you are using unobtrusive validation (and therefore jQuery) and want to submit a form, but you could obviously call any javascript function for the onchange event and do whatever you want...