asp.net-membership – 使用SQL提供程序获取ASP.NET成员资格的有效用户名字符

前端之家收集整理的这篇文章主要介绍了asp.net-membership – 使用SQL提供程序获取ASP.NET成员资格的有效用户名字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用sql提供程序进行ASP.NET成员身份时,用户名的有效字符是什么?

解决方法

它是除逗号(,)之外的任何字符.唯一的其他限制是您的数据库编码设置.

您可以查看sqlMembershipProvider.CreateUser方法的源,以及数据库中的aspnet_Membership_CreateUser存储过程进行验证.

编辑,进一步证据:

http://msdn.microsoft.com/en-us/library/system.web.security.sqlmembershipprovider.updateuser.aspx

[An exception is thrown if] the UserName property of user is an empty string (“”),contains a comma,or is longer than 256 characters.

原文链接:/aspnet/248972.html

猜你在找的asp.Net相关文章