I want to pass an object from my c# code behind to my javascript. I know that I can use
var myVar = '<%# myVar %>'
to pass variables. However, that method seems to pass everything as a string. I want an object.
Is there any way to accomplish that?
I want to pass an object from my c# code behind to my javascript. I know that I can use
var myVar = '<%# myVar %>'
to pass variables. However, that method seems to pass everything as a string. I want an object.
Is there any way to accomplish that?
Share Improve this question edited Oct 21, 2011 at 7:35 Sai Kalyan Kumar Akshinthala 11.8k8 gold badges44 silver badges68 bronze badges asked Oct 21, 2011 at 7:33 NaningNaning 7342 gold badges8 silver badges18 bronze badges2 Answers
Reset to default 17You can serialize it to JSON using the JavaScriptSerializer
.
Something like:
System.Web.Script.Serialization.JavaScriptSerializer oSerializer =
new System.Web.Script.Serialization.JavaScriptSerializer();
string sJSON = oSerializer.Serialize(myVar);
Then you in your aspx code you can use:
var myVar = <%# sJSON %>;
Which will output something like:
var myVar = {"Name":"John","Age":"30","ID":"111"};
Use JSON serialization to convert a .NET object into JS which can be deserialized into an object (or, exec'd into an object).