Hi Team ,
I have AJax Funcion ,
$.ajax({
url: '/Controller/Action ',
type: 'POST',
contentType: 'application/json;charset=utf-8',
success: function (data) {
if (data.isRedirect) {
window.location.href = data.redirectUrl;
}
else {
debugger;
//debugger;
$("#ChangeChartDyanamic").html('');
$("#ChangeChartDyanamic").html(data);
}
},
error: function () {
alert("Error i ");
}
});
But I want To Pass the Contoller Name and Action Name as a Dyanamic , through URL Action please let me know how To Do It ?
Go to the complete details ...