Changeset 4729 for branches/WebApplication/MVC2
- Timestamp:
- 11/06/10 12:44:27 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Account/ChangePassword.aspx
r4604 r4729 1 <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<H euristicLabWeb.PluginHost.Models.ChangePasswordModel>" %>1 <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HLWebPluginHost.Models.ChangePasswordModel>" %> 2 2 3 3 <asp:Content ID="changePasswordTitle" ContentPlaceHolderID="TitleContent" runat="server"> -
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Account/LogOn.aspx
r4604 r4729 1 <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<H euristicLabWeb.PluginHost.Models.LogOnModel>" %>1 <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HLWebPluginHost.Models.LogOnModel>" %> 2 2 3 3 <asp:Content ID="loginTitle" ContentPlaceHolderID="TitleContent" runat="server"> … … 19 19 <div class="editor-label"> 20 20 <%: Html.LabelFor(m => m.UserName) %> 21 </div> 21 </div> 22 22 <div class="editor-field"> 23 23 <%: Html.TextBoxFor(m => m.UserName) %> -
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Account/Register.aspx
r4604 r4729 1 <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<H euristicLabWeb.PluginHost.Models.RegisterModel>" %>1 <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<HLWebPluginHost.Models.RegisterModel>" %> 2 2 3 3 <asp:Content ID="registerTitle" ContentPlaceHolderID="TitleContent" runat="server"> -
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Web.config
r4604 r4729 7 7 8 8 <configuration> 9 <!--Implemented--> 9 10 <connectionStrings> 10 <add name="ApplicationServices" 11 connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" 12 providerName="System.Data.SqlClient" /> 11 <add name="HeuristicLab.Authentication" 12 connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/> 13 13 </connectionStrings> 14 <!--ImplementedEND--> 14 15 15 16 <system.web> … … 26 27 </authentication> 27 28 28 < membership>29 <!--<membership> 29 30 <providers> 30 31 <clear/> … … 34 35 applicationName="/" /> 35 36 </providers> 36 </membership> 37 </membership>--> 37 38 38 39 <profile> … … 43 44 </profile> 44 45 45 < roleManager enabled="false">46 <!--<roleManager enabled="false"> 46 47 <providers> 47 48 <clear/> … … 49 50 <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" /> 50 51 </providers> 51 </roleManager> 52 </roleManager>--> 52 53 53 54 <pages> … … 59 60 </namespaces> 60 61 </pages> 62 <!--Implemented--> 63 <membership defaultProvider="AspNetSqlMembershipProvider"> 64 <providers> 65 <clear/> 66 <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" 67 enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" 68 maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" 69 applicationName="HeuristicLab.Authentication" /> 70 </providers> 71 </membership> 72 73 <roleManager enabled="true"> 74 <providers> 75 <clear/> 76 <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" /> 77 </providers> 78 </roleManager> 79 80 <!--ImplementedEND--> 81 82 61 83 </system.web> 62 84
Note: See TracChangeset
for help on using the changeset viewer.