<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Ruslan&amp;#39;s Blog : Other</title><link>http://blogs.iis.net/ruslany/archive/tags/Other/default.aspx</link><description>Tags: Other</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Setup IIS on Server Core – Windows Server 2008 R2</title><link>http://blogs.iis.net/ruslany/archive/2009/02/26/setup-iis-on-server-core-windows-server-2008-r2.aspx</link><pubDate>Fri, 27 Feb 2009 01:20:24 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2970008</guid><dc:creator>RuslanY Blog</dc:creator><slash:comments>0</slash:comments><description>With the addition of .NET Framework to Server Core in Windows Server 2008 R2 the Server Core installation option became even more appealing for those who want to use a very low footprint server for hosting their applications. Availability of .NET framework provides the following great benefits: ASP.NET support – you can now use Server Core to host your ASP.NET applications. IIS Remote Management – Server Core does not provide any user interface other than command line. But if you prefer to use IIS Manager UI to administer IIS, you can now use IIS Remote Manager to connect to IIS on Server Core and perform all the management tasks from within familiar UI of IIS Manager. PowerShell – Windows Server 2008 R2 includes IIS PowerShell snapin, which...(&lt;a href="http://blogs.iis.net/ruslany/archive/2009/02/26/setup-iis-on-server-core-windows-server-2008-r2.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2970008" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/ruslany/archive/tags/Other/default.aspx">Other</category><category domain="http://blogs.iis.net/ruslany/archive/tags/ASPNET/default.aspx">ASPNET</category><category domain="http://blogs.iis.net/ruslany/archive/tags/PowerShell/default.aspx">PowerShell</category></item><item><title>Dynamic IP Restrictions for IIS 7.0 - Beta</title><link>http://blogs.iis.net/ruslany/archive/2009/02/17/dynamic-ip-restrictions-for-iis-7-0-beta.aspx</link><pubDate>Tue, 17 Feb 2009 02:34:00 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2945656</guid><dc:creator>RuslanY Blog</dc:creator><slash:comments>0</slash:comments><description>Today IIS team has released the Dynamic IP Restrictions Extension for IIS 7.0 - Beta. The Dynamic IP Restrictions Extension provides IT Professionals and Hosters a configurable module that helps mitigate or block Denial of Service Attacks or cracking of passwords through Brute-force by temporarily blocking Internet Protocol (IP) addresses of HTTP clients who follow a pattern that could be conducive to one of such attacks. This module can be configured such that the analysis and blocking could be done at the Web Server or the Web Site level. Install the Dynamic IP Restrictions Beta Today! Microsoft Dynamic IP Restrictions for IIS 7.0 - Beta (x86) Microsoft Dynamic IP Restrictions for IIS 7.0 - Beta (x64) If IIS already has IPv4 Address and IP...(&lt;a href="http://blogs.iis.net/ruslany/archive/2009/02/17/dynamic-ip-restrictions-for-iis-7-0-beta.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2945656" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/ruslany/archive/tags/Other/default.aspx">Other</category><category domain="http://blogs.iis.net/ruslany/archive/tags/IIS+News+Item/default.aspx">IIS News Item</category><category domain="http://blogs.iis.net/ruslany/archive/tags/Security/default.aspx">Security</category></item><item><title>ASP.NET postbacks and URL rewriting</title><link>http://blogs.iis.net/ruslany/archive/2008/10/23/asp-net-postbacks-and-url-rewriting.aspx</link><pubDate>Thu, 23 Oct 2008 05:04:11 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2701108</guid><dc:creator>RuslanY Blog</dc:creator><slash:comments>0</slash:comments><description>ASP.NET Web Forms extensively use postback mechanism in order to maintain the state of the server-side controls on the web page. This makes it somewhat tricky to perform URL rewriting for ASP.NET pages. When a server side form control is added to the web page, ASP.NET will render the response with HTML &amp;lt;form&amp;gt; tag that contains an action attribute pointing back to the page where the form control is. This means that if URL rewriting was used for that page, the action attribute will point back to the rewritten URL, not to the URL that was requested from the browser. This will cause the browser to show rewritten URL any time a postback occurs. Let me demonstrate this on an example. Assume you have a very simple web form in a file called default...(&lt;a href="http://blogs.iis.net/ruslany/archive/2008/10/23/asp-net-postbacks-and-url-rewriting.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2701108" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/ruslany/archive/tags/Other/default.aspx">Other</category><category domain="http://blogs.iis.net/ruslany/archive/tags/ASPNET/default.aspx">ASPNET</category></item><item><title>Wildcard script mapping and IIS 7 integrated pipeline</title><link>http://blogs.iis.net/ruslany/archive/2008/09/30/wildcard-script-mapping-and-iis-7-integrated-pipeline.aspx</link><pubDate>Wed, 01 Oct 2008 03:30:18 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2655904</guid><dc:creator>RuslanY Blog</dc:creator><slash:comments>0</slash:comments><description>The big benefit of IIS 7 integrated request processing pipeline is the fact that all the nice and useful ASP.NET features can be used for any type of content on your web site; not just for ASP.NET-specific content. For example, ASP.NET SQL-based membership can be used to protect static files and folders. Also, ASP.NET extensibility API&amp;#8217;s, such as IHttpHandler and IHttpModule can be used to add custom modules and handlers that would be executed even for non-ASP.NET content. IIS 6 did not have this level of integration. ASP.NET was plugged into IIS 6 as an ISAPI extension and by default was configured to handle ONLY requests mapped to that extension - for example any request that ended with &amp;#8220;.aspx&amp;#8221; would be be processed by ASP...(&lt;a href="http://blogs.iis.net/ruslany/archive/2008/09/30/wildcard-script-mapping-and-iis-7-integrated-pipeline.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2655904" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/ruslany/archive/tags/Other/default.aspx">Other</category><category domain="http://blogs.iis.net/ruslany/archive/tags/ASPNET/default.aspx">ASPNET</category></item><item><title>Introduction</title><link>http://blogs.iis.net/ruslany/archive/2008/07/11/introduction.aspx</link><pubDate>Fri, 11 Jul 2008 05:29:11 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:2611002</guid><dc:creator>RuslanY Blog</dc:creator><slash:comments>0</slash:comments><description>My name is Ruslan Yakushev. I am a program manager on IIS team, working on some of the very interesting projects that are being developed in the team right now. I have joined the team about a year ago, and was thinking about starting a blog for a while now. The primary work responsibilities kept me busy, so I have been postponing blog idea for a while. Every time I needed to make an announcement or an update on IIS community site, I asked some of my colleagues on the team to blog my content. Finally, I figured that I should probably start my own blog, so I could have all the freedom of publishing my own content any time I want. Being a technical program manager on the team, I like to use (in other words - &amp;#8220;dogfood&amp;#8221;) the products...(&lt;a href="http://blogs.iis.net/ruslany/archive/2008/07/11/introduction.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.iis.net/aggbug.aspx?PostID=2611002" width="1" height="1"&gt;</description><category domain="http://blogs.iis.net/ruslany/archive/tags/Other/default.aspx">Other</category></item></channel></rss>