温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:香蕉视频网源码
当前文件:
BnVideo/com.bn388.video.BLL/admin.cs[1K,2009-6-12 11:34:38],打开代码结构图
BnVideo/com.bn388.video.BLL/admin.cs[1K,2009-6-12 11:34:38],打开代码结构图1using System; 2
using System.Data; 3
using System.Collections; 4
using System.Collections.Generic; 5
using System.Configuration; 6
using System.Web; 7
using System.Web.Security; 8
using System.Web.UI; 9
using System.Web.UI.WebControls; 10
using System.Web.UI.WebControls.WebParts; 11
using System.Web.UI.HtmlControls; 12
using com.bn388.video.Model; 13
14
namespace com.bn388.video.BLL 15
{ 16
public class admin 17
{ 18
private static com.bn388.video.IDAL.IDAL_admin admin_ = com.bn388.video.Factory.Factory_admin.select(); 19
20
public static int insert(Hashtable ht) 21
{ 22
return admin_.insert(ht); 23
} 24
25
public static int delete(string _where) 26
{ 27
return admin_.delete(_where); 28
} 29
30
public static int update(Hashtable ht, string _where) 31
{ 32
return admin_.update(ht, _where); 33
} 34
35
public static List<admin_info> dr() 36
{ 37
return admin_.dr(); 38
} 39
40
public static admin_info SingleRow(string _where) 41
{ 42
return admin_.SingleRow(_where); 43
} 44
45
public static int count(string _where) 46
{ 47
return admin_.count(_where); 48
} 49
50
} 51
} 52






}
}