how to set autopostback for dropdownlist in mvc.net?
+5
A:
You don't - there's no concept of 'autopostback', in the same way that there is no postback concept in the MVC framework.
If you want to submit the form, you can do that via javascript, if you want to update something else via a call to the server, you can set up an AJAX call, probably using jQuery to do so.
There's a bit of an example here.
Paddy
2010-04-30 06:38:00