I have a very small website that is used by a couple of users to share the same data in a table that they fill in. The plan is to sort this out properly very soon but for now is like that. I am just comparing the user and password input with some keys in web.config:
<configuration>
<connectionStrings>
<add name="PMIcommConnectionString" connectionString="xxxxxx />
</connectionStrings>
<appSettings>
<add key="UserName" value="xxxxxx" />
<add key="Password" value="xxxxxxx" />
<add key="Telerik.Skin" value="Windows7" />
</appSettings>
<system.web>
<customErrors mode="On" defaultRedirect="~/Error.aspx" />
<compilation debug="true" targetFramework="4.5">
<assemblies>
.........
</assemblies>
</compilation>
<httpRuntime targetFramework="4.5" />
<pages>
<controls>
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
</controls>
</pages>
<httpHandlers>
........
</httpHandlers>
<httpModules>
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
<add name="RadCompression" type="Telerik.Web.UI.RadCompression" />
</httpModules>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true">
<remove name="RadUploadModule" />
<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode" />
<remove name="RadCompression" />
<add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" />
</modules>
<handlers>
......
</handlers>
</system.webServer>
</configuration>
My question is: can such login system be used to log on two users simultaeously?