I have created a new new control (extender) – sourcecode (C#) and testbed is available for download
Microsoft Ajax CheckboxController Extender
I have also put up a nice looking demo site
The control extends checkboxes to allow for parent/child relationship making it easy to create a Select/Deselect all "parent" control.
This library (or plugin or whatever it should be called) extends Microsoft Ajax by offering easy client side support for cookies. Not much to say about it – the code to use it in your project looks like this:
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" >
[...]
The need for a history plugin for my own Ajax paging problems in Microsoft Ajax made me create this plugin. It’s best described in another article, so instead of just repeating myself
http://www.aspcode.net/articles/l_en-US/t_default/ASP.NET/ASP.NET-2.0/Ajax/ASP.NET-AJAX-formally-Atlas/Accessible-Ajax-calls-2–solving-history-problem_article_453.aspx
and (more advanced sample – used together with paging)
http://www.aspcode.net/articles/l_en-US/t_default/ASP.NET/ASP.NET-2.0/Ajax/ASP.NET-AJAX-formally-Atlas/Accessible-Ajax-calls-3–history-and-Ajax-calls_article_454.aspx
In short I have ported a JQuery plugin ,thanks Taku Sano (Mikage Sawatari), and added a few extras to [...]
Now in the downloadable solution look at default.aspx.
I have the next/prev hyperlinks call the PostbackAndSetHistory js function which doesn’t do much:
EEEContent_Code(javascript)
function PostbackAndSetHistory(controlid, controlvalue)
{
ASPCode.net.History.setLocation( controlid + ‘-’ + controlvalue );
return false;
[...]
