0

我想使用 SQL 数据库实现自定义成员资格。我进行了很多搜索,但找不到任何好的教程。有人可以帮助我们有个好的开始吗?我正在使用带有 c# 的 asp.net。提前致谢。

4

1 回答 1

0

从下面的代码开始:

using System;    
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;

public class MyMembershipProvider: SqlMembershipProvider
{
}
于 2012-08-07T05:35:32.837 回答