偶然在CodeProject中发现土耳其人mascix已经重写了一套使用SQLite进行用户管理的Membership Provider,原文地址:http://www.codeproject.com/KB/aspnet/SQLiteProviders.aspx
创新互联公司网站建设服务商,为中小企业提供成都做网站、网站设计服务,网站设计,绵阳服务器托管等一站式综合服务型公司,专业打造企业形象网站,让您在众多竞争对手中脱颖而出创新互联公司。
如果对SQLite本地数据库开发和数据库进行开发的过程不太了解可以参考我上一篇文章《SQLite开发准备》。
我们将mascix的代码下载到本地打开,目录中所见的ProviderSql.sql是Membership相关表的建表SQL文,我们使用SQLite Manager新建TestDatabas.sqlite数据库。当然我们也可以使用mascix在他的文章中推荐的SQLite Administrator来进行数据库的创建。
SQL文运行完,数据库中就会创建出如下六张数据表:
而mascix所写的代码的精华都在App_Code文件夹下的代码里,为了以后复用这套代码,我决定创建一个单独的C#工程命名为SQLiteProviders。
并将App_Code代码中的名称空间都修改为SQLiteProviders(这里删除了mascix.前缀,并不是忽视版权而是为了遵守代码规范)。
新建的工程需要引用:
编译后创建一个新的Web工程,修改web.config代码如下:
- connectionString="Data Source=|DataDirectory|users.sqlite;Version=3;" />
- defaultProvider="SQLiteRoleProvider"
- enabled="true"
- cacheRolesInCookie="true"
- cookieName=".ASPROLES"
- cookieTimeout="30" cookiePath="/"
- cookieRequireSSL="false"
- cookieSlidingExpiration="true"
- cookieProtection="All">
- name="SQLiteRoleProvider"
- type="SQLiteProviders.SQLiteRoleProvider"
- connectionStringName="ConnString"
- applicationName="CoolSpirit"
- writeExceptionsToEventLog="true"/>
- userIsOnlineTimeWindow="15">
- name="SQLiteMembershipProvider"
- type="SQLiteProviders.SqliteMembershipProvider"
- connectionStringName="ConnString"
- applicationName="CoolSpirit"
- enablePasswordRetrieval="false"
- enablePasswordReset="true"
- requiresQuestionAndAnswer="false"
- requiresUniqueEmail="true"
- passwordFormat="Hashed"
- writeExceptionsToEventLog="true"/>
- name="SQLiteProfileProvider"
- type="SQLiteProviders.SQLiteProfileProvider"
- connectionStringName="ConnString"
- applicationName="CoolSpirit"/>
- type="SQLiteProviders.SQLitePersonalizationProvider"
- connectionStringName="ConnString"
- applicationName="CoolSpirit"
- description="SQLite Personalization Provider"
- />
添加对SQLiteProviders项目的引用,别忘了以链接文件引用SQLite.Interop.DLL(见《SQLite开发准备》一文)然后编译Web应用程序。
编译通过后,在Visual Studio的菜单“项目”-“ASP.NET配置”,即可打开ASP.NET配置站点,在安全链接的右侧,如果能看见“使您能够设置和编辑用户、角色和对站点的访问权限。 现有用户: 0 ”的字样即代表配置成功,随后可以像ASP.NET Membership Provider一样通过登陆控件等实现系统登陆、用户注册、用户和角色管理等功能了。
分享名称:SQLite开发中的MermbershipProvider
文章位置:http://www.shufengxianlan.com/qtweb/news5/230955.html
成都网站建设公司_创新互联,为您提供自适应网站、网站内链、移动网站建设、网站维护、营销型网站建设、网站收录
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联