I'm Working with Asp .Net Mvc3,following is my jQuery,
$('#ddlVertical').change(function () {
var vertical = $("#ddlVertical").val();
$.get("Vertical", {
"vertical": $.trim(vertical)
},
function (data) {
$("#Vertical").html(data);
})
});
when i change the dropdown old data getting loaded.i want the Partial view to get loaded with new data.when changing dropdown the page should get reloaded.how can i do this?