tags:

views:

33

answers:

2

I Have Make a Create Form. & I want the Values in Controller how can I get them Without Postback the Whole Page? Any article please help

+3  A: 

You could use AJAX to send the form values to a controller action. The jQuery Form plugin is very good for this purpose. The plugin reads all the form values and sends them in an AJAX request to a controller action for processing.

Darin Dimitrov
A: 

Use javascript to call a web service (i.e ajax). Check out this article for some basics.

Tom Cabanski