Silicon Valley Study Tour

Vincenzo Chianese
  • Male
  • Napoli
  • Italy
Share on Facebook Share Twitter
  • Blog Posts (1)
  • Discussions
  • Groups
  • Photos
  • Photo Albums
  • Videos

Vincenzo Chianese's Friends

  • Gianluca Grasso
  • Enrico Parolisi
  • Saverio Terracciano
  • Gianluca Perrone

Gifts Received

Gift

Vincenzo Chianese has not received any gifts yet

Give a Gift

 

Vincenzo Chianese's Page

Latest Activity

Vincenzo Chianese is now friends with Saverio Terracciano and Enrico Parolisi
Aug 30, 2012
Gianluca Perrone and Vincenzo Chianese are now friends
Aug 13, 2012
Vincenzo Chianese posted a blog post

Calling MVC action methods from Javascript

Suppose we have a very simple action method: it takes no parameters and just returns a string:public string MyTestMethod() { return "Test String"; }What if we would like to call this action method from javascript through Ajax and to display the value it returns? We can do it with jQuery:function AjaxDisplayString() { $.ajax({ url: @Url.Action("MyTestMethod"), method: 'GET', success: function(data) { alert(data); } }); }Not so bad, after all. However, let…See More
Aug 12, 2012
Vincenzo Chianese is now a member of Silicon Valley Study Tour
Aug 3, 2012

Profile Information

Occupation:
Undergraduate student, Other
Name of your Company/ University/ Magazine:
Università degli studi di Napoli Federico II
Webspaces SAS
How did your hear about the Silicon Valley Study Tour?
A friend of mine talked me about that. He is going to make it this year!

Vincenzo Chianese's Blog

Calling MVC action methods from Javascript

Suppose we have a very simple action method: it takes no parameters and just returns a string:

public string MyTestMethod() {      return "Test String"; }

What if we would like to call this action method from javascript through Ajax and to display the value it returns?

We can do it with jQuery:

function AjaxDisplayString() {    $.ajax({         url: @Url.Action("MyTestMethod"),         method: 'GET',         success: function(data) { alert(data); }    });…
Continue

Posted on August 12, 2012 at 11:41pm

Comment Wall (1 comment)

You need to be a member of Silicon Valley Study Tour to add comments!

Join Silicon Valley Study Tour

At 2:21am on August 3, 2012, paolo marenco said…

welcome!

 
 
 

PARTNERS


 

 

 

 

 

© 2013   Created by Nicolò Borghi.   Powered by

Badges  |  Report an Issue  |  Terms of Service