温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:简单三层实现的无限级DropDownList
当前文件:
WuXianDropDownList/App_Code/BLL/Examples.cs[760B,2009-6-12 11:58:45],打开代码结构图
WuXianDropDownList/App_Code/BLL/Examples.cs[760B,2009-6-12 11:58:45],打开代码结构图1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Web; 5
using System.Web.Security; 6
using System.Web.UI; 7
using System.Web.UI.HtmlControls; 8
using System.Web.UI.WebControls; 9
using System.Web.UI.WebControls.WebParts; 10
using System.Collections.Generic; 11
//该源码下载自www.51aspx.com(51aspx.com) 12
13
namespace BLL 14
{ 15
public class Examples 16
{ 17
protected static DAL.Examples DAL_Examples = new DAL.Examples(); 18
19
public static List<Model.Examples> get_List() 20
{ 21
return DAL_Examples.get_List(); 22
} 23
24
public static List<Model.Examples> get_List(string ParentID) 25
{ 26
return DAL_Examples.get_List(ParentID); 27
} 28
29
} 30
} 31






}
}