第一次用.net2.0 LOGIN登陆控件的困惑和解决方法
1、我们没有真正的服务器,我们只是租用了.net2.0 + sqlserver空间,sql数据库名是固定的。
2、空间提供商不可能给我们设定数据源或给你aspnetdb数据库权限。
3、我们没有服务器的 \windows\microsoft.net\framework\v2.x\config 权限。
已知上面三点,如果直接把本地测试好的项目传到服务器肯定会出错(因为他默认是调用\windows\microsoft.net\framework\v2.x\config ),我认为好的解决方法是把aspnetdb数据库内容全部导入自己的远程sql数据库后,再定义项目的web.config数据库连接字符串。
web.config
<?xml version="1.0"?>
<!--
注意: 除了手动编辑此文件以外,您还可以使用
web 管理工具来配置应用程序的设置。可以使用 visual studio 中的
“网站”->“asp.net 配置”选项。
设置和注释的完整列表在
machine.config.comments 中,该文件通常位于
\windows\microsoft.net\framework\v2.x\config 中
-->
<configuration xmlns="http://schemas.microsoft.com/.netconfiguration/v2.0">
<connectionstrings>
<!--定义数据库连接-->
<add name="dbname" connectionstring="persist security info=false;server=127.0.0.1;database=aspnetdb;uid=sa;pwd=123;pooling=true"/>
</connectionstrings>
<appsettings>
</appsettings>
<system.web>
<!--
connectionstringname 数据库连接。这个要在web.config设置
enablepasswordretrieval 获得一个值,指示当前成员资格提供程序是否配置为允许用户检索其密码。
enablepasswordreset 获得一个值,指示当前成员资格提供程序是否配置为允许用户重置其密码。
requiresquestionandanswer 获取一个值,该值指示默认成员资格提供程序是否要求用户在进行密码重置和检索时回答密码提示问题。
applicationname 获取或设置应用程序的名称。
requiresuniqueemail 指示用户在创建用户时是否必须提供唯一的电子邮件地址值。
passwordformat 指示在成员资格数据存储区中存储密码的格式。下面有详细说明
maxinvalidpasswordattempts 获取锁定成员资格用户前允许的无效密码或无效密码提示问题答案尝试次数。
minrequiredpasswordlength 获取密码所要求的最小长度。
minrequirednonalphanumericcharacters 获取有效密码中必须包含的最少特殊字符数。
passwordattemptwindow 获取在锁定成员资格用户之前允许的最大无效密码或无效密码提示问题答案尝试次数的分钟数。
对passwordformat 的详细说明
属性指示存储密码的格式。密码可以采用 clear、encrypted 和 hashed 密码格式存储。clear 密码以明文形式存储,这可以提高存储和检索密码的性能,但安全性较差,当数据源安全性受到威胁时此类密码很容易被读取。encrypted 密码在存储时进行了加密,可以在比较或检索密码时进行解密。此类密码在存储和检索时需要进行额外的处理,但比较安全,在数据源的安全性受到威胁时不容易被获取。hashed 密码在存储到数据库时使用单向哈希算法和随机生成的 salt 值进行哈希处理。在验证某一密码时,将用数据库中的 salt 值对该密码进行哈希计算以进行验证。无法检索哈希密码。
-->
<rolemanager enabled="true" />
<membership>
<providers>
<remove name="aspnetsqlmembershipprovider"/>
<add name="aspnetsqlmembershipprovider"
type=" system.web.security.sqlmembershipprovider, system.web, version=2.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a"
connectionstringname="dbname"
enablepasswordretrieval="false"
enablepasswordreset="true"
requiresquestionandanswer="true"
applicationname="/"
requiresuniqueemail="false"
passwordformat="hashed"
maxinvalidpasswordattempts="5"
minrequiredpasswordlength="6"
minrequirednonalphanumericcharacters="0"
passwordattemptwindow="10"
passwordstrengthregularexpression="" />
</providers>
</membership>
<!--
设置 compilation debug="true" 可将调试符号插入
已编译的页面中。但由于这会
影响性能,因此只应在开发过程中设置
此值。
visual basic 选项:
设置 strict="true" 将禁止所有会导致
数据丢失的类型转换。
设置 explicit="true" 将强制声明所有变量。
-->
<compilation debug="true" strict="false" explicit="true"/>
<pages>
<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>
<!--
通过 <authentication> 节可以配置 asp.net 使用的
安全身份验证模式,
以标识传入的用户。
-->
<authentication mode="forms" />
<!--
如果在执行请求的过程中出现未处理的错误,
则通过 <customerrors> 节可以配置相应的处理步骤。具体说来,
开发人员通过该节可以配置
要显示的 html 错误页
以代替错误堆栈跟踪。
<customerrors mode="remoteonly" defaultredirect="genericerrorpage.htm">
<error statuscode="403" redirect="noaccess.htm" />
<error statuscode="404" redirect="filenotfound.htm" />
</customerrors>
-->
</system.web>
</configuration>
注:membership节点的那个注释是转载的,忘了地址了。
上一篇: Android状态栏的适配汇总