Jquery Rich Array Documentation
If you want to use the JQuery Rich Array and you were hoping for some documentation, well its inside the .JS file but I am posting it here for reference purposes /*************************************************************************** * Copyright (C) 2007 by Vladimir Kadalashvili * * Vladimir.Kadalashvili@gmail.com * * * * This program is free software; you can redistribute it [...]
Serialize and Deserialize to JSON from ASP.NET
Its very easy to serialize an object to .NET Simply create some object, normally a custom class with some attributes. Normally you have a list of these and you want to serialize to JSON to use it from client side code. If you do the following var s = new System.Web.Script.Serialization.JavaScriptSerializer(); string resultJs = s.Serialize(result); [...]
How to completely disable ViewState and ControlState
Here is a code snippet that will COMPLETELY disable ViewState and ControlState. Please note, if you want to disable viewstate, you can set “EnableViewState” to false for the page, however you will still see “VIEWSTATE” in the page. The reason for that is because the hidden ViewState HTML field also contains “Control State”, which is [...]