Imar, once again thanks. I am checking your aspnetdb.mdf single database tables. The appointment data is populated but not the users and memberships table. They continue empty no matter how many new users and roles I declare in the application. I know the missing information is stored somewhere as I told you in my earlier note.
My web.config looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<appSettings>
<remove key="BookingObjectNameSingular" />
<add key="BookingObjectNameSingular" value="Conference Room" />
<remove key="BookingObjectNamePlural" />
<add key="BookingObjectNamePlural" value="Conference Rooms" />
<remove key="RequireCommentsInRequest" />
<add key="RequireCommentsInRequest" value="True" />
<remove key="FirstAvailableWorkingHour" />
<add key="FirstAvailableWorkingHour" value="7" />
<remove key="LastAvailableWorkingHour" />
<add key="LastAvailableWorkingHour" value="23" />
</appSettings>
<connectionStrings>
<remove name="ReservaUCA" />
<add connectionString="Server=(local)\Sqlexpress;Databa se=ReservaUCA;Integrated Security=true" name="ReservaUCA" />
</connectionStrings>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
Visual Basic options:
Set strict="true" to disallow all data type conversions
where data loss can occur.
Set explicit="true" to force declaration of all variables.
-->
<authorization>
<allow roles="Administrators" />
</authorization>
<trace localOnly="false" pageOutput="true" requestLimit="20" />
<roleManager enabled="true" />
<pages theme="AppointmentBooking">
<namespaces>
<clear />
<add namespace="System" />
<add namespace="System.Collections" />
<add namespace="System.Collections.Specialized" />
<add namespace="System.Configuration" />
<add namespace="System.Text" />
<add namespace="System.Text.RegularExpressions" />
<add namespace="System.Web" />
<add namespace="System.Web.Caching" />
<add namespace="System.Web.SessionState" />
<add namespace="System.Web.Security" />
<add namespace="System.Web.Profile" />
<add namespace="System.Web.UI" />
<add namespace="System.Web.UI.WebControls" />
<add namespace="System.Web.UI.WebControls.WebParts" />
<add namespace="System.Web.UI.HtmlControls" />
</namespaces>
</pages>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" />
</authentication>
<!-- The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
-->
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
</system.web>
<location path="Management">
<system.web>
<authorization>
<allow roles="managers" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="CreateAppointment.aspx">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
<location path="CheckAvailability.aspx">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>
<system.net>
<mailSettings>
<smtp from="
[email protected]">
<network host="mailhost.ibw.com.ni" password="" userName="" />
</smtp>
</mailSettings>
</system.net>
</configuration>