Note that there are some explanatory texts on larger screens.

plurals
  1. POasp.net configuration doesn't show my application name
    text
    copied!<p>I want to set the application name for my web app in the asp.net configuration, but nothing is working for me. It always says "Application:/". I have put quite a few hours into searching for an answer. I'm sure it's something simple (as it always is). Can someone help point it out?</p> <p>Here's my web.config...</p> <pre><code>&lt;configuration&gt; &lt;connectionStrings&gt; &lt;clear /&gt; &lt;add name="LocalSqlServer" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\AbetEvaluation.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" /&gt; &lt;add name="AbetConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\AbetEvaluation.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" /&gt; &lt;/connectionStrings&gt; &lt;system.web&gt; &lt;compilation debug="true" targetFramework="4.0" /&gt; &lt;authentication mode="Forms"&gt; &lt;forms loginUrl="~/Login.aspx" /&gt; &lt;/authentication&gt; &lt;authorization&gt; &lt;allow users="*" /&gt; &lt;/authorization&gt; &lt;membership defaultProvider="AbetMembershipProvider"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="AbetMembershipProvider" type="System.Web.Security.SqlMembershipProvider" applicationName="/AbetEvaluation" connectionStringName="AbetConnectionString" requiresQuestionAndAnswer="false" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" requiresUniqueEmail="true" passwordFormat="Clear" /&gt; &lt;/providers&gt; &lt;/membership&gt; &lt;roleManager enabled="true" defaultProvider="AbetRoleProvider"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="AbetRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="AbetConnectionString" applicationName="/AbetEvaluation" /&gt; &lt;/providers&gt; &lt;/roleManager&gt; &lt;siteMap defaultProvider="XmlSiteMapProvider" enabled="true"&gt; &lt;providers&gt; &lt;add name="XmlSiteMapProvider" description="Default SiteMap provider." type="System.Web.XmlSiteMapProvider" siteMapFile="Web.sitemap" securityTrimmingEnabled="true" /&gt; &lt;/providers&gt; &lt;/siteMap&gt; &lt;/system.web&gt; </code></pre> <p></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload