﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
  <channel>
    <title>Newest KB Articles in ASP.NET</title>
    <description>Recent additions to the knowledge base from DiscountASP.NET</description>
    <link>https://support.discountasp.net/kb/c348/asp_net.aspx</link>
    <pubDate>Tue, 09 Jun 2026 05:32:37 GMT</pubDate>
    <generator>SmarterTrack Enterprise 100.0.9553</generator>
    <atom:link href="https://support.discountasp.net/RSS.ashx?catid=348&amp;type=newestkbarticles" rel="self" type="application/rss+xml" />
    <item>
      <title>How to encrypt configuration sections of your web.config using a custom RsaProtectedConfigurationProvider</title>
      <link>https://support.discountasp.net/kb/a938/how-to-encrypt-configuration-sections-your-web_config-using-custom-rsaprotectedconfigurationprovider.aspx</link>
      <pubDate>Thu, 16 Jun 2011 19:35:19 GMT</pubDate>
      <guid isPermaLink="false">kbarticle938</guid>
      <description>&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;em&gt;Web.config encryption works with ASP.NET 2.0 or higher.&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
The RsaProtectedConfigurationProvider allows you to encrypt certain sections of the web.config using RSA keys. You must implement a custom RsaProtectedConfigurationProvider if you are encrypting with your own RSA keys.&lt;br /&gt;
&lt;br /&gt;
To generate your own custom RSA keys and install it on the DiscountASP.NET server, see the related Knowledge Base article, &lt;a href="http://support.discountasp.net/KB/a335/how-to-install-your-rsa-keys-webconfig-encryption-on.aspx"&gt;How to install your RSA keys for web.config encryption on DiscountASP.NET servers&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Then add the custom configProtectedData provider in your application's web.config. Replace the keyContainerName value with the same container name of your RSA key.&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;
&lt;pre class="prettyprint"&gt;
&amp;lt;configuration&amp;gt;
  &amp;lt;configProtectedData defaultProvider=&amp;quot;MyRsaProtectedConfigurationProvider&amp;quot;&amp;gt;
    &amp;lt;providers&amp;gt;
      &amp;lt;add name=&amp;quot;MyRsaProtectedConfigurationProvider&amp;quot;
      type=&amp;quot;System.Configuration.RsaProtectedConfigurationProvider, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL&amp;quot;
      keyContainerName=&amp;quot;NetFrameworkConfigurationKey_username&amp;quot;
      useMachineContainer=&amp;quot;true&amp;quot; /&amp;gt;
    &amp;lt;/providers&amp;gt;
  &amp;lt;/configProtectedData&amp;gt;
&amp;lt;/configuration&amp;gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;You can then run the aspnet_regiis.exe tool to encrypt. For example, if you want to encrypt the connectionStrings of the WebSite1 application in the &amp;quot;Default Web Site&amp;quot; on your local computer, run the following command on your computer:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: courier new;"&gt;&lt;span style="font-family:courier new,courier,monospace;"&gt;&lt;span style="font-size: 16px;"&gt;C:\WINDOWS\Microsoft.NET\Framework\&lt;span style="color: rgb(255, 0, 0);"&gt;[.NET Framework version]&lt;/span&gt;\aspnet_regiis.exe -pe &amp;quot;connectionStrings&amp;quot; -site &amp;quot;Default Web Site&amp;quot; -app &amp;quot;/WebSite1&amp;quot;&lt;/span&gt;&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Upload your application to your DiscountASP.NET website. The server should be able to decrypt your web.config since the same RSA key is installed on the server.&lt;br /&gt;
&lt;br /&gt;
If you run into problems when using this code, please post in our &lt;strong&gt;&lt;a href="http://community.discountasp.net/"&gt;community forum&lt;/a&gt;&lt;/strong&gt;. Technical support is unable to assist with specific coding issues.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Error accessing a WCF service: "IIS specified authentication schemes 'Basic, Anonymous', but the binding only supports specification of exactly one authentication scheme..."</title>
      <link>https://support.discountasp.net/kb/a803/error-accessing-wcf-service-iis-specified-authentication-schemes-basic-anonymous.aspx</link>
      <pubDate>Wed, 21 Apr 2010 20:49:22 GMT</pubDate>
      <guid isPermaLink="false">kbarticle803</guid>
      <description>&lt;div&gt;
&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;To resolve this problem, add the following to the web.config file to disable basic authentication:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt;system.webServer&amp;gt;
&amp;nbsp; &amp;lt;security&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;authentication&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;basicAuthentication enabled=&amp;quot;false&amp;quot; /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/authentication&amp;gt;
&amp;nbsp; &amp;lt;/security&amp;gt;
&amp;lt;/system.webServer&amp;gt;&lt;/pre&gt;
&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Anonymous authentication can also be disabled using:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt;anonymousAuthentication enabled=&amp;quot;false&amp;quot; /&amp;gt;&lt;/pre&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>Error accessing a WCF service: "This collection already contains an address with scheme http. There can be at most one address per scheme in this collection."</title>
      <link>https://support.discountasp.net/kb/a799/error-accessing-wcf-service-this-collection-already-contains-an-address-with-scheme.aspx</link>
      <pubDate>Wed, 21 Apr 2010 20:43:54 GMT</pubDate>
      <guid isPermaLink="false">kbarticle799</guid>
      <description>&lt;div&gt;
&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;You can resolve this error by changing the web.config file.&lt;br /&gt;
&lt;br /&gt;
If you're using ASP.NET &lt;strong&gt;4.X&lt;/strong&gt;, add the following lines to your web.config:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt;system.serviceModel&amp;gt; 
     &amp;lt;serviceHostingEnvironment multipleSiteBindingsEnabled=&amp;quot;true&amp;quot; /&amp;gt; 
&amp;lt;/system.serviceModel&amp;gt;&lt;/pre&gt;
&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;If you're using ASP.NET &lt;strong&gt;2.0&lt;/strong&gt;/&lt;strong&gt;3.0&lt;/strong&gt;/&lt;strong&gt;3.5&lt;/strong&gt;, add the following lines to your web.config:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt;system.serviceModel&amp;gt; 
     &amp;lt;serviceHostingEnvironment&amp;gt; 
          &amp;lt;baseAddressPrefixFilters&amp;gt; 
               &amp;lt;add prefix=&amp;quot;http://www.YourHostedDomainName.com&amp;quot;/&amp;gt; 
          &amp;lt;/baseAddressPrefixFilters&amp;gt; 
     &amp;lt;/serviceHostingEnvironment&amp;gt; 
&amp;lt;/system.serviceModel&amp;gt; &lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>Changing the default ASP.NET Trust Level</title>
      <link>https://support.discountasp.net/kb/a401/changing-the-default-asp_net-trust-level.aspx</link>
      <pubDate>Tue, 25 Nov 2008 03:30:55 GMT</pubDate>
      <guid isPermaLink="false">kbarticle401</guid>
      <description>&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Most applications should run using Medium Trust. If your application requires Full Trust, you can override the trust level at the application level by adding the following to your web.config file: &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt;configuration&amp;gt;
  &amp;lt;system.web&amp;gt;
    &amp;lt;trust level=&amp;quot;Full&amp;quot; /&amp;gt;
  &amp;lt;/system.web&amp;gt;
&amp;lt;/configuration&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>How to set up custom errors for an ASP.NET application</title>
      <link>https://support.discountasp.net/kb/a350/how-to-set-up-custom-errors-for-an-asp_net-application.aspx</link>
      <pubDate>Mon, 24 Nov 2008 23:05:01 GMT</pubDate>
      <guid isPermaLink="false">kbarticle350</guid>
      <description>&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;ASP.NET has its own built-in error handling. To set up custom error handling for your ASP.NET application, you will need to modify your web.config file.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
For example, if you want to redirect all 404 errors to error404.aspx, 500 errors to error500.aspx, and all other errors to error.htm, you would update the customErrors element in your web.config as follows:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt;customErrors mode=&amp;quot;On&amp;quot; defaultRedirect=&amp;quot;error.htm&amp;quot;&amp;gt;
  &amp;lt;error statusCode=&amp;quot;500&amp;quot; redirect=&amp;quot;error500.aspx&amp;quot;/&amp;gt;
  &amp;lt;error statusCode=&amp;quot;404&amp;quot; redirect=&amp;quot;error404.aspx&amp;quot;/&amp;gt;
&amp;lt;/customErrors&amp;gt;&lt;/pre&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;CustomErrors are off by default. If you do not customize the custom error element in the web.config file, the default ASP.NET error (with debug information) will be displayed.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>How to connect an ASP.NET application to a MySQL database</title>
      <link>https://support.discountasp.net/kb/a341/how-to-connect-an-asp_net-application-to-a-mysql-database.aspx</link>
      <pubDate>Mon, 24 Nov 2008 22:46:47 GMT</pubDate>
      <guid isPermaLink="false">kbarticle341</guid>
      <description>&lt;div&gt;
&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Two different methods can be used to connect an ASP.NET application to MySQL database:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&amp;nbsp; - Using ODBC .net data provider&lt;br /&gt;
&amp;nbsp; - Using a MySQL native .NET data provider&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Both MySQL data connectors are installed on all servers.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>How to install RSA keys for web.config encryption on DiscountASP.NET servers</title>
      <link>https://support.discountasp.net/kb/a335/how-to-install-rsa-keys-for-web_config-encryption-on-discountasp_net-servers.aspx</link>
      <pubDate>Mon, 24 Nov 2008 21:52:59 GMT</pubDate>
      <guid isPermaLink="false">kbarticle335</guid>
      <description>&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&lt;em&gt;Web.config encryption only works with ASP.NET 2.0 or later.&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
ASP.NET 2.0 or later allows you to encrypt certain sections of the web.config; for example, the connectionStrings section. One encryption method is to use RSA keys. You can use the global machine-generated RSA key, but this is relatively insecure since everyone on the server has access to this key. The only secure solution is to use your own RSA keys that only your website has permissions to.&lt;br /&gt;
&lt;br /&gt;
You can generate RSA keys using the aspnet_regiis.exe tool that comes with the .NET framework. Run these commands on your local computer:&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;1. Create the RSA keys.&lt;/strong&gt; Replace the &amp;quot;username&amp;quot; part of the NetFrameworkConfigurationKey_username with your hosting account username.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family:courier new,courier,monospace;"&gt;C:\WINDOWS\Microsoft.NET\Framework\&lt;span style="color: rgb(255, 0, 0);"&gt;[.NET Framework version]&lt;/span&gt;\aspnet_regiis.exe -pc &amp;quot;NetFrameworkConfigurationKey_&lt;span style="color: rgb(255, 0, 0);"&gt;username&lt;/span&gt;&amp;quot; -exp&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;2. Export RSA keys.&lt;/strong&gt; Replace the &amp;quot;username&amp;quot; part of NetFrameworkConfigurationKey_username with your hosting account username. This will export the public/private keypair to an XML file on your C drive.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family:courier new,courier,monospace;"&gt;C:\WINDOWS\Microsoft.NET\Framework\&lt;span style="color: rgb(255, 0, 0);"&gt;[.NET Framework version]&lt;/span&gt;\aspnet_regiis.exe -px &amp;quot;NetFrameworkConfigurationKey_&lt;span style="color: rgb(255, 0, 0);"&gt;username&lt;/span&gt;&amp;quot; &amp;quot;C:\NetFrameworkConfigurationKey_&lt;span style="color: rgb(255, 0, 0);"&gt;username&lt;/span&gt;.xml&amp;quot; -pri&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Upload your RSA .xml file to your root directory then contact the DiscountASP.NET support team to get the RSA keypair installed on your webserver. We will install it in the webserver's LOCAL_MACHINE\My keystore with the appropriate access permissions for your site's ASPNET user. Make note of the NetFrameworkConfigurationKey_username container name, which you will have to use in your application for encryption/decryption.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
For more information, see &lt;a href="http://support.discountasp.net/KB/a339/how-to-encrypt-configuration-sections-your-webconfig.aspx"&gt;this Knowledge Base article&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</description>
    </item>
    <item>
      <title>How to enable ASP.NET SQL Server Session on your web application</title>
      <link>https://support.discountasp.net/kb/a334/how-to-enable-asp_net-sql-server-session-on-your-web-application.aspx</link>
      <pubDate>Mon, 24 Nov 2008 21:45:27 GMT</pubDate>
      <guid isPermaLink="false">kbarticle334</guid>
      <description>&lt;div&gt;
&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;In ASP.NET, there are 3 different modes for storing session information:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; InProc&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; StateServer&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; SQLServer&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;We support both InProc and SQLServer session. By default, ASP.NET session is stored in-process (InProc). There are benefits and drawbacks for each method.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&lt;br /&gt;
&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;InProc mode offers the fastest performance because session is stored in the IIS Worker Process. The downside of InProc session is that sessions can be lost if the worker process is recycled for any reason.&lt;br /&gt;
&lt;br /&gt;
SQL Server session on the other hands is slower than InProc, about 15-20% slower, but the session information remains persistent even after the worker process is recycled.&lt;br /&gt;
&lt;br /&gt;
You should choose a state management mode that is appropriate for your application. For example, if losing session is not acceptable, you should consider using SQL Session rather than InProc.&lt;br /&gt;
&lt;br /&gt;
To enable SQL Server Session:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&amp;nbsp; - You will need to already have a SQL database.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&lt;br /&gt;
&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&amp;nbsp; - Create a support ticket to request an installation.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&amp;nbsp; - You will receive an email as soon as the Session State database schema is created.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;&amp;nbsp; - Update your web.config file as follows:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;
&lt;pre class="prettyprint"&gt;
&amp;lt; sessionState
  mode=&amp;quot;SQLServer&amp;quot;
  allowCustomSqlDatabase = &amp;quot;true&amp;quot;
  sqlConnectionString=&amp;quot;data Source=&amp;lt;SQLSERVERNAME&amp;gt;;database=&amp;lt;SQLDATABASENAME&amp;gt;;user id=&amp;lt;SQLUSER&amp;gt;;password=&amp;lt;SQLPASSWORD&amp;gt;&amp;quot;
    cookieless=&amp;quot;false&amp;quot;
  timeout=&amp;quot;15&amp;quot;
/&amp;gt;&lt;/pre&gt;
&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Session information should be stored in your SQL database now.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;div&gt;&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;If you run into problems when using this code, please post in our &lt;a href="http://community.discountasp.net/" target="_blank"&gt;DiscountASP&amp;nbsp;community forum&lt;/a&gt;&amp;nbsp;or our &lt;a href="http://forum.everleap.com/" target="_blank"&gt;Everleap community forums&lt;/a&gt;.&amp;nbsp;Technical support is unable to assist with specific coding issues.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</description>
    </item>
    <item>
      <title>Configuration error when executing an application in a subdirectory</title>
      <link>https://support.discountasp.net/kb/a331/configuration-error-when-executing-an-application-in-a-subdirectory.aspx</link>
      <pubDate>Mon, 24 Nov 2008 21:38:03 GMT</pubDate>
      <guid isPermaLink="false">kbarticle331</guid>
      <description>&lt;div&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;If you get the following error when attempting to execute an application in a subdirectory:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&amp;nbsp;&lt;/div&gt;

&lt;div&gt;&lt;span style="font-family:courier new,courier,monospace;"&gt;&lt;span style="font-size:16px;"&gt;&lt;strong&gt;Parser Error Message:&lt;/strong&gt; It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;

&lt;div&gt;&lt;br /&gt;
&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;Your application is likely being run out of a &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: 16px;"&gt;sub&lt;/span&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: 16px;"&gt;directory&lt;/span&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt; and the &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: 16px;"&gt;sub&lt;/span&gt;&lt;span style="font-family: arial, helvetica, sans-serif; font-size: 16px;"&gt;directory&lt;/span&gt;&lt;span style="font-size:16px;"&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt; is not configured in IIS to run as an application. To resolve this error, you can create an IIS application using the Web Application Tool in Control Panel.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</description>
    </item>
  </channel>
</rss>