Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

enter image description here

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

share|improve this question

3 Answers

up vote 14 down vote accepted

you can use AjaxOnly

[AjaxOnly]
[HttpPost]
public ActionResult LeftColumnData()
{
    var Column= new ColumnViewModel { Attempt= DateTime.Now };
    return PartialView("_LeftColumn", Column);
}

here is how you can make one

public class AjaxOnlyAttribute : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        if(!filterContext.HttpContext.Request.IsAjaxRequest())
            filterContext.HttpContext.Response.Redirect("/error/404");
    }

    public override void OnActionExecuted(ActionExecutedContext filterContext)
    {

    }
}

and use it like

[AjaxOnly]
public ActionResult AjaxActionMethod()
{
    ....
}
share|improve this answer
AjaxOnly under which namespace? – Gayan Ranasinghe Sep 17 '11 at 9:42
1  
totally incomplete answer -1 – Gayan Ranasinghe Sep 17 '11 at 9:48
well see the edits – 3nigma Sep 17 '11 at 9:54
OK that's what i need thanks for the answer. – Gayan Ranasinghe Sep 17 '11 at 10:28

If you intend to access this action directly you need to remove the [ChildActionOnly] attribute:

public PartialViewResult LeftColumnData()
{
    var Column = new ColumnViewModel { Attempt = DateTime.Now };
    return PartialView("_LeftColumn", Column);
}

Also from what I can see you are nowhere using this action as a child action. All you do is to render some partial:

@Html.Partial("_LeftColumn", new ColumnViewModel { Attempt= DateTime.Now })

This doesn't invoke your child action. It simply inserts the _LeftColumn.cshtml partial in the given location.

A child action is invoked with the Html.Action or Html.RenderAction helpers:

@Html.Action("LeftColumnData")

But because you want this action to also be accessible from an AJAX call you should remove the ChildActionOnly attribute.

You can read more about differences between RenderPartial and RenderAction on the following blog post.

share|improve this answer

There is an [AjaxOnly] attribute provided in the ASP.NET MVC 3 Futures collection. It's a part of the official ASP.NET MVC Codeplex site that provides features before they are officially included in a future version of ASP.NET MVC.

You can download it here. To use it, add a reference to the Microsoft.Web.Mvc assembly included in the release package.

There is an explanation of the attribute on this page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.