i have partial view render by the jquery and want to refresh the view using jquery here is my code looks like.
<div id="left">
<input type="button" id="refresh" value="refresh" />
@Html.Partial("_LeftColumn", new ColumnViewModel { Attempt= DateTime.Now })
</div>
<script type="text/javascript">
$('#refresh').click(function () {
$.ajax({
type: "post",
dataType: "html",
url: 'Home/LeftColumnData',
data: {},
success: function (response) {
$('#left').html(response);
}
});
});
</script>
and in controller action i wrote like this
[ChildActionOnly]
public PartialViewResult LeftColumnData()
{
var Column= new ColumnViewModel { Attempt= DateTime.Now };
return PartialView("_LeftColumn", Column);
}
i don't want user to request ColumnData directly on browser except ajax but with this approch i'm getting error below

what should i do to remove ChildActionOnly attribute and allow to request view directly what are the alternatives on this problem?