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.

Iam a newbie of .NET MVC. I was trying to run all return types of MVC but I couldnt do work javascriptResult. The below is in my controller:

    public ActionResult DoSomething() {
        string s = "alert('Hello world!');";
        return JavaScript(s);
    }

This is in my view

@Ajax.ActionLink("click", "DoSomething", new AjaxOptions())

When I clicked the link, it puts "alert('Hello world!');" as a string and so not firing the alert. Whats wrong here ?

share|improve this question

1 Answer

Seems that the documentation is "wrong" and the Controller.JavaScript action result is most likely only considered to return JavaScript include files (see also this thread):

Controller

public ActionResult JavaScript()
{
    string s = "alert('Hello world!');";
    return JavaScript(s);
}

View

<script type="text/javascript" src="~/Controller/JavaScript"></script>

If you want to return inline JavaScript you can use Controller.Content as your action result in combination with Html.RenderAction:

Controller

public ActionResult JavaScript()
{
    string s = "alert('Hello world!');";
    return Content(s);
}

View

<script type="text/javascript">
    @{ Html.RenderAction("JavaScript", "Controller"); }
</script>
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.