28 lines
630 B
C#
28 lines
630 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Web.UI;
|
|
using CKS.FormsBasedAuthentication;
|
|
|
|
namespace Taloyhtio.CustomFBADataSource
|
|
{
|
|
public class CustomFBADataSource : FBADataSource
|
|
{
|
|
private DataSourceView view;
|
|
|
|
public CustomFBADataSource()
|
|
{
|
|
this.view = null;
|
|
}
|
|
protected override DataSourceView GetView(string viewName)
|
|
{
|
|
if (this.view == null)
|
|
{
|
|
this.view = new CustomFBAUsersView(this, viewName);
|
|
}
|
|
return this.view;
|
|
}
|
|
}
|
|
}
|