With jQuery you are able to invoke an action of a Asp .Net MVC application's controller.
This is the code you need:
1: $.ajax({
2: url: 'Controller/Action?parameter1='+parametervalue,
3: parameter1: parametervalue,
4: type: 'GET',
5: async: false,
6: cache: false,
7: success: function(data){
8: alert('Action called successfully');
...
- Support dynamic fields with NHibernate and .Net 4.0
Very very interesting Ayende's blog post