<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>Hussein Zahran [MVP]</title><link>http://www.dotnetjunkies.com/WebLog/hussein/default.aspx</link><description>ASP.NET Gate</description><dc:language>en-US</dc:language><generator>CommunityServer 1.0 (Build: 1.0.1.50214)</generator><item><title>Moved my Blog to http://www.barmagy.com</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2007/02/09/193090.aspx</link><pubDate>Fri, 09 Feb 2007 10:17:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:193090</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/193090.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=193090</wfw:commentRss><description>Sorry to leave behind 3 years of being here, but its time to have a blog to target a specific audience and to co-operate with other professionals to get a new community to the scene

my blog is http://barmagy.com/blogs/dotnetgate/default.aspx

am writing with the name Hus it will be nice to see you there and will keep my old posts here will not move it.&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=193090" width="1" height="1"&gt;</description></item><item><title>ASP.NET AJAX 1.0 RC</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/12/15/172346.aspx</link><pubDate>Fri, 15 Dec 2006 10:56:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:172346</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/172346.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=172346</wfw:commentRss><description>Available for &lt;a href="http://ajax.asp.net/default.aspx?tabid=47"&gt;download &lt;/a&gt;, Microsoft announced Thursday the RC version for the ASP.NET AJAX Framework

Enjoy ;)&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=172346" width="1" height="1"&gt;</description></item><item><title>ASP.NET AJAX Timer Control-Here we go</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/10/27/152109.aspx</link><pubDate>Fri, 27 Oct 2006 18:14:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:152109</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/152109.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=152109</wfw:commentRss><description>The timer control is one of the ASP.NET AJAX (ATLAS )&amp;nbsp; controls, We could use the timer control for several usage, such as setting a clock on your page, updating the price of a company’s quote each while for example, and more.&lt;br&gt;The process of doing this now is so simple I remember the time when we did that using javascript and it was not that simple,.&lt;br&gt;First you have to add a reference to the Microsoft.Web.Atlas.dll located in the folder you have installed the ATLAS components to.&lt;br&gt;After that we will drag a ScriptManager control to our page and rename it to scriptManager.&lt;br&gt;&lt;span&gt;&lt;br&gt;Note: the ScriptManager should be the first ATLAS control located on your page else an error such the following will face you for example&lt;/span&gt;&lt;br&gt;&lt;span&gt;An UpdatePanel requires a ScriptManager on the page. The ScriptManager must exist before the UpdatePanels.&lt;/span&gt;&lt;br&gt;&lt;br&gt;Anyways, after dragging the ScriptManager control consider setting the EnablePartialRendering property to true&lt;br&gt;The next step is dragging an UpdatePanel to your content area,&amp;nbsp; then add a ContentTemplate tag to it&amp;nbsp; add more controls inside our UpdatePanel&lt;br&gt;For the propose of this post we will add 2 controls a Label and a Timer Control&lt;br&gt;Our label will be called lblDate&lt;br&gt;The timer will be timerControl&lt;br&gt;As a Timer the control is provided with an Interval property and a Tick Event.&lt;br&gt;We will set the interval for 1000 so our timer will fire the Tick event every 1 second to update the Label with the server time.&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&lt;br&gt;protected void timerControl_Tick(object sender, EventArgs e)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblDate.Text = DateTime.Now.ToString();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;When we run our code the Label will appear empty after 1 second it will be get updated with the server date and time.&lt;br&gt;With the existence of the Timer control things now are very simple and provides to our hands a usable web page that could do more than updating a label.&lt;br&gt;Enjoy you night guys ;)&lt;br&gt;&lt;br&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=152109" width="1" height="1"&gt;</description></item><item><title>Download the ASP.NET AJAX v1.0 beta</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/10/20/151246.aspx</link><pubDate>Fri, 20 Oct 2006 19:24:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:151246</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/151246.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=151246</wfw:commentRss><description>I was surprised and i want to surprise you with the beta release of the ASP.NET ASAX framework, here you go &lt;a href="http://ajax.asp.net/default.aspx?tabid=47"&gt;click here&lt;/a&gt; to download the beta release&lt;br&gt;&lt;br&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=151246" width="1" height="1"&gt;</description></item><item><title>Overview on Cider for Creating WPF Applications</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/10/13/150473.aspx</link><pubDate>Fri, 13 Oct 2006 17:56:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:150473</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/150473.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=150473</wfw:commentRss><description>&lt;br&gt;Cider is the code name for the Visual Designer for Windows Presentation Foundation, i was browsing today some of the 

functionality embedded in and really it's amazing to see things from both the designer and the XAML code and how 

things works, also i created a simple Hello World application and here i'll introduce you with some of the basic 

functionality providing visual assistance to go through this new tool,
&lt;br&gt;&lt;br&gt;
first let me guide you to the following &lt;a href="http://blogs.msdn.com/smguest/archive/2006/08/25/724654.aspx"&gt;post&lt;/a&gt; where Simon Guest provide a basic 

introduction for the needed prerequisites and tools to start with the WPF
&lt;br&gt;&lt;br&gt;
Here is where you start, you start by creating a new Windows Application under the .NET Framework 3.0 Projects node
 &lt;br&gt;&lt;br&gt;
&lt;img src="http://www.husspace.com/cider/1.jpg" border="0"&gt;&lt;br&gt;&lt;br&gt;&lt;span&gt;
Let us name it TestHelloWorld&lt;/span&gt;&lt;br&gt;
A new Project will be created as shown in the Solution Explorer, 
By looking into the project elements you will find the project references couple of Components, also you will note 

the .XAML extension with the new added Window form,
Window1.XAML also has a code behind for it called Window1.XAML.CS,
 &lt;br&gt;&lt;br&gt;
&lt;img src="http://www.husspace.com/cider/2.jpg" border="0"&gt;&lt;br&gt;&lt;br&gt;
This how the designer environment looks like 2 panes, one contains the designer area and the other contains the XAML 

editor area, let us start by changing the Title of the Window form to Hello World&lt;br&gt;&lt;br&gt;&amp;lt;Window x:Class="TestHelloWorld.Window1"&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title="Hello World" Height="300" Width="300"&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;br&gt;&amp;lt;/Window&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;We will notice the Grid element, the Grid element is one of the container elements that exists so lets currently use 

the Grid Continer Control, as this control will be the working area for us to add our controls, so lets go to the next stage so fast.
&lt;br&gt;&lt;br&gt;&lt;span&gt;
Adding  The Controls&lt;/span&gt;&lt;br&gt;
First we will add a Button and a Label from the left toolbox , I have added some customizations and here is the XAML 

representation&lt;br&gt;&lt;br&gt;&amp;lt;Grid Background="Black"&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Button Margin="18,16,0,22" Background="Orange" Click="SayHello" Name="btnHelloWorld" HorizontalAlignment="Left" Width="75"&amp;gt;Click Me!!&amp;lt;/Button&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Label Margin="120,44,10,41" Foreground="White" Name="lblHello" &amp;gt;&amp;lt;/Label&amp;gt;&lt;br&gt;&amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;and here how it looks like in the design mood
&lt;br&gt;&lt;br&gt;
 
&lt;img src="http://www.husspace.com/cider/3.jpg" border="0"&gt;&lt;br&gt;&lt;br&gt;
Ok, but my target was to say Hello World to those who will click the button represented on the above image, so let 

us  see how we will fire this event in the WPF way :D
&lt;br&gt;&lt;br&gt;
&lt;span&gt;Events&lt;/span&gt;&lt;br&gt;
Ok adding an event could be done through 2 ways as I have done till now, either by creating an event for that button 

and this will not be different from how you add events  in the old way of dealing with the regular .NET 

applications, but the new is the XAML way of adding an event so let’s add an attribute called click to our button we 

have and assign a value of SayHello as below&lt;br&gt;&lt;br&gt;&amp;lt;Button Margin="18,16,0,22" Background="Orange" Click="SayHello" Name="btnHelloWorld" HorizontalAlignment="Left" Width="75"&amp;gt;Click Me!!&amp;lt;/Button&amp;gt;&lt;br&gt;&lt;br&gt;What we still have is to add a method that will say Hello Word, so lets switch to the code behind and add the 

following method in it&lt;br&gt;&lt;br&gt;&lt;code&gt;public void SayHello(object sender, RoutedEventArgs e)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lblHello.Content = "Hello World";&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/code&gt;&lt;br&gt;&lt;br&gt;
Yes lblHello.Content not .Text, it taked me 5 minutes to explore the properties to add a text value to that Label, 

anyways let’s now run the application we have now and see the end result&lt;br&gt;&lt;br&gt;

 
&lt;img src="http://www.husspace.com/cider/4.jpg" border="0"&gt;&lt;br&gt;&lt;br&gt;
That’s the final result we will get after we run the application and click on the button,
In the end I know that this was a simple one but I wanted to share with you the first hello world I have created 

using the WPF designer “Cider”&lt;br&gt;&lt;br&gt;
Enjoy your time with it ;)&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=150473" width="1" height="1"&gt;</description></item><item><title>Fixing the Visual Studio Content Installer Error</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/09/29/148711.aspx</link><pubDate>Fri, 29 Sep 2006 08:36:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:148711</guid><dc:creator>Hussein</dc:creator><slash:comments>1</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/148711.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=148711</wfw:commentRss><description>I was faced this morning with a problem while installing the ASPNETAtlas.vsi and each time i try to run the VSI it gives me the String cannot have a zero length&amp;nbsp; tried all possible solutions until i found the following &lt;a href="http://forums.asp.net/thread/1244868.aspx"&gt;post&lt;/a&gt; &lt;br&gt;&lt;br&gt;and i noticed that it's a registery key problm all you have to do is to add 2 keys under the following registery path &lt;br&gt;&lt;br&gt;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSEnvCommunityContent\ContentTypes\VSTemplate]&lt;br&gt;&lt;br&gt;Create the following keys if they are missing&lt;br&gt;"ClassName"="VSContentInstaller.VSTemplateInstallerPage"&lt;br&gt;"DisplayName"="#VSTemplateContentDisplayName"&lt;br&gt;&lt;br&gt;thanks to Frank for that post it helped me alot as i was facing this issue with my laptop and i needed to install the atlas components to do some demos&lt;br&gt;&lt;br&gt;Enjoy guys ;)&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=148711" width="1" height="1"&gt;</description></item><item><title>ATLAS to be ASP.NET AJAX</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/09/28/148652.aspx</link><pubDate>Thu, 28 Sep 2006 18:39:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:148652</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/148652.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=148652</wfw:commentRss><description>I just noticed that the code name ATLAS is changed to ASP.NET AJAX before it's official release &lt;a href="http://ajax.asp.net/default.aspx?tabid=47&amp;subtabid=477"&gt;click here&lt;/a&gt; to download the updated toolkit, enjoy &lt;br&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=148652" width="1" height="1"&gt;</description></item><item><title>New to Development?</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/08/10/143598.aspx</link><pubDate>Thu, 10 Aug 2006 07:52:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:143598</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/143598.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=143598</wfw:commentRss><description>&lt;P&gt;If you are new to development or you would like to increase your development know how here you are the ASP.NET New to Development section&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msdn.microsoft.com/asp.net/learning/learn/newtodevelopment/"&gt;http://msdn.microsoft.com/asp.net/learning/learn/newtodevelopment/&lt;/A&gt;&lt;BR&gt;&lt;/P&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=143598" width="1" height="1"&gt;</description></item><item><title>Develop Without Borders- Are you ready for it</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/08/10/143597.aspx</link><pubDate>Thu, 10 Aug 2006 07:42:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:143597</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/143597.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=143597</wfw:commentRss><description>&lt;p&gt;It's agreat opportunity for you guys who wish to share your ideas in solving world problems through designing an application on the 2007 Microsoft Office System,&lt;br&gt;You could win through your actions in the charity activities&lt;/p&gt;
&lt;p&gt;for more information go now to that &lt;a href="https://www.developwithoutborders.com/Default.aspx"&gt;link&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Reach out. Make a Difference ;)&lt;br&gt;&lt;/p&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=143597" width="1" height="1"&gt;</description></item><item><title>Go Atlas Go - &amp;amp;amp;amp;quot;Atlas&amp;amp;amp;amp;quot; June CTP Release</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/07/01/141387.aspx</link><pubDate>Sat, 01 Jul 2006 10:00:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:141387</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/141387.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=141387</wfw:commentRss><description>The Atlas team was working hard to deliver us the June CTP Release which will include many bug fixs go and download guys ;) &lt;A href="http://go.microsoft.com/fwlink/?LinkId=52384"&gt;Click Here&lt;/A&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=141387" width="1" height="1"&gt;</description></item><item><title>The Egyptian Dev House workspace - Are you ready for it? :D</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/05/21/138666.aspx</link><pubDate>Sun, 21 May 2006 11:57:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:138666</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/138666.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=138666</wfw:commentRss><description>&lt;P&gt;I am glad to announce that we had launched the Egyptian Dev House workspace that is moderated by a number of local Egyptian MVPs, we are mainly targeting the Egyptian professionals, instructors, students and hobbyists, if you are interested please visit us on &lt;A href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=01930e48-76f0-45c7-b658-84c794ee77e1"&gt;http://www.gotdotnet.com/workspaces/workspace.aspx?id=01930e48-76f0-45c7-b658-84c794ee77e1&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;BR&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=138666" width="1" height="1"&gt;</description></item><item><title>Atlas Control Toolkit Refresh Released</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/05/05/137909.aspx</link><pubDate>Fri, 05 May 2006 19:12:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:137909</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/137909.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=137909</wfw:commentRss><description>I was browsing &lt;a href="http://blogs.msdn.com/sburke/"&gt;Shawn Burke's&lt;/a&gt; Blog and i noticed that the Atlas Control Toolkit Refresh Released 
good job check it out &lt;a href="http://blogs.msdn.com/sburke/archive/2006/05/05/590313.aspx"&gt;here&lt;/a&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=137909" width="1" height="1"&gt;</description></item><item><title>Running ASP.NET 2.0 on a machine that are not running IIS</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/04/22/137034.aspx</link><pubDate>Sat, 22 Apr 2006 19:30:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:137034</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/137034.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=137034</wfw:commentRss><description>&lt;font size="2"&gt;Well I was in a big need to run a web service that works with the Windows workflow foundation and that was impossible to run it as my machine is not running a windows XP professional version well, to solve this problem I know that there were a solution to that which was Cassini but I didn’t knew if there is a build for the .NET 2.0 or not well I’am here to tell those who don’t know that currently there is a .NET 2.0 version of Cassini it still in its Release Candidate but its cool anyways here you go the URLs are included :D
&lt;a href="http://ultidev.com/Products/Cassini/CassiniDevGuide.htm"&gt;http://ultidev.com/Products/Cassini/CassiniDevGuide.htm&lt;/a&gt;&lt;br&gt;
&lt;a href="http://ultidev.com/download/default.aspx"&gt;http://ultidev.com/download/default.aspx&lt;/a&gt;&lt;/font&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=137034" width="1" height="1"&gt;</description></item><item><title>WinFX Tour– inside the Egyptian borders 15th of May</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/04/21/136948.aspx</link><pubDate>Fri, 21 Apr 2006 09:47:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:136948</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/136948.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=136948</wfw:commentRss><description>The WinFX Tour will be visiting couple of countries to provide the latest news about the WinFX technologies and to provide couple of demos,  one of the amazing things is that the WinFX tour will be visiting Egypt next month in the 15th of May its really wonderful news I am really interested to attend&lt;BR&gt;&lt;A href="http://www.microsoft.com/middleeast/Egypt/english/events/winfx/default.aspx"&gt;click here&lt;/A&gt; to register if you are intrested&lt;BR&gt;&lt;BR&gt;&lt;IMG src="http://www.microsoft.com/middleeast/Egypt/english/events/winfx/images/banner.jpg"&gt;&lt;BR&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=136948" width="1" height="1"&gt;</description></item><item><title>Source Code for the Built-in ASP.NET 2.0 Providers Now Available for Download</title><link>http://www.dotnetjunkies.com/WebLog/hussein/archive/2006/04/15/136814.aspx</link><pubDate>Sat, 15 Apr 2006 06:52:00 GMT</pubDate><guid isPermaLink="false">58df7014-fd75-437c-9641-150997716d1c:136814</guid><dc:creator>Hussein</dc:creator><slash:comments>0</slash:comments><comments>http://www.dotnetjunkies.com/WebLog/hussein/comments/136814.aspx</comments><wfw:commentRss>http://www.dotnetjunkies.com/WebLog/hussein/commentrss.aspx?PostID=136814</wfw:commentRss><description>Source Code for the Built-in ASP.NET 2.0 Providers Now Available for Download , &lt;BR&gt;&lt;A href="http://weblogs.asp.net/scottgu/archive/2006/04/13/442772.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2006/04/13/442772.aspx&lt;/A&gt;&lt;img src="http://www.dotnetjunkies.com/WebLog/aggbug.aspx?PostID=136814" width="1" height="1"&gt;</description></item></channel></rss>