ASP.net WebService method of returning JSON

Source: Internet
Author: User
Tags json

WebService default return to XML to return JSON you can use the JSON tool class to convert the object to a JSON string, and the friends you need can refer to the

WebService default return to XML to return JSON you can use the JSON tool class to convert an object to a JSON string, and then output the following code: [WebService (Namespace = "http://tempuri.org/")] [  WebServiceBinding (ConformsTo = wsiprofiles.basicprofile1_1)]//To allow the use of ASP.net AJAX to invoke this Web service from script, uncomment the line. [System.Web.Script.Services.ScriptService] public class WebService2:System.Web.Services.WebService {public WebS  Ervice2 () {//If you are using a design component, uncomment the following line//initializecomponent ();  [WebMethod] public void HelloWorld () {User user = new user (); User.  UserName = "AA"; User.  Userphone = "BB";  The main is the following two sentences Context.Response.Write (Jsonhelper.objecttojson (user));  Context.Response.End ();  No return value//return Jsonhelper.objecttojson (user) is required; }  }
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.