惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

博客园 - POLARIS

asp.net mvc 2+ extjs 3站点有时获取不了数据,导致不稳定,求解 献给所有学习控件和组件开发的读者 愿我们共同进步——献给《Programming ASP.NET 3rd. 中文版》 我是负责任的:《ASP.NET 2.0开发指南》勘误(持续更新) "千淘万漉虽辛苦,吹尽狂沙始到金"——写在《ASP.NET 2.0开发指南》正式上市之际 我是值得信赖的:《ASP.NET 2.0开发指南》开始接受预订了 撰写《ASP.NET 2.0开发指南》的非正式小结 ASP.NET 2.0书稿最新进展——开始一审 其实这不是一件值得庆幸的小事 初稿完成 Error from MSDN——No10.PasswordRecovery.UserNameTemplate 安装MSDN中文版后的乱弹 Error from MSDN——No9. Login.UserNameRequiredErrorMessage Error from MSDN——No8. Login.PasswordRequiredErrorMessage Error from MSDN——No7. Login.HelpPageIconUrl Error from MSDN——No6. Login.PasswordRecoveryIconUrl Error from MSDN——No5. Login.CreateUserIconUrl Error from MSDN——No4. Login.UserName 我走过去了,我得到了成长
Error from MSDN——No3. add subelement in membership Elemen...
POLARIS · 2005-12-19 · via 博客园 - POLARIS

1)错误页面路径:

l         ms-help://MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.NETDEVFX.v20.en/dv_ASPNETgenref/html/8423ec7f-a06d-4606-977e-a46400b2fc18.htm

l         http://msdn2.microsoft.com/en-us/library/whae3t94(en-US,VS.80).aspx

2)页面内容:

Adds a membership provider instance to the membership provider collection.

This element is new in the .NET Framework version 2.0.

<configuration> Element

<!-- SqlMembershipProvider syntax -->

<add name="string"

type="string"

connectionStringName="string"

applicationName="MyApplication"

commandTimeout

 description

 enablePasswordRetrieval="false"

 enablePasswordReset="true"

requiresQuestionAndAnswer="true"

requiresUniqueEmail="false"

passwordFormat="Hashed"

maxInvalidPasswordAttempts="5"

passwordAttemptWindow="10"

minRequiredPasswordLength

minRequiredNonalphanumericCharacters

passwordStrengthRegularExpression />

<!-- ActiveDirectoryMembershipProvider syntax -->

<add name="string"

type="string"

applicationName

attributeMapUserName="string"

attrbuteMapEmail="string"

attributeMapPasswordQuestion="string"

attributeMapPasswordAnswer="string" attributeMapFailedPasswordAnswerCount="number" attributeMapFailedPasswordAnswerTime="interval" attributeMapFailedPasswordAnswerLockoutTime="interval" clientSearchTimeout="interval"

serverSearchTimeout

connectionUserName="string"

connectionPassword="string"

connectionProtection="string"

connectionStringName="connection string identifier" enablePasswordReset="true|false"

enablePasswordRetrieval="true|false"

enableSearchMethods="true|false"

requiresQuestionAndAnswer="true|false"

maxInvalidPasswordAttempts="number"

passwordAttemptWindow="number"

commandTimeout="number"

description="string"

passwordAnswerAttemptLockoutDuration="interval"

minRequiredPasswordLength

minRequiredNonalphanumericCharacters passwordStregnthRegularExpression="string" passwordAnswerAttemptLockoutDuration="number" requiresUniqueEmail="true|false" />

3)简要说明:

以上声明代码中,部分属性的声明有误。这并不是指属性本身的错误,而是指声明代码格式。例如,属性commandTimeout description等声明中,没有包含(= "??")。