<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Ahmed Hussein</title>
        <link>http://geekswithblogs.net/Ahmed_Hussein_blog/Default.aspx</link>
        <description>Ahmed Hussein blog</description>
        <language>en-US</language>
        <copyright>Ahmed Hussein</copyright>
        <managingEditor>ahmednhussein@yahoo.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <image>
            <title>Ahmed Hussein</title>
            <url>http://geekswithblogs.net/images/RSS2Image.gif</url>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>AL.exe was not found  - Visual Studio 2008</title>
            <category>Visual Studio tips&amp;tricks</category>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2009/04/25/al.exe.aspx</link>
            <description> Task failed because "AL.exe" was not found, or the correct Microsoft Windows SDK is not installed. The task is looking for "AL.exe" in the "bin" subdirectory beneath the location specified in the InstallationFolder value of the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v6.0A. You may be able to solve the problem by doing one of the following: 1) Install the Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5. 2) Install Visual Studio 2008. 3) Man&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=131452"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=131452" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/Ahmed_Hussein_blog/aggbug/131452.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ahmed Hussein</dc:creator>
            <guid>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2009/04/25/al.exe.aspx</guid>
            <pubDate>Sat, 25 Apr 2009 21:23:55 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/131452.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2009/04/25/al.exe.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/commentRss/131452.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/Ahmed_Hussein_blog/services/trackbacks/131452.aspx</trackback:ping>
        </item>
        <item>
            <title>Could not load file or assembly XXXXXXXXXX or one of its dependencies. There is not enough space on the disk. and access to the path 'C:\WINDOWS\TEMP\ is denied</title>
            <category>ASP.Net</category>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2008/04/16/asp.netproductiondeplymenterrors.aspx</link>
            <description>&lt;div&gt;I got these two errors after deploying my ASP.Net applications and web services on new testing/production server. I would like to share how I managed to fix them. see details below:&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
1- Could not load file or assembly XXXXXXXXXX or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) &lt;br /&gt;
&lt;br /&gt;
Fix: &lt;br /&gt;
Request form server admins to remove the size quote limitation on the APP Pools users used for those Asp.Net applications. &lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
Anther related error: &lt;br /&gt;
2- access to the path 'C:\WINDOWS\TEMP\expression_host_b55b5ad1bd91405fa6aa96183dd6400e.dll' is denied. &lt;br /&gt;
Fix &lt;br /&gt;
Gives your APP Pools users (IIS_WPG group) modify access to c:\WINDOWS\TEMP or TMP &lt;br /&gt;
OR &lt;br /&gt;
Move Temp/TMP folder to anther drive .see details below: &lt;br /&gt;
CAUSE &lt;br /&gt;
&lt;br /&gt;
The system TEMP and TMP variables point to a folder that does not exist. The compiler generates temporary files in the folder where the TEMP and the TMP variables point to before the files are copied to the Temporary ASP.NET Files folder. However, the folder where the system variables point to is deleted when you restart the computer. Therefore, the compiler cannot generate the temporary files. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
RESOLUTION &lt;br /&gt;
&lt;br /&gt;
1. Create a temporary folder under %Systemroot%, and then name it Temp. &lt;br /&gt;
&lt;br /&gt;
2. Grant full permissions on the Temp folder to the aspnet user account in .NET Framework 1.0 or to the NETWORK SERVICE user account in .NET Framework 1.1. &lt;br /&gt;
&lt;br /&gt;
3. Right-click My Computer, and then click Properties. &lt;br /&gt;
&lt;br /&gt;
4. On the Advanced tab, click Environment Variables. &lt;br /&gt;
&lt;br /&gt;
5. Select the TEMP variable under System variables, and then click Edit. &lt;br /&gt;
&lt;br /&gt;
6. Type %SystemRoot%\TEMP in the Variable Value box, and then click OK. &lt;br /&gt;
&lt;br /&gt;
7. Repeat steps 5 and 6 to edit the TMP variable. Click OK two times. &lt;br /&gt;
&lt;br /&gt;
8. Click Start, and then click Run. &lt;br /&gt;
&lt;br /&gt;
9. To reset Internet Information Services (IIS), type iisreset on the command prompt. &lt;br /&gt;
&lt;br /&gt;
Note If the error message that is mentioned in the "Symptoms" section of this article persists, restart the computer. &lt;br /&gt;
&lt;br /&gt;
Refernaces: &lt;br /&gt;
Check your site settings to increase the amount of space allotted &lt;br /&gt;
&lt;a href="http://www.dotnetnuke.com/Community/ForumsDotNetNuke/tabid/795/forumid/7/threadid/28271/scope/posts/Default.aspx "&gt;http://www.dotnetnuke.com/Community/ForumsDotNetNuke/tabid/795/forumid/7/threadid/28271/scope/posts/Default.aspx &lt;/a&gt;&lt;/div&gt;
&lt;div&gt;Could not load file or assembly &lt;br /&gt;
&lt;a href="http://msforums.ph/forums/t/46678.aspx"&gt;http://msforums.ph/forums/t/46678.aspx&lt;/a&gt; &lt;/div&gt;
&lt;div&gt;out of space &lt;br /&gt;
&lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=310311#310311"&gt;http://channel9.msdn.com/ShowPost.aspx?PostID=310311#310311&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;br /&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=121282"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=121282" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/Ahmed_Hussein_blog/aggbug/121282.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ahmed Hussein</dc:creator>
            <guid>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2008/04/16/asp.netproductiondeplymenterrors.aspx</guid>
            <pubDate>Wed, 16 Apr 2008 19:30:29 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/121282.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2008/04/16/asp.netproductiondeplymenterrors.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/commentRss/121282.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/Ahmed_Hussein_blog/services/trackbacks/121282.aspx</trackback:ping>
        </item>
        <item>
            <title>Unable to get the private bytes memory limit for the W3WP process. The ASP.NET cache will be unable to limit its memory use, which may lead to a process restart. Error: 0x80070005</title>
            <category>ASP.Net</category>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2008/03/23/120710.aspx</link>
            <description>Fix for "Unable to get the private bytes memory limit for the W3WP process. The ASP.NET cache will be unable to limit its memory use, which may lead to a process restart. Error: 0x80070005"&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=120710"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=120710" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/Ahmed_Hussein_blog/aggbug/120710.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ahmed Hussein</dc:creator>
            <guid>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2008/03/23/120710.aspx</guid>
            <pubDate>Sun, 23 Mar 2008 17:40:36 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/120710.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2008/03/23/120710.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/commentRss/120710.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/Ahmed_Hussein_blog/services/trackbacks/120710.aspx</trackback:ping>
        </item>
        <item>
            <title>Speed up Visual Studio 2005 Performance</title>
            <category>Visual Studio tips&amp;tricks</category>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/12/116791.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;I found these great links in scott bolg while searching for anyways to speed up &lt;font face="Arial"&gt;Visual Studio 2005 Performance.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;ul style="MARGIN-TOP: 0in" type="disc"&gt;
    &lt;li&gt;&lt;font face="Times New Roman" size="3"&gt;&lt;span style="FONT-SIZE: 12pt"&gt;&lt;a title="http://weblogs.asp.net/scottgu/archive/2007/11/01/tip-trick-hard-drive-speed-and-visual-studio-performance.aspx" href="http://weblogs.asp.net/scottgu/archive/2007/11/01/tip-trick-hard-drive-speed-and-visual-studio-performance.aspx"&gt;&lt;font color="#0000ff"&gt;http://weblogs.asp.net/scottgu/archive/2007/11/01/tip-trick-hard-drive-speed-and-visual-studio-performance.aspx&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/font&gt; &lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;a title="http://weblogs.asp.net/scottgu/archive/2006/09/22/Tip_2F00_Trick_3A00_-Optimizing-ASP.NET-2.0-Web-Project-Build-Performance-with-VS-2005.aspx" target="_blank" href="http://weblogs.asp.net/scottgu/archive/2006/09/22/Tip_2F00_Trick_3A00_-Optimizing-ASP.NET-2.0-Web-Project-Build-Performance-with-VS-2005.aspx"&gt;Tip/Trick: Optimizing ASP.NET 2.0 Web Project Build Performance with Visual Studio 2005&lt;/a&gt; &lt;/span&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;a title="http://weblogs.asp.net/scottgu/archive/2007/08/21/public-hotfix-patch-available-for-vs-2005-f5-debugging-performance-issue-with-asp-net.aspx" target="_blank" href="http://weblogs.asp.net/scottgu/archive/2007/08/21/public-hotfix-patch-available-for-vs-2005-f5-debugging-performance-issue-with-asp-net.aspx"&gt;Public Hotfix Patch Available for VS 2005 F5 Debugging Performance Issue with ASP.NET&lt;/a&gt; &lt;/span&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;a title="http://dotnettipoftheday.org/tips/speedup_visual_studio.aspx" target="_blank" href="http://dotnettipoftheday.org/tips/speedup_visual_studio.aspx"&gt;Speed up Visual Studio 2005&lt;/a&gt; &lt;/span&gt;&lt;/font&gt;&lt;/li&gt;
    &lt;li&gt;&lt;font face="Arial" size="2"&gt;&lt;span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"&gt;&lt;a title="http://dotnettipoftheday.org/tips/optimize_launch_of_vs2005.aspx" target="_blank" href="http://dotnettipoftheday.org/tips/optimize_launch_of_vs2005.aspx"&gt;Optimize the Launch of Visual Studio 2005&lt;/a&gt;&lt;/span&gt;&lt;/font&gt; &lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;&lt;font face="Arial" color="#000080" size="2"&gt; Thanks scottgu&lt;/font&gt;&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=116791"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=116791" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/Ahmed_Hussein_blog/aggbug/116791.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ahmed Hussein</dc:creator>
            <guid>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/12/116791.aspx</guid>
            <pubDate>Mon, 12 Nov 2007 07:00:58 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/116791.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/12/116791.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/commentRss/116791.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/Ahmed_Hussein_blog/services/trackbacks/116791.aspx</trackback:ping>
        </item>
        <item>
            <title>TFS source code control with Visual Studio 6.0 and Visual Studio .NET 2003</title>
            <category>Team Foundation server -TFS</category>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/08/116724.aspx</link>
            <description>&lt;p&gt;&lt;font face="Tahoma" color="#000080" size="3"&gt;Can we use TFS’s source code control with Visual Studio 6.0 and Visual Studio .NET 2003 clients? Yes we can use the Visual Studio Team Foundation Server with products that do not support Team Explorer integration. By using:&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Tahoma" color="#000080" size="3"&gt;&lt;font face="Arial"&gt;&lt;a target="_blank" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=87E1FFBD-A484-4C3A-8776-D560AB1E6198&amp;amp;displaylang=en"&gt;Visual Studio 2005 Team Foundation Server MSSCCI Provider&lt;br /&gt;
&lt;/a&gt;Brief Description:&lt;br /&gt;
Enables integrated use of Team Foundation Version Control with products that do not support Team Explorer integration.&lt;br /&gt;
&lt;font face="Arial"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=87E1FFBD-A484-4C3A-8776-D560AB1E6198&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=87E1FFBD-A484-4C3A-8776-D560AB1E6198&amp;amp;displaylang=en&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Tahoma" color="#000080" size="3"&gt;&lt;font face="Arial"&gt;&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=116724"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=116724" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/Ahmed_Hussein_blog/aggbug/116724.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ahmed Hussein</dc:creator>
            <guid>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/08/116724.aspx</guid>
            <pubDate>Thu, 08 Nov 2007 16:21:18 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/116724.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/08/116724.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/commentRss/116724.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/Ahmed_Hussein_blog/services/trackbacks/116724.aspx</trackback:ping>
        </item>
        <item>
            <title>All what you need to know about Site Navigation, siteMap and SiteMapProvider</title>
            <category>ASP.Net</category>
            <link>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/08/116722.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;&lt;font color="#000080"&gt;Great post on Danny Chen Blog about &lt;font face="Arial"&gt;Site Navigation, siteMap and SiteMapProvider overview.  read it then you ready to create your &lt;font face="Arial"&gt;siteMap and SiteMapProvider.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt; &lt;/font&gt;&lt;font face="Arial"&gt;&lt;a target="_blank" href="http://blogs.msdn.com/dannychen/archive/2006/03/16/553005.aspx"&gt;http://blogs.msdn.com/dannychen/archive/2006/03/16/553005.aspx&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;Also these are good articles and posts about  siteMap:&lt;/p&gt;
&lt;div style="FONT-SIZE: 12pt; FONT-FAMILY: times new roman, new york, times, serif"&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://geekswithblogs.net/casualjim/articles/52749.aspx"&gt;&lt;span class="yshortcuts" id="lw_1194559821_0"&gt;http://geekswithblogs.net/casualjim/articles/52749.aspx&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://professionalaspnet.com/archive/2006/01/31/customsitemapprovider.aspx"&gt;&lt;span class="yshortcuts" id="lw_1194559821_1"&gt;http://professionalaspnet.com/archive/2006/01/31/customsitemapprovider.aspx&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; WICKED CODE&lt;br /&gt;
The SQL Site Map Provider You've Been Waiting For &lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://msdn.microsoft.com/msdnmag/issues/06/02/WickedCode/"&gt;&lt;span class="yshortcuts" id="lw_1194559821_2"&gt;http://msdn.microsoft.com/msdnmag/issues/06/02/WickedCode/&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://msdn2.microsoft.com/en-us/library/ms178429(VS.80).aspx"&gt;&lt;span class="yshortcuts" id="lw_1194559821_3"&gt;http://msdn2.microsoft.com/en-us/library/ms178429(VS.80).aspx&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Walkthrough: Filtering Site-Map Nodes Based on Security Roles  &lt;/div&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://msdn2.microsoft.com/en-us/library/ms178429(VS.80).aspx"&gt;&lt;span class="yshortcuts" id="lw_1194559821_4"&gt;http://msdn2.microsoft.com/en-us/library/ms178429(VS.80).aspx&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;Site Map Providers&lt;/div&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://msdn2.microsoft.com/en-us/library/aa479033.aspx"&gt;&lt;span class="yshortcuts" id="lw_1194559821_5"&gt;http://msdn2.microsoft.com/en-us/library/aa479033.aspx&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;a target="_blank" rel="nofollow" href="http://msdn2.microsoft.com/en-us/asp.net/aa336558.aspx"&gt;&lt;span class="yshortcuts" id="lw_1194559821_6"&gt;http://msdn2.microsoft.com/en-us/asp.net/aa336558.aspx&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=116722"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=116722" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/Ahmed_Hussein_blog/aggbug/116722.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Ahmed Hussein</dc:creator>
            <guid>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/08/116722.aspx</guid>
            <pubDate>Thu, 08 Nov 2007 16:07:13 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/116722.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/Ahmed_Hussein_blog/archive/2007/11/08/116722.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/Ahmed_Hussein_blog/comments/commentRss/116722.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/Ahmed_Hussein_blog/services/trackbacks/116722.aspx</trackback:ping>
        </item>
    </channel>
</rss>