JSON“返回JSON()”修复MVC 4

  @using (Html.BeginForm(null, null,FormMethod.Post , new {@class="form-horizontal"}))
                                        {
    @Html.AntiForgeryToken()
    @Html.ValidationSummary(true)
  <button type="submit" class="btn btn-success">
      <i class="fa fa-save"></i>&nbsp;
         Save
     </button>
}     

 $.ajax({
                type: "POST",
                url: "Home/EditProfile",
                traditional: true,
                contentType: 'application/json; charset=utf-8',
                data: JSON.stringify(m),
                dataType: 'json',
                success: function (data) {
                    if(data == "Hello")
                    {
                     alert("Hello");
                    }

                    if (data=="error")
                    {

                }
            },
            error: function (data) { console.log(data) } 
        });


 [HttpPost]
 public ActionResult EditProfile(ModelUserProfile m)
        {

                   return Json("Hello");

        }

Okay what its return is the following page: Fix

That is "Hello" written on the Blank Page?

But it should gimme alert "Hello". What is wrong?? Note: I am using because of @html.BeginForm()

    @using (Html.BeginForm(null, null, FormMethod.Post, new { @class = "form-horizontal" }))
    {
        @Html.AntiForgeryToken()
        @Html.ValidationSummary(true)
        <button type="button" id="btnsubmit" class="btn btn-success">
            <i class="fa fa-save"></i>&nbsp;
            Save
        </button>
    }



<script src="~/Scripts/jquery-1.8.2.min.js"></script>
<script>
    $(document).ready(function () {
        var m = {};
        m.name = "Ravi"; //What ever the object mention the properties //properly
        $('#btnsubmit').click(function () {
            $.ajax({
                type: "POST",
                url: "../Home/EditProfile",
                traditional: true,
                contentType: 'application/json; charset=utf-8',
                data: JSON.stringify(m),
                dataType: 'json',
                success: function (data) {
                    if (data == "Hello") {
                        alert("Hello");
                    }

                    if (data == "error") {

                    }
                },
                error: function (data) { console.log(data) }
            });
        });
    });

</script>


**Controller**

      public ActionResult EditProfile()
        {
            return View();
        }
        [HttpPost]
        public ActionResult EditProfile(ModelUserProfile m)
        {
            return Json("Hello");
        }