I have general question that if an asp.net webmethod always returns data in 'json' form.If not what is the default return datatype of a webmethod?

I am wondering if there is a way I can get the data from a webmethod in 'HTML' rather than 'json'?

Thanks

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

PageMethods are a part of the ASP.NET AJAX Framework (ScriptManager).

By default, ASP.NET AJAX uses JSON as opposed to SOAP.

This is by design, mainly because the ASP.NET AJAX Javascript library it optimized to work with JSON objects.

You can override this default by specifying the [ResponseFormat] attribute on the web method.

Like this:

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
public XmlElement GetFoo(string url)
{

Here is a decent article on PageMethods and ASP.NET AJAX-enabled web services.

link|improve this answer
1  
Sorry for the delay in reply and thank you so much for referring me to this article.As per my understanding a page method will either give a xml or a Json response and not anything else.Please correct me if I am wrong? – kranthi Jul 30 '10 at 8:07
Your correct. I always use JSON when consuming internally, because most of the time i will be using the web service in jquery/ajax. The only time i'll use XML is in addition to JSON when creating an external API/web service. – RPM1984 Jul 30 '10 at 8:44
feedback

The return type for a default webservice should SOAP (an XML Format), for WCF there is a REST pack which can change it return type to JSON

[http://msdn.microsoft.com/en-us/netframework/cc950529.aspx][1]

Hope this helps.

link|improve this answer
Thanks.actually I am not using webservices.but I am writing a webmethod in my asp.net codebehind page and I always see the response in json.Could you please explain why? and how to get 'HTML' instead of 'json'? – kranthi Jul 19 '10 at 12:14
could you a code sample? you may also want to add a content type on to the page directive – Iain Jul 19 '10 at 17:50
for example I have the following method [WebMethod] public static string sayHello() { return "hello"; } and I am calling this method using scriptmanager and PageMethods.sayHello combination and in firebug I see the response as {"d":"hello"}.I have also tried setting up the page directive ContentType to 'text/html' and still got the same json response. – kranthi Jul 19 '10 at 21:05
@kranthi - check my answer above. FYI - PageMethods are still web services, they are just called that to give the feel of calling a 'method in the page' in your javascript/ajax, when in fact you are executing an ASP.NET AJAX-enabled web service (on the server). – RPM1984 Jul 20 '10 at 0:30
feedback

Your Answer

 
or
required, but never shown

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