Isend the some aruguments to controller using ajax but it does not return the value.
My concept : selected @html.dropdownlist value i send to the controller , using this value thats perfrom the get the valus for bind the property to another dropdownlist using mvc3
IGot this answer : verfif given link
you are passing
type
option in ajax twice and the url is not formatted properlyYou are passing
dataType
asjson
. So, if you want to hit thesuccess
result for$.ajax
, you need toreturn Json
from your action result instead of returning as View.When you return as View it gives error always.
Hope it helps you.