<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>MEL Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home</link><description>MEL Wiki Rss Description</description><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=13</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=MEL&amp;amp;DownloadId=26415" alt="mel.png" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Here's an example: &lt;a href="http://www.codeplex.com/MEL/Wiki/View.aspx?title=Sample%20Code&amp;amp;referringTitle=Home"&gt;Sample Code&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Features:&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Assign left, and right xListbox controls&lt;/li&gt;&lt;li&gt;Assign move left and move right buttons&lt;/li&gt;&lt;li&gt;Moves items between the two, and sorts it by name&lt;/li&gt;&lt;li&gt;Works with postback&lt;/li&gt;&lt;li&gt;Tested in Firefox 2.0 and IE 6&lt;/li&gt;&lt;li&gt;Works with multiple selections&lt;/li&gt;&lt;li&gt;Double-click also moves items&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;AJAX icon&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 04:17:00 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080126041700A</guid></item><item><title>UPDATED WIKI: Sample Code</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Sample Code&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
MEL depends on xListbox controls to enable adding and removing items dynamically from a listbox.  It's bundled in the release.  Simply add the two components to your project and the AJAX Control Toolkit if you have not already.  Then drag the controls onto your ASP.NET page. Get two buttons or image controls to move items.  Then configure the extender to use those controls.  Here's a bit of sample code:&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
 
&amp;lt;cc1:xListBox ID=&amp;quot;XListBoxA&amp;quot; runat=&amp;quot;server&amp;quot;  SelectionMode=&amp;quot;Multiple&amp;quot;&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;A&amp;quot; Value=&amp;quot;a&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;B&amp;quot; Value=&amp;quot;b&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;C&amp;quot; Value=&amp;quot;c&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;D&amp;quot; Value=&amp;quot;d&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
&amp;lt;/cc1:xListBox&amp;gt;
 
&amp;lt;cc1:xListBox ID=&amp;quot;XListBoxB&amp;quot; runat=&amp;quot;server&amp;quot; SelectionMode=&amp;quot;Multiple&amp;quot;&amp;gt;&amp;lt;/cc1:xListBox&amp;gt;
 
&amp;lt;asp:Button ID=&amp;quot;btnRight&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Add -&amp;gt;&amp;quot; /&amp;gt;
&amp;lt;asp:Button ID=&amp;quot;btnLeft&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;&amp;lt;- Remove&amp;quot; /&amp;gt;
 
&amp;lt;cc2:MutuallyExclusiveListboxesExtender ID=&amp;quot;MutuallyExclusiveListboxesExtender1&amp;quot; TargetControlID=&amp;quot;XListBoxA&amp;quot; 
	ButtonLeft=&amp;quot;btnLeft&amp;quot; ButtonRight=&amp;quot;btnRight&amp;quot; ListboxB=&amp;quot;XListBoxB&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
&amp;lt;/cc2:MutuallyExclusiveListboxesExtender&amp;gt;
&lt;/pre&gt; &lt;br /&gt;The Mutually Exclusive Listboxes Extender has a few options:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;TargetControlID&lt;/b&gt; xListBox Control ID representing the leftmost listbox control&lt;/li&gt;&lt;li&gt;&lt;b&gt;ListboxB&lt;/b&gt; xListBox Control ID representing the right listbox control&lt;/li&gt;&lt;li&gt;&lt;b&gt;ButtonLeft&lt;/b&gt; Control ID of control that will move items from the right listbox to the left listbox&lt;/li&gt;&lt;li&gt;&lt;b&gt;ButtonRight&lt;/b&gt; Control ID of control that will move items from the left listbox to the right listbox&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 04:16:23 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Sample Code 20080126041623A</guid></item><item><title>UPDATED WIKI: Sample Code</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Sample Code&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
MEL depends on xListbox controls to enable adding and removing items dynamically from a listbox.  It's bundled in the release.  Simply add the two components to your project and the AJAX Control Toolkit if you have not already.  Then drag the controls onto your ASP.NET page.  Here's a bit of sample code:&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
 
&amp;lt;cc1:xListBox ID=&amp;quot;XListBoxA&amp;quot; runat=&amp;quot;server&amp;quot;  SelectionMode=&amp;quot;Multiple&amp;quot;&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;A&amp;quot; Value=&amp;quot;a&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;B&amp;quot; Value=&amp;quot;b&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;C&amp;quot; Value=&amp;quot;c&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
	&amp;lt;asp:ListItem Text=&amp;quot;D&amp;quot; Value=&amp;quot;d&amp;quot;&amp;gt;&amp;lt;/asp:ListItem&amp;gt;
&amp;lt;/cc1:xListBox&amp;gt;
 
&amp;lt;cc1:xListBox ID=&amp;quot;XListBoxB&amp;quot; runat=&amp;quot;server&amp;quot; SelectionMode=&amp;quot;Multiple&amp;quot;&amp;gt;&amp;lt;/cc1:xListBox&amp;gt;
 
&amp;lt;asp:Button ID=&amp;quot;btnRight&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Add -&amp;gt;&amp;quot; /&amp;gt;
&amp;lt;asp:Button ID=&amp;quot;btnLeft&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;&amp;lt;- Remove&amp;quot; /&amp;gt;
 
&amp;lt;cc2:MutuallyExclusiveListboxesExtender ID=&amp;quot;MutuallyExclusiveListboxesExtender1&amp;quot; TargetControlID=&amp;quot;XListBoxA&amp;quot; 
	ButtonLeft=&amp;quot;btnLeft&amp;quot; ButtonRight=&amp;quot;btnRight&amp;quot; ListboxB=&amp;quot;XListBoxB&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;
&amp;lt;/cc2:MutuallyExclusiveListboxesExtender&amp;gt;
&lt;/pre&gt; &lt;br /&gt;The Mutually Exclusive Listboxes Extender has a few options:&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;&lt;b&gt;TargetControlID&lt;/b&gt; xListBox Control ID representing the leftmost listbox control&lt;/li&gt;&lt;li&gt;&lt;b&gt;ListboxB&lt;/b&gt; xListBox Control ID representing the right listbox control&lt;/li&gt;&lt;li&gt;&lt;b&gt;ButtonLeft&lt;/b&gt; Control ID of control that will move items from the right listbox to the left listbox&lt;/li&gt;&lt;li&gt;&lt;b&gt;ButtonRight&lt;/b&gt; Control ID of control that will move items from the left listbox to the right listbox&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 04:15:08 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Sample Code 20080126041508A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=MEL&amp;amp;DownloadId=26415" alt="mel.png" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Here's an example: &lt;a href="http://www.codeplex.com/MEL/Wiki/View.aspx?title=Sample%20Code&amp;amp;referringTitle=Home"&gt;Sample Code&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Features:&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Assign left, and right xListbox controls&lt;/li&gt;&lt;li&gt;Assign move left and move right buttons&lt;/li&gt;&lt;li&gt;Moves items between the two, and sorts it by name&lt;/li&gt;&lt;li&gt;Works with postback&lt;/li&gt;&lt;li&gt;Tested in Firefox 2.0 and IE 6&lt;/li&gt;&lt;li&gt;Works with multiple selections&lt;/li&gt;&lt;li&gt;Double-click also moves items&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;&lt;li&gt;Possibly drag and drop support&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 04:03:04 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080126040304A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=11</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=MEL&amp;amp;DownloadId=26415" alt="mel.png" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Features:&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Assign left, and right xListbox controls&lt;/li&gt;&lt;li&gt;Assign move left and move right buttons&lt;/li&gt;&lt;li&gt;Moves items between the two, and sorts it by name&lt;/li&gt;&lt;li&gt;Works with postback&lt;/li&gt;&lt;li&gt;Tested in Firefox 2.0 and IE 6&lt;/li&gt;&lt;li&gt;Works with multiple selections&lt;/li&gt;&lt;li&gt;Double-click also moves items&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;&lt;li&gt;Possibly drag and drop support&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 04:00:45 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080126040045A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=MEL&amp;amp;DownloadId=26415" alt="mel.png" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;&lt;li&gt;Possibly drag and drop support&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 03:59:06 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080126035906A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;img src="http://www.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=MEL&amp;amp;DownloadId=26413" alt="mel.png" /&gt;&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;&lt;li&gt;Possibly drag and drop support&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 03:54:07 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080126035407A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;&lt;li&gt;Possibly drag and drop support&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Sat, 26 Jan 2008 03:53:22 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080126035322A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;&lt;li&gt;Possibly drag and drop support&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Wed, 23 Jan 2008 15:54:12 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080123035412P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  There is a release posted targeting .NET 2.x.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Wed, 23 Jan 2008 15:50:59 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080123035059P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  I will compile and post releases targeting .NET 3.5 and .NET 2.0 shortly.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Wed, 23 Jan 2008 07:05:28 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080123070528A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  I will compile and post releases for .NET 3.5 and .NET 2.0 shortly.&lt;br /&gt; &lt;br /&gt;Tested in Firefox 2.0 and IE 6.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;&lt;li&gt;Smart ListControl &lt;a href="http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20" class="externalLink"&gt;http://aspalliance.com/1071_Smart_ListControl_in_ASPNET_1x20&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (bundled)&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Wed, 23 Jan 2008 07:04:17 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080123070417A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two or more listboxes where items can be moved between the them using buttons.
&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Current Status&lt;/b&gt;&lt;br /&gt;Right now, the source code has been uploaded and seems to be working.  I will compile and post releases for .NET 3.5 and .NET 2.0 shortly.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;Visual Studio 2005 or higher (2008 to use source code)&lt;/li&gt;&lt;li&gt;AJAX Control Toolkit &lt;a href="http://www.codeplex.com/AtlasControlToolkit" class="externalLink"&gt;http://www.codeplex.com/AtlasControlToolkit&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;.NET Framework 2.x or higher&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;Todo&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt;More documentation&lt;/li&gt;&lt;li&gt;Binary releases&lt;/li&gt;&lt;li&gt;Posted example/screenshots&lt;/li&gt;&lt;li&gt;AJAX icon&lt;/li&gt;
&lt;/ul&gt; &lt;br /&gt;&lt;b&gt;FAQs&lt;/b&gt;&lt;br /&gt;&lt;i&gt;Give me your feedback&lt;/i&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Wed, 23 Jan 2008 07:02:35 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080123070235A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/MEL/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A .NET 2.0&amp;#43; implementation of mutually exclusive listboxes using ASP.NET&amp;#39;s AJAX Control Toolkit.  In other words, a UI with two listboxes where items can be moved between the two using buttons.
&lt;br /&gt;
&lt;/div&gt;</description><author>kdeenanauth</author><pubDate>Wed, 23 Jan 2008 04:50:31 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080123045031A</guid></item></channel></rss>