Provides serialization and deserialization functionality for AJAX-enabled applications.
0
votes
2answers
36 views
0
votes
1answer
36 views
Parsing JSON data with javascriptserializer throws exception
I am getting JSON data in following format:
"[[\"NAME\",\"state\"],\n[\"Alabama\",\"01\"],\n[\"Alaska\",\"02\"]]"
I am trying to parse it with System.Web.Script.Serialization.JavaScriptSerializer ...
0
votes
0answers
58 views
read JSON multidimensional array from query string without keys (values only)
I've found out for myself how to parse JSON effortlessly with a WebMethod putting this in the beginning:
<System.Web.Services.WebMethod()> _
...
2
votes
1answer
37 views
DayLight Saving Time issue of DateTime from JavaScriptSerializer.Serialize to ToLocalTime
Previously I was facing this issue and solved as described in the post.
Currently after DayLight Saving implementation I observed the issue that if I am selecting
DateTime startDate=new ...
-2
votes
1answer
49 views
C# JSON JavaScriptSerializer object parsing [closed]
;-)
i have a problem to parse JSON response to an object.
I have following object:
public class Conferences : List<ConferenceData>
{
}
public class ConferenceData
{
private string _id;
...
0
votes
1answer
26 views
Json file generation using Javascript serializer
I need to generate the following json files using Javascript serializer,
1. {"components":[{"name":"AA"}]}
2. {"customfield_10222":[{"name":"xxx"},{"name":"yyyy"}]} // this custom field represents ...
0
votes
1answer
83 views
Serialising an object to JSON
I am trying to serialise an object to JSON and cannot figure out why a whole bunch of properties are being ommitted. For reference, I have tried using the DataContractJsonSerializer for the same to ...
2
votes
2answers
154 views
why does c# JavaScriptSerializer.Serialize return empty square brackets
Why does the following code return "[ ]" when it should return "{"id":1999, "title":"hithere"}
JavaScriptSerializer serializer = new JavaScriptSerializer();
StringBuilder sbJsonResults = new ...
0
votes
1answer
37 views
How to display the title attribute of an input field in a Jquery map function
I have the following script that appends a list of input values into a textarea.
<script>
function showValues() {
var fields = $(".content :input").serializeArray();
var ...
0
votes
3answers
85 views
ASP.NET C#: JavascriptSerializer could not be found
I'm trying to use the JavascriptSerializer object in ASP.NET v4.0 with C#. I'm not using Visual Studio--this is on a live IIS7 server. I can access this object just fine using VB on this same web ...
1
vote
1answer
54 views
JavaScriptSerializer deserialize retuning 0 results list
Trying to Deserialize json string to a List. Json string is not empty. But after deserialization the list returning 0 items.
This is my class.
[Serializable]
public class Products : GenericItem
...
0
votes
1answer
38 views
registering JavaScriptSerializer with signalr
can we use JavaScriptSerializer as default serializer of signalr. if so how we'll register to signalr.
1
vote
2answers
105 views
How to serialize a raw json field?
I have a field in the db that store a json string
and I want that when I return it in a json result that will be returned as json raw data and not warped with quotes as string.
UPDATE 1(More Info):
...
0
votes
1answer
69 views
JavaScriptSerializer has registerconverters, how to call base deserialize method in RegisterConverts Class
I have a JavaScriptSerializer with RegisterConverters Class to Serialize DataTime. In the same class I have Deserialize method which throws NotImplementedException. RegisterConverters Class is ...
0
votes
1answer
169 views
How can I use JavaScriptSerializer in c# to parse Json with unknown number of Keys and Values?
If I had a Json string with unknown number of Keys and values. How can I obtain all values into an array or object in c#?
In the following example I know there is "id" and "index" fields. What if I ...
0
votes
1answer
137 views
Invalid JSON primitive:
I am new to using API and getting response from them using asp.net I am making a call to an API in my asp.net web application like this:
public ActionResult MakeCall() {
...
0
votes
1answer
85 views
JavaScriptSerializer: Cannot deserialize JSON that uses @ symbol in property name
I am using a 3rd party server that exposes an API via REST(so it is not possible to change the JSON). The JSON it returns is in a format like:
[
{
"@noun":"tag",
...
1
vote
1answer
196 views
JSON Deserialization C#
I'm trying to parse out some information I've retrieved from RottenTomatoes that's in a JSON format
{
"cast": [
{
"id": "162655641",
"name": "Tom Hanks",
...
0
votes
2answers
201 views
A c# JavaScriptSerializer serialized string has backslashs that cause problems in javascript
I have line of c# code in ASP.NET MVC view that
string json = new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(Model);
If I debug this string is
"{\"Age\":14}"
So when I ...
0
votes
1answer
64 views
Retrieving twitter with json
I'm having trouble with parsing a twitter flow, this code is returning this error message:
No parameterless constructor defined for type of
...
6
votes
2answers
225 views
JavaScriptSerializer is subtracting one day from date
I am using JavaScriptSerializer for serializing DateTime, but when I deserialize it show one day less from the date it get serialize:
Here is test:
DateTime startDate=new ...
1
vote
2answers
134 views
How do you serialize an enum array to a Json array of strings?
Based on Diego's unanswered comment under the top-voted answer in this question:
JSON serialization of c# enum as string
So for an enum:
public enum ContactType
{
Phone = 0,
Email = 1,
...
1
vote
1answer
90 views
How do I make the JavaScriptSerializer automatically call a constructor/method/anything to initialize values after deserializing?
I'm playing around with JSON and the .Net JavascriptSerializer, it's all looking good and fun so far, here's my code:
JavaScriptSerializer serializer = new JavaScriptSerializer(); ...
0
votes
0answers
92 views
json javascriptserializer c# 2.0
I am going round in circles with this... What I'm trying to do is send the error details in a nice format via email, but having trouble with deserializing the json
I have this json returned from ...
0
votes
1answer
160 views
JSON.parse not parsing Json string. Serializing with JavaScriptSerializer
I have a serialized string comming from the controller to a view:
Controller:
var serialize = new JavaScriptSerializer();
return Json(new
{
data = serialize.Serialize(obj)
}, ...
3
votes
1answer
361 views
JavaScriptSerializer circular reference when using ScriptIgnore
I have my Entity Framework Entities split out into a separate class library from my web project and data access layer. In my controller I make a call to my repository to get an ...
1
vote
2answers
519 views
Does Json.Encode() use JavaScriptSerializer Class to serialize
Does the Json.Encode() Helper use the JavaScriptSerializer class to encode a string to json?
I am getting a circular reference exception when using Json.Encode(Model) even though my class properties ...
1
vote
0answers
237 views
Save JSON object to the HiddenField and parse JSON object in C# using JavaScriptSerializer
I have the JSON object in Javascript and i want to insert this JSON object into HiddenField because i want to read this json object in C# and convert this JSON object to Users object.
How can i parse ...
0
votes
2answers
187 views
JSON serialization with Properties null referrence exception
Consider the following tutorial: http://blogs.msdn.com/b/rakkimk/archive/2009/01/30/asp-net-json-serialization-and-deserialization.aspx
{
"firstName" : "Rakki",
"lastName" : "Muthukumar",
...
0
votes
2answers
279 views
Can't use .NET's JavaScriptSerializer in Unity and MonoDevelop on MacOS
I'm trying to use .NET's System.Web.Script.Serialization.JavaScriptSerializer to read a JSON file into a Dictionary in Unity with MonoDevelop on MacOS.
So far I've added the System.Web.Extensions ...
0
votes
1answer
190 views
Javascript Serializer in asp.net mvc produces malformed Json
I am in asp.net mvc 3 with razor. The model is of type IList<PipeLineView>. The definition of PipeLineView is
public class PipeLineView
{
public string Stage { get; set; }
...
0
votes
1answer
157 views
Serialization of javascript function for c#
In my c# class I have the following class:
public class Product
{
public int product_id;
public int quantity;
public string book_cost;
}
If I serialize it with JavaScriptSerializer then ...
1
vote
1answer
168 views
Web service call from .ajax, maxJsonLength error
I'm using .asmx web service and web service method can serialize to json string(3506 record) by using JavaScriptSerializer class and i don't get any error from VisualStudio.
On the other hand my ...
0
votes
0answers
40 views
WCF return Json format?
the following wcf return xml but it should return Json.I tested it just with asp.
Any idea?
public string login(string usr, string pwd)
{
JavaScriptSerializer js = new ...
5
votes
2answers
424 views
Convert type 'System.Dynamic.DynamicObject to System.Collections.IEnumerable
I'm successfully using the JavaScriptSerializer in MVC3 to de-serialize a json string in to a dynamic object. What I can't figure out is how to cast it to something I can enumerate over. The foreach ...
1
vote
1answer
210 views
.NET's JavaScriptSerializer.Deserialize() ignores decimal period in numbers from JSON
I'm using JavaScriptSerializer.Deserialize() to get data from a JSON file.
But it ignores the decimal period, although using .GetType() on the value, returns System.Decimal.
This is the C# code:
...
1
vote
0answers
103 views
Dynamic JavaScriptSerializer
I am attempting to use this approach StackOverflow post to deserialize a JSON string returned from a WCF service.
I have successfully implemented the class sealed class and I have partial success. ...
0
votes
0answers
296 views
JavaScriptSerializer Invalid JSON primitive
When I use the JavaScriptSerializer in C# I'm getting a "Invalid JSON primitive" exception. I assume the issue is with my json input string but I don't see the problem.
JavaScriptSerializer new ...
0
votes
2answers
320 views
JavaScript validation on button click
I'm facing a problem with JavaScript validation.
I have the following source code:
<%@ Page Title="" Language="C#" MasterPageFile="~/Full_Width.master" AutoEventWireup="true" ...
3
votes
0answers
174 views
Nested list with JavaScriptSerializer
I'm trying to produce the following JSON structure with JavaScriptSerializer in Net 3.5:
{
"chart": "pie",
"series": [
{
"name": "Browsers",
"data": [
...
1
vote
1answer
232 views
How to deserialize variable size JSON string with variable names
Deserializing a small, fixed size, fixed structure, with fixed field names, JSON string is easy: Just define a class that contains all the fields (with correct types and names, all known at compile ...
1
vote
2answers
556 views
How to troubleshoot KeyNotFoundException
I am using the following to deserialize a JSON string into my own class:
JavaScriptSerializer serializer = new JavaScriptSerializer();
Dictionary<string, object> x = (Dictionary<string, ...
3
votes
1answer
2k views
error CS0234: The type or namespace name 'Script' does not exist in the namespace 'System.Web'
I am trying to use JavaScriptSerializer in my application.
I initially received "Cannot find JavaScriptSerializer" and I solved it by adding:
using System.Web.Script.Serialization;
But then the ...
0
votes
1answer
291 views
Parse JSON to C# object
static void Main(string[] args)
{
var json = @"{ ""rows"": [
[
{
""colspan"": 4,
""id"": ""ContentPanel1""
...
0
votes
1answer
108 views
remove children from object for JSON serialisation
I have an object with children that I'm using JavaScriptSerializer to convert to JSON. I'm using MVC and using the JavaScriptSerializer in a view as so:
@Html.Raw(serializer.Serialize(Model.Designs)
...
0
votes
0answers
117 views
JavaScriptSerializer deserialize into new object (or existing object)
I would like a constructor that takes in a filename containing a JSON object
I've got files in a directory that contain JSON objects (as text)
I would like:
Public Sub New(filename as string)
...
0
votes
1answer
161 views
Create json using JavaScriptSerializer
I have following code in Generic Handler of Asp.net:
var students= Student.GetStudents();
var result = new
{
Data = students.Select(s => new []{s.subjects})
...
0
votes
1answer
483 views
JavascriptSerializer Deserialize into Json require a full class?
When using the Deserialize method in JavascriptSerializer, what is required within your target class?
For example, I have a JSON string which contains people. Each person contains a name, age, and ...
1
vote
1answer
293 views
How to make JavaScriptSerializer ignore [ScriptIgnore] tags?
I need to make JavaScriptSerializer ignore [ScriptIgnore] tags. I think I can do this with a custom JavaScriptConverter. However, I am not so sure. All I need to do is ignore the attribute, and the ...
0
votes
1answer
160 views
Skip [ScriptIgnore] just once
Environment for this situation:
asp.net mvc 3
c#
Entity Framework 4.3.1
JavaScriptSerializer
I have come across a situation where it would be nice to include a field which has been marked up as ...





