简体   繁体   中英

How to use a JSON object created in code behind?

In Info.aspx.cs i get a compressed file from the WebService. After decoding the content i have an xml File. Using XmlToJSON and JavaScriptSerializer the result is a JSON object. How can i use this object in Info.aspx?

Suppose your json is n below format

 var A={
    propertyOne: "propertyOne",
    propertyTwo: "propertyTwo"
 }

Use as below:

A.propertyOne
A.propertyTwo

Try this,

var returnValue = new Object();
        returnValue.entityfirst = $("#entityfirst ").val();
        returnValue.entitysecond = $("#entitysecond ").val();
        returnValue.entitythird = $("#entitythird").val();

var request = $.ajax({
                    url: ..., //access method url
                    type: 'POST',
                    cache: false,
                    data: JSON.stringify(returnValue),
                    dataType: 'json',
                    contentType: 'application/json; charset=utf-8'
                });

In you aspx page you have to use javascript if you do a dynamic load.

for example you call and recieve like this (jQuery) :

$.ajax({
                url: "myUrlPageForCallJsonService",
                    type: 'POST',
                    data: "yourParamsForGettingJson"
                    dataType: 'json',
                    complete: function (results) { console.log('complete'); },
                    success: function (data) { //You logic in the success function
                        for (var i = 0; i < data.length; i++) {
                            console.log("success");
                            _html += '<li>'+ data[i].Param1 + '</li>';
                        }

                        _html += '</ul>';
                        $('#renderbody').html(_html);
                    },
                    fail: function (data) { console.log("fail"); }
                });

Hope that's help

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM