最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Call ASP.NET C# Controller Method from Javascript - Stack Overflow

programmeradmin1浏览0评论

I have a var toto in a javascript file. And I want to call a C# Controller Method who return a string and of course assign the resulted string to toto.
I tried some ways to achieve this but nothing seems to work.
Somebody can explain me the simpliest way to achieve that ? It's a Windows Azure project.

Many Thanks !

I have a var toto in a javascript file. And I want to call a C# Controller Method who return a string and of course assign the resulted string to toto.
I tried some ways to achieve this but nothing seems to work.
Somebody can explain me the simpliest way to achieve that ? It's a Windows Azure project.

Many Thanks !

Share Improve this question asked May 30, 2012 at 7:40 MaTMaT 1,6063 gold badges34 silver badges66 bronze badges 4
  • 3 What exactly did you try already? What didnt seem to work? Did you try ajax? – papaiatis Commented May 30, 2012 at 7:42
  • I tried the two code below but it doesn't work, I don't understand. There's no DialogBox... – MaT Commented May 30, 2012 at 8:24
  • I am also facing the same problem. BUt my javascript on master page or lyaoutwithmenu file. Did you figure it out? – alice7 Commented Jun 21, 2012 at 18:55
  • I figured out by using fiddler that I was missing something in the Url. – alice7 Commented Jun 21, 2012 at 20:04
Add a ment  | 

2 Answers 2

Reset to default 7

You could use AJAX. For example with jQuery you could use the $.getJSON method to send an AJAX request top a controller action that returns a JSON encoded result and inside the success callback use the results:

$.getJSON('/home/someaction', function(result) {
    var toto = result.SomeValue;
    alert(toto);
});

and the controller action:

public ActionResult SomeAction() 
{
    return Json(new { SomeValue = "foo bar" }, JsonRequestBehavior.AllowGet);
}

You have to use JSON:

Controler

public class PersonController : Controller
{
   [HttpPost]
   public JsonResult Create(Person person)
   {
      return Json(person); //dummy example, just serialize back the received Person object
   }
}

Javascript

$.ajax({
   type: "POST",
   url: "/person/create",
   dataType: "json",
   contentType: "application/json; charset=utf-8",
   data: jsonData,
   success: function (result){
      console.log(result); //log to the console to see whether it worked
   },
   error: function (error){
      alert("There was an error posting the data to the server: " + error.responseText);
   }
});

Read more: http://blog.js-development./2011/08/posting-json-data-to-aspnet-mvc-3-web.html#ixzz1wKwNnT34

发布评论

评论列表(0)

  1. 暂无评论