I am trying to send a javascript object from javascript to codebehind in .net 4.0 I have looked at several examples on how this could be done using JSON. My code in javascript is as follows:
function InvokeServerCall() {
var custmInputparams = new Object();
custmInputparams.name = document.getElementById('name').value;
custmInputparams.age = document.getElementById('age').value;
custmInputparams.dob = document.getElementById('dob').value;
var inputStr = jQuery.getJSON(custmInputparams);
CustomerRegistraionCallServer(inputStr, "")
}
function ReceiveServerData(arg, context) {
alert(arg);
}
I downloaded Newtonsoft.Json for .net and my code in Code behind looks like this.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
System.Web.UI.ClientScriptManager cm = this.Page.ClientScript;
String cbReference = cm.GetCallbackEventReference(this, "arg", "ReceiveServerData", "");
String callbackScript = "function CustomerRegistraionCallServer(arg, context) {" + cbReference + "; }";
cm.RegisterClientScriptBlock(this.GetType(), "CustomerRegistraionCallServer", callbackScript, true);
btnSubmit.Attributes.Add("onclick", "javascript:InvokeServerCall();return false");
}
}
public void RaiseCallbackEvent(String p_eventArgument)
{
Person deserializedPerson = JsonConvert.DeserializeObject<Person>(p_eventArgument);
String personStr = deserializedPerson.Name + " " + deserializedPerson.Age + " " + deserializedPerson.DOB + ".";
callbackResult = "Data Processed:"+personStr;
}
public String GetCallbackResult()
{
return callbackResult;
}
But it throws an exception saying
Cannot deserialize JSON array into type 'JsonExample.Person'.
Can anybody help me with what's going on? Also, I see several methods like Stringify, toJSONString e.t.c in the examples. What plugins have these methods. Do I have to download special plugins for Javascript to work with json?
thanks
JsonExample.Person? – David Brainer-Banker Dec 6 '11 at 23:34jQuery.getJSON? I don't think you realize exactly what that is intended for. – David Brainer-Banker Dec 6 '11 at 23:40