, , " " . , , , , , , ( ).
json.net, . viewstate, , . ( ) - , .
, , , , .
, , , JSON.net( ):
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };
string json = JsonConvert.SerializeObject(product);
ViewState["something"]=json;
ViewState [something] .
string json = (string)ViewState["something"];
Product m = JsonConvert.DeserializeObject<Product>(json);
, .