commit 4aac4386f93590e4fe819c8d1115825bced1b6f6 Author: editor <@51Aspx.com> Date: Mon Jul 31 20:03:30 2023 +0800 初始化 diff --git a/51aspx源码必读.txt b/51aspx源码必读.txt new file mode 100644 index 0000000..175f4c4 --- /dev/null +++ b/51aspx源码必读.txt @@ -0,0 +1,28 @@ +香蕉视频网源码 + +香蕉视频网源码使用VS2008+ACCESS+SQLSERVER2005+MYSQL5开发,实现工厂三层结构,全站生成静态shtml,后台对视频文件的管理。实现FLV,WMV,RM等视频格式的播放。后台实现自动屏蔽恶意访问后台的IP。支持ACCESS,SQLSERVER,MYSQL三种数据库(MYSQL需另外下载相关的ODBC)。本程序仅供学习交流之用 任何个人或团队不得用与商业用途,当然你可以自由地使用或者修改本程序,如有疑问请联系作者 +前台路径:default.shtml后台路径:admin/Default.aspx数据库路径:App_Data/默认管理员:  51aspx密码: 51aspx +后话:2年半前写的程序了,数据结构十分简单!算是早期视频网站的例子了,完全是入门级程序。个人认为,在共享视频满天飞的现在,这种网站确实是没存在意思,而且当初只有那么8000条视频数据确实也是个问题,还是共享的好啊~~。然后,因为无聊,开发了非静态的Java版本。现在把这个程序简单地转成了VS2008,顺便去掉了在线转换FLV这个功能,主要是因为没主机的执行权限,放在后台太占位置了。好了,废话到此为止!因为考虑到IIS6默认是不能请求FLV的,所以要在IIS6里面添加一个MIME类型!这样,就基本没问题了。 +另外,本人接一些中小项目!.NET,JAVA,PHP的,都会做!大家需要的话请联系我! + + +作者: abc6966022 + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/BnVideo +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/com.bn388.DBHelper/Connect.cs b/com.bn388.DBHelper/Connect.cs new file mode 100644 index 0000000..b75a789 --- /dev/null +++ b/com.bn388.DBHelper/Connect.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.DBHelper +{ + public class Connect + { + public static string connstring = System.Configuration.ConfigurationManager.AppSettings["connstring"]; + } +} diff --git a/com.bn388.DBHelper/MsSqlHelper.cs b/com.bn388.DBHelper/MsSqlHelper.cs new file mode 100644 index 0000000..00395b0 --- /dev/null +++ b/com.bn388.DBHelper/MsSqlHelper.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +//该源码下载自www.51aspx.com(51aspx.com) +namespace com.bn388.DBHelper +{ + public class MsSqlHelper + { + private static SqlConnection conn; + private static SqlCommand cmd; + private static SqlDataReader reader; + private static SqlDataAdapter da; diff --git a/com.bn388.DBHelper/OdbcHelper.cs b/com.bn388.DBHelper/OdbcHelper.cs new file mode 100644 index 0000000..a088396 --- /dev/null +++ b/com.bn388.DBHelper/OdbcHelper.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.DBHelper +{ + public class OdbcHelper + { + private static OdbcConnection conn; + private static OdbcCommand cmd; + private static OdbcDataReader reader; + private static OdbcDataAdapter da; diff --git a/com.bn388.DBHelper/OleDbHelper.cs b/com.bn388.DBHelper/OleDbHelper.cs new file mode 100644 index 0000000..ba771d6 --- /dev/null +++ b/com.bn388.DBHelper/OleDbHelper.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.DBHelper +{ + public class OleDbHelper + { + private static OleDbConnection conn; + private static OleDbCommand cmd; + private static OleDbDataReader reader; + private static OleDbDataAdapter da; diff --git a/com.bn388.DBHelper/Properties/AssemblyInfo.cs b/com.bn388.DBHelper/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.DBHelper/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.DBHelper/com.bn388.DBHelper.csproj b/com.bn388.DBHelper/com.bn388.DBHelper.csproj new file mode 100644 index 0000000..1888c87 --- /dev/null +++ b/com.bn388.DBHelper/com.bn388.DBHelper.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {6F8B779C-D540-47B9-9A7D-9CE7AA2F307B} + Library + Properties + com.bn388.DBHelper + com.bn388.DBHelper + + + 2.0 + diff --git a/com.bn388.DBHelper/obj/DBHelper.csproj.FileList.txt b/com.bn388.DBHelper/obj/DBHelper.csproj.FileList.txt new file mode 100644 index 0000000..5bfebb1 --- /dev/null +++ b/com.bn388.DBHelper/obj/DBHelper.csproj.FileList.txt @@ -0,0 +1,6 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\AspNetPager.dll +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.DBHelper.pdb +obj\Debug\net.pnqq.DBHelper.dll +obj\Debug\net.pnqq.DBHelper.pdb diff --git a/com.bn388.DBHelper/obj/DataAccess.csproj.FileList.txt b/com.bn388.DBHelper/obj/DataAccess.csproj.FileList.txt new file mode 100644 index 0000000..1bf5607 --- /dev/null +++ b/com.bn388.DBHelper/obj/DataAccess.csproj.FileList.txt @@ -0,0 +1,7 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\DataAccess.dll +bin\Debug\DataAccess.pdb +obj\Debug\DataAccess.dll +obj\Debug\DataAccess.pdb +bin\Debug\AspNetPager.dll +bin\Debug\MySQLDriverCS.dll diff --git a/com.bn388.DBHelper/obj/Debug/com.bn388.DBHelper.csproj.FileListAbsolute.txt b/com.bn388.DBHelper/obj/Debug/com.bn388.DBHelper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..19edd3e --- /dev/null +++ b/com.bn388.DBHelper/obj/Debug/com.bn388.DBHelper.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.DBHelper\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.DBHelper\bin\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.DBHelper\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.DBHelper\obj\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.DBHelper\obj\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.DBHelper\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.DBHelper\bin\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.DBHelper\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.DBHelper\obj\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.DBHelper\obj\Debug\com.bn388.DBHelper.pdb diff --git a/com.bn388.DBHelper/obj/net.pnqq.DBHelper.csproj.FileList.txt b/com.bn388.DBHelper/obj/net.pnqq.DBHelper.csproj.FileList.txt new file mode 100644 index 0000000..d0df189 --- /dev/null +++ b/com.bn388.DBHelper/obj/net.pnqq.DBHelper.csproj.FileList.txt @@ -0,0 +1,7 @@ +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.DBHelper.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\net.pnqq.DBHelper.dll +obj\Debug\net.pnqq.DBHelper.pdb +bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll +bin\Debug\Microsoft.Practices.EnterpriseLibrary.Data.dll diff --git a/com.bn388.DBHelper/obj/net.pnqq.DBHelper.csproj.FileListAbsolute.txt b/com.bn388.DBHelper/obj/net.pnqq.DBHelper.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f03a6ba --- /dev/null +++ b/com.bn388.DBHelper/obj/net.pnqq.DBHelper.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.DBHelper\bin\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.DBHelper\bin\Debug\net.pnqq.DBHelper.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.DBHelper\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.DBHelper\obj\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.DBHelper\obj\Debug\net.pnqq.DBHelper.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.DBHelper\bin\Debug\AspNetPager.dll +D:\web\net.pnqq.video\net.pnqq.DBHelper\bin\Debug\net.pnqq.DBHelper.dll +D:\web\net.pnqq.video\net.pnqq.DBHelper\bin\Debug\net.pnqq.DBHelper.pdb +D:\web\net.pnqq.video\net.pnqq.DBHelper\bin\Debug\AspNetPager.dll +D:\web\net.pnqq.video\net.pnqq.DBHelper\obj\Debug\ResolveAssemblyReference.cache +D:\web\net.pnqq.video\net.pnqq.DBHelper\obj\Debug\net.pnqq.DBHelper.dll +D:\web\net.pnqq.video\net.pnqq.DBHelper\obj\Debug\net.pnqq.DBHelper.pdb diff --git a/com.bn388.DBHelper/sqltext.cs b/com.bn388.DBHelper/sqltext.cs new file mode 100644 index 0000000..f0c641f --- /dev/null +++ b/com.bn388.DBHelper/sqltext.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; + +//该源码下载自www.51aspx.com(51aspx.com) + +namespace com.bn388.DBHelper +{ + public class sqltext + { + public static string insert(Hashtable ht, string table) + { + string keys = ""; + string values = ""; diff --git a/com.bn388.video.BLL/Properties/AssemblyInfo.cs b/com.bn388.video.BLL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.BLL/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.BLL/admin.cs b/com.bn388.video.BLL/admin.cs new file mode 100644 index 0000000..85213a7 --- /dev/null +++ b/com.bn388.video.BLL/admin.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using com.bn388.video.Model; + +namespace com.bn388.video.BLL +{ diff --git a/com.bn388.video.BLL/class_.cs b/com.bn388.video.BLL/class_.cs new file mode 100644 index 0000000..85213a7 --- /dev/null +++ b/com.bn388.video.BLL/class_.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using com.bn388.video.Model; + +namespace com.bn388.video.BLL +{ diff --git a/com.bn388.video.BLL/com.bn388.video.BLL.csproj b/com.bn388.video.BLL/com.bn388.video.BLL.csproj new file mode 100644 index 0000000..fcf0b2b --- /dev/null +++ b/com.bn388.video.BLL/com.bn388.video.BLL.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {BEEE4834-2412-424F-9524-A8ED008FBE93} + Library + Properties + com.bn388.video.BLL + com.bn388.video.BLL + + + 2.0 + diff --git a/com.bn388.video.BLL/err.cs b/com.bn388.video.BLL/err.cs new file mode 100644 index 0000000..85213a7 --- /dev/null +++ b/com.bn388.video.BLL/err.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using com.bn388.video.Model; + +namespace com.bn388.video.BLL +{ diff --git a/com.bn388.video.BLL/guest.cs b/com.bn388.video.BLL/guest.cs new file mode 100644 index 0000000..85213a7 --- /dev/null +++ b/com.bn388.video.BLL/guest.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using com.bn388.video.Model; + +namespace com.bn388.video.BLL +{ diff --git a/com.bn388.video.BLL/link.cs b/com.bn388.video.BLL/link.cs new file mode 100644 index 0000000..85213a7 --- /dev/null +++ b/com.bn388.video.BLL/link.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using com.bn388.video.Model; + +namespace com.bn388.video.BLL +{ diff --git a/com.bn388.video.BLL/obj/Debug/com.bn388.video.BLL.csproj.FileListAbsolute.txt b/com.bn388.video.BLL/obj/Debug/com.bn388.video.BLL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b71708f --- /dev/null +++ b/com.bn388.video.BLL/obj/Debug/com.bn388.video.BLL.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.BLL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.BLL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.Factory.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.DAL_MySql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.DAL_MsSql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.DAL_Access.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.DAL_MySql.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.Factory.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.video.DAL_MsSql.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.BLL\bin\Debug\com.bn388.DBHelper.pdb diff --git a/com.bn388.video.BLL/obj/net.pnqq.video.BLL.csproj.FileList.txt b/com.bn388.video.BLL/obj/net.pnqq.video.BLL.csproj.FileList.txt new file mode 100644 index 0000000..b269594 --- /dev/null +++ b/com.bn388.video.BLL/obj/net.pnqq.video.BLL.csproj.FileList.txt @@ -0,0 +1,15 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\net.pnqq.video.BLL.dll +bin\Debug\net.pnqq.video.BLL.pdb +bin\Debug\AspNetPager.dll +bin\Debug\net.pnqq.video.Factory.dll +bin\Debug\net.pnqq.video.IData.dll +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\net.pnqq.video.DAL_MySql.dll +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.video.DAL_MsSql.dll +bin\Debug\net.pnqq.video.DAL_Access.dll +bin\Debug\net.pnqq.video.Model.pdb +bin\Debug\net.pnqq.video.DAL_MySql.pdb +bin\Debug\net.pnqq.DBHelper.pdb +bin\Debug\net.pnqq.video.IData.pdb diff --git a/com.bn388.video.BLL/obj/net.pnqq.video.BLL.csproj.FileListAbsolute.txt b/com.bn388.video.BLL/obj/net.pnqq.video.BLL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ef99d28 --- /dev/null +++ b/com.bn388.video.BLL/obj/net.pnqq.video.BLL.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\obj\Debug\net.pnqq.video.BLL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.BLL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.BLL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\AspNetPager.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.Factory.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.DAL_Access.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.DAL_MySql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.DAL_MsSql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.DAL_Access.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.BLL\bin\Debug\net.pnqq.video.IDAL.pdb diff --git a/com.bn388.video.BLL/video.cs b/com.bn388.video.BLL/video.cs new file mode 100644 index 0000000..85213a7 --- /dev/null +++ b/com.bn388.video.BLL/video.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using com.bn388.video.Model; + +namespace com.bn388.video.BLL +{ diff --git a/com.bn388.video.DAL_Access/Properties/AssemblyInfo.cs b/com.bn388.video.DAL_Access/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.DAL_Access/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.DAL_Access/_common.cs b/com.bn388.video.DAL_Access/_common.cs new file mode 100644 index 0000000..b256b72 --- /dev/null +++ b/com.bn388.video.DAL_Access/_common.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using System.Configuration; +using System.Data; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class _common + { + private static string sql; + diff --git a/com.bn388.video.DAL_Access/admin.cs b/com.bn388.video.DAL_Access/admin.cs new file mode 100644 index 0000000..adaa0fc --- /dev/null +++ b/com.bn388.video.DAL_Access/admin.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class admin : com.bn388.video.IDAL.IDAL_admin + { + private static string sql; + private static string table = "admin"; diff --git a/com.bn388.video.DAL_Access/class_.cs b/com.bn388.video.DAL_Access/class_.cs new file mode 100644 index 0000000..e1d0161 --- /dev/null +++ b/com.bn388.video.DAL_Access/class_.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class class_ : com.bn388.video.IDAL.IDAL_class + { + private static string sql; + private static string table = "class"; diff --git a/com.bn388.video.DAL_Access/com.bn388.video.DAL_Access.csproj b/com.bn388.video.DAL_Access/com.bn388.video.DAL_Access.csproj new file mode 100644 index 0000000..09a9615 --- /dev/null +++ b/com.bn388.video.DAL_Access/com.bn388.video.DAL_Access.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {B928E4DE-1643-439C-B7C7-C9FCC0FBB842} + Library + Properties + com.bn388.video.DAL_Access + com.bn388.video.DAL_Access + + + 2.0 + diff --git a/com.bn388.video.DAL_Access/err.cs b/com.bn388.video.DAL_Access/err.cs new file mode 100644 index 0000000..63ed855 --- /dev/null +++ b/com.bn388.video.DAL_Access/err.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class err : com.bn388.video.IDAL.IDAL_err + { + private static string sql; + private static string table = "err"; diff --git a/com.bn388.video.DAL_Access/guest.cs b/com.bn388.video.DAL_Access/guest.cs new file mode 100644 index 0000000..174d24b --- /dev/null +++ b/com.bn388.video.DAL_Access/guest.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class guest : com.bn388.video.IDAL.IDAL_guest + { + private static string sql; + private static string table = "guest"; diff --git a/com.bn388.video.DAL_Access/link.cs b/com.bn388.video.DAL_Access/link.cs new file mode 100644 index 0000000..6f0bcab --- /dev/null +++ b/com.bn388.video.DAL_Access/link.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class link : com.bn388.video.IDAL.IDAL_link + { + private static string sql; + private static string table = "link"; diff --git a/com.bn388.video.DAL_Access/obj/DAL_Access.csproj.FileList.txt b/com.bn388.video.DAL_Access/obj/DAL_Access.csproj.FileList.txt new file mode 100644 index 0000000..f0b4c41 --- /dev/null +++ b/com.bn388.video.DAL_Access/obj/DAL_Access.csproj.FileList.txt @@ -0,0 +1,12 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\pnqq.DAL_Access.dll +bin\Debug\pnqq.DAL_Access.pdb +bin\Debug\AspNetPager.dll +bin\Debug\pnqq.IData.dll +bin\Debug\pnqq.Model.dll +bin\Debug\pnqq.Model.pdb +bin\Debug\pnqq.IData.pdb +obj\Debug\pnqq.DAL_Access.dll +obj\Debug\pnqq.DAL_Access.pdb +bin\Debug\pnqq.DBHelper.dll +bin\Debug\pnqq.DBHelper.pdb diff --git a/com.bn388.video.DAL_Access/obj/Debug/com.bn388.video.DAL_Access.csproj.FileListAbsolute.txt b/com.bn388.video.DAL_Access/obj/Debug/com.bn388.video.DAL_Access.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..77d9993 --- /dev/null +++ b/com.bn388.video.DAL_Access/obj/Debug/com.bn388.video.DAL_Access.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.DAL_Access.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.DAL_Access.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\obj\Debug\com.bn388.video.DAL_Access.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_Access\obj\Debug\com.bn388.video.DAL_Access.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.DAL_Access.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.DAL_Access.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_Access\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_Access\bin\Debug\com.bn388.video.IDAL.dll diff --git a/com.bn388.video.DAL_Access/obj/net.pnqq.video.DAL_Access.csproj.FileList.txt b/com.bn388.video.DAL_Access/obj/net.pnqq.video.DAL_Access.csproj.FileList.txt new file mode 100644 index 0000000..c0b234a --- /dev/null +++ b/com.bn388.video.DAL_Access/obj/net.pnqq.video.DAL_Access.csproj.FileList.txt @@ -0,0 +1,11 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\net.pnqq.video.DAL_Access.dll +bin\Debug\net.pnqq.video.DAL_Access.pdb +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.video.IData.dll +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\net.pnqq.video.Model.pdb +bin\Debug\net.pnqq.video.IData.pdb +bin\Debug\net.pnqq.DBHelper.pdb +obj\Debug\net.pnqq.video.DAL_Access.dll +obj\Debug\net.pnqq.video.DAL_Access.pdb diff --git a/com.bn388.video.DAL_Access/obj/net.pnqq.video.DAL_Access.csproj.FileListAbsolute.txt b/com.bn388.video.DAL_Access/obj/net.pnqq.video.DAL_Access.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5b93a0c --- /dev/null +++ b/com.bn388.video.DAL_Access/obj/net.pnqq.video.DAL_Access.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\obj\Debug\net.pnqq.video.DAL_Access.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.DAL_Access.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.DAL_Access.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.IDAL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.DBHelper.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_Access\obj\Debug\net.pnqq.video.DAL_Access.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.DAL_Access.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.DAL_Access.pdb +D:\web\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.DBHelper.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_Access\bin\Debug\net.pnqq.video.IDAL.dll diff --git a/com.bn388.video.DAL_Access/video.cs b/com.bn388.video.DAL_Access/video.cs new file mode 100644 index 0000000..7d89782 --- /dev/null +++ b/com.bn388.video.DAL_Access/video.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.OleDb; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_Access +{ + public class video : com.bn388.video.IDAL.IDAL_video + { + private static string sql; + private static string table = "video"; diff --git a/com.bn388.video.DAL_MsSql/Properties/AssemblyInfo.cs b/com.bn388.video.DAL_MsSql/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.DAL_MsSql/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.DAL_MsSql/_common.cs b/com.bn388.video.DAL_MsSql/_common.cs new file mode 100644 index 0000000..cb313f0 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/_common.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using System.Configuration; +using System.Data; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class _common + { + private static string sql; + diff --git a/com.bn388.video.DAL_MsSql/admin.cs b/com.bn388.video.DAL_MsSql/admin.cs new file mode 100644 index 0000000..4949c73 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/admin.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class admin : com.bn388.video.IDAL.IDAL_admin + { + private static string sql; + private static string table = "admin"; diff --git a/com.bn388.video.DAL_MsSql/class_.cs b/com.bn388.video.DAL_MsSql/class_.cs new file mode 100644 index 0000000..f6918c6 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/class_.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class class_ : com.bn388.video.IDAL.IDAL_class + { + private static string sql; + private static string table = "class"; diff --git a/com.bn388.video.DAL_MsSql/com.bn388.video.DAL_MsSql.csproj b/com.bn388.video.DAL_MsSql/com.bn388.video.DAL_MsSql.csproj new file mode 100644 index 0000000..b276f27 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/com.bn388.video.DAL_MsSql.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {72306C93-63BD-436C-AAF3-F6B744E581C3} + Library + Properties + com.bn388.video.DAL_MsSql + com.bn388.video.DAL_MsSql + + + 2.0 + diff --git a/com.bn388.video.DAL_MsSql/err.cs b/com.bn388.video.DAL_MsSql/err.cs new file mode 100644 index 0000000..548406a --- /dev/null +++ b/com.bn388.video.DAL_MsSql/err.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class err : com.bn388.video.IDAL.IDAL_err + { + private static string sql; + private static string table = "err"; diff --git a/com.bn388.video.DAL_MsSql/guest.cs b/com.bn388.video.DAL_MsSql/guest.cs new file mode 100644 index 0000000..7274e39 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/guest.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class guest : com.bn388.video.IDAL.IDAL_guest + { + private static string sql; + private static string table = "guest"; diff --git a/com.bn388.video.DAL_MsSql/link.cs b/com.bn388.video.DAL_MsSql/link.cs new file mode 100644 index 0000000..c817e4c --- /dev/null +++ b/com.bn388.video.DAL_MsSql/link.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class link : com.bn388.video.IDAL.IDAL_link + { + private static string sql; + private static string table = "link"; diff --git a/com.bn388.video.DAL_MsSql/obj/DAL.csproj.FileList.txt b/com.bn388.video.DAL_MsSql/obj/DAL.csproj.FileList.txt new file mode 100644 index 0000000..31c0382 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/obj/DAL.csproj.FileList.txt @@ -0,0 +1,10 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\pnqq.DAL.dll +bin\Debug\pnqq.DAL.pdb +bin\Debug\AspNetPager.dll +bin\Debug\DataAccess.dll +bin\Debug\pnqq.Model.dll +bin\Debug\pnqq.Model.pdb +bin\Debug\DataAccess.pdb +obj\Debug\pnqq.DAL.dll +obj\Debug\pnqq.DAL.pdb diff --git a/com.bn388.video.DAL_MsSql/obj/DAL_MsSql.csproj.FileList.txt b/com.bn388.video.DAL_MsSql/obj/DAL_MsSql.csproj.FileList.txt new file mode 100644 index 0000000..3e0c720 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/obj/DAL_MsSql.csproj.FileList.txt @@ -0,0 +1,12 @@ +bin\Debug\pnqq.DAL_MsSql.dll +bin\Debug\pnqq.DAL_MsSql.pdb +bin\Debug\AspNetPager.dll +bin\Debug\pnqq.Model.dll +bin\Debug\pnqq.Model.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\pnqq.DAL_MsSql.dll +obj\Debug\pnqq.DAL_MsSql.pdb +bin\Debug\pnqq.IData.dll +bin\Debug\pnqq.IData.pdb +bin\Debug\pnqq.DBHelper.dll +bin\Debug\pnqq.DBHelper.pdb diff --git a/com.bn388.video.DAL_MsSql/obj/Debug/com.bn388.video.DAL_MsSql.csproj.FileListAbsolute.txt b/com.bn388.video.DAL_MsSql/obj/Debug/com.bn388.video.DAL_MsSql.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..bc82a95 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/obj/Debug/com.bn388.video.DAL_MsSql.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.DAL_MsSql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.DAL_MsSql.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\obj\Debug\com.bn388.video.DAL_MsSql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MsSql\obj\Debug\com.bn388.video.DAL_MsSql.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.DAL_MsSql.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.DAL_MsSql.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MsSql\bin\Debug\com.bn388.video.IDAL.dll diff --git a/com.bn388.video.DAL_MsSql/obj/net.pnqq.video.DAL_MsSql.csproj.FileList.txt b/com.bn388.video.DAL_MsSql/obj/net.pnqq.video.DAL_MsSql.csproj.FileList.txt new file mode 100644 index 0000000..7e3cc9b --- /dev/null +++ b/com.bn388.video.DAL_MsSql/obj/net.pnqq.video.DAL_MsSql.csproj.FileList.txt @@ -0,0 +1,11 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\net.pnqq.video.DAL_MsSql.dll +bin\Debug\net.pnqq.video.DAL_MsSql.pdb +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.video.IData.dll +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\net.pnqq.video.Model.pdb +bin\Debug\net.pnqq.video.IData.pdb +bin\Debug\net.pnqq.DBHelper.pdb +obj\Debug\net.pnqq.video.DAL_MsSql.dll +obj\Debug\net.pnqq.video.DAL_MsSql.pdb diff --git a/com.bn388.video.DAL_MsSql/obj/net.pnqq.video.DAL_MsSql.csproj.FileListAbsolute.txt b/com.bn388.video.DAL_MsSql/obj/net.pnqq.video.DAL_MsSql.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e703475 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/obj/net.pnqq.video.DAL_MsSql.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.DAL_MsSql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.DAL_MsSql.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.IDAL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.DBHelper.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\obj\Debug\net.pnqq.video.DAL_MsSql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MsSql\obj\Debug\net.pnqq.video.DAL_MsSql.pdb +D:\web\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.DAL_MsSql.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.DAL_MsSql.pdb +D:\web\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.DBHelper.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_MsSql\bin\Debug\net.pnqq.video.IDAL.dll diff --git a/com.bn388.video.DAL_MsSql/video.cs b/com.bn388.video.DAL_MsSql/video.cs new file mode 100644 index 0000000..7203ba3 --- /dev/null +++ b/com.bn388.video.DAL_MsSql/video.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MsSql +{ + public class video : com.bn388.video.IDAL.IDAL_video + { + private static string sql; + private static string table = "video"; diff --git a/com.bn388.video.DAL_MySql/Properties/AssemblyInfo.cs b/com.bn388.video.DAL_MySql/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.DAL_MySql/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.DAL_MySql/_common.cs b/com.bn388.video.DAL_MySql/_common.cs new file mode 100644 index 0000000..8204c09 --- /dev/null +++ b/com.bn388.video.DAL_MySql/_common.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using System.Configuration; +using System.Data; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class _common + { + private static string sql; + diff --git a/com.bn388.video.DAL_MySql/admin.cs b/com.bn388.video.DAL_MySql/admin.cs new file mode 100644 index 0000000..c183452 --- /dev/null +++ b/com.bn388.video.DAL_MySql/admin.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class admin : com.bn388.video.IDAL.IDAL_admin + { + private static string sql; + private static string table = "admin"; diff --git a/com.bn388.video.DAL_MySql/class_.cs b/com.bn388.video.DAL_MySql/class_.cs new file mode 100644 index 0000000..8734667 --- /dev/null +++ b/com.bn388.video.DAL_MySql/class_.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class class_ : com.bn388.video.IDAL.IDAL_class + { + private static string sql; + private static string table = "class"; diff --git a/com.bn388.video.DAL_MySql/com.bn388.video.DAL_MySql.csproj b/com.bn388.video.DAL_MySql/com.bn388.video.DAL_MySql.csproj new file mode 100644 index 0000000..aa548c0 --- /dev/null +++ b/com.bn388.video.DAL_MySql/com.bn388.video.DAL_MySql.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {E54D8EA3-027B-49F8-B8AB-45A21FF522B6} + Library + Properties + com.bn388.video.DAL_MySql + com.bn388.video.DAL_MySql + + + 2.0 + diff --git a/com.bn388.video.DAL_MySql/err.cs b/com.bn388.video.DAL_MySql/err.cs new file mode 100644 index 0000000..05b3b44 --- /dev/null +++ b/com.bn388.video.DAL_MySql/err.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class err : com.bn388.video.IDAL.IDAL_err + { + private static string sql; + private static string table = "err"; diff --git a/com.bn388.video.DAL_MySql/guest.cs b/com.bn388.video.DAL_MySql/guest.cs new file mode 100644 index 0000000..76a3e1f --- /dev/null +++ b/com.bn388.video.DAL_MySql/guest.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class guest : com.bn388.video.IDAL.IDAL_guest + { + private static string sql; + private static string table = "guest"; diff --git a/com.bn388.video.DAL_MySql/link.cs b/com.bn388.video.DAL_MySql/link.cs new file mode 100644 index 0000000..b199b85 --- /dev/null +++ b/com.bn388.video.DAL_MySql/link.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class link : com.bn388.video.IDAL.IDAL_link + { + private static string sql; + private static string table = "link"; diff --git a/com.bn388.video.DAL_MySql/obj/DAL_MySql.csproj.FileList.txt b/com.bn388.video.DAL_MySql/obj/DAL_MySql.csproj.FileList.txt new file mode 100644 index 0000000..6d85704 --- /dev/null +++ b/com.bn388.video.DAL_MySql/obj/DAL_MySql.csproj.FileList.txt @@ -0,0 +1,12 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\pnqq.DAL_MySql.dll +bin\Debug\pnqq.DAL_MySql.pdb +bin\Debug\AspNetPager.dll +bin\Debug\pnqq.IData.dll +bin\Debug\pnqq.Model.dll +bin\Debug\pnqq.Model.pdb +bin\Debug\pnqq.IData.pdb +obj\Debug\pnqq.DAL_MySql.dll +obj\Debug\pnqq.DAL_MySql.pdb +bin\Debug\pnqq.DBHelper.dll +bin\Debug\pnqq.DBHelper.pdb diff --git a/com.bn388.video.DAL_MySql/obj/Debug/com.bn388.video.DAL_MySql.csproj.FileListAbsolute.txt b/com.bn388.video.DAL_MySql/obj/Debug/com.bn388.video.DAL_MySql.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2c8c042 --- /dev/null +++ b/com.bn388.video.DAL_MySql/obj/Debug/com.bn388.video.DAL_MySql.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.DAL_MySql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.DAL_MySql.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\obj\Debug\com.bn388.video.DAL_MySql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.DAL_MySql\obj\Debug\com.bn388.video.DAL_MySql.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.DAL_MySql.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.DAL_MySql.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.DAL_MySql\bin\Debug\com.bn388.video.IDAL.dll diff --git a/com.bn388.video.DAL_MySql/obj/net.pnqq.video.DAL_MySql.csproj.FileList.txt b/com.bn388.video.DAL_MySql/obj/net.pnqq.video.DAL_MySql.csproj.FileList.txt new file mode 100644 index 0000000..ca79df5 --- /dev/null +++ b/com.bn388.video.DAL_MySql/obj/net.pnqq.video.DAL_MySql.csproj.FileList.txt @@ -0,0 +1,11 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\net.pnqq.video.DAL_MySql.dll +bin\Debug\net.pnqq.video.DAL_MySql.pdb +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.video.IData.dll +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\net.pnqq.video.Model.pdb +bin\Debug\net.pnqq.video.IData.pdb +bin\Debug\net.pnqq.DBHelper.pdb +obj\Debug\net.pnqq.video.DAL_MySql.dll +obj\Debug\net.pnqq.video.DAL_MySql.pdb diff --git a/com.bn388.video.DAL_MySql/obj/net.pnqq.video.DAL_MySql.csproj.FileListAbsolute.txt b/com.bn388.video.DAL_MySql/obj/net.pnqq.video.DAL_MySql.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a2b492b --- /dev/null +++ b/com.bn388.video.DAL_MySql/obj/net.pnqq.video.DAL_MySql.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.DAL_MySql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.DAL_MySql.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.IDAL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.DBHelper.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\obj\Debug\net.pnqq.video.DAL_MySql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.DAL_MySql\obj\Debug\net.pnqq.video.DAL_MySql.pdb +D:\web\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.DAL_MySql.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.DAL_MySql.pdb +D:\web\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.DBHelper.dll +D:\web\net.pnqq.video\net.pnqq.video.DAL_MySql\bin\Debug\net.pnqq.video.IDAL.dll diff --git a/com.bn388.video.DAL_MySql/video.cs b/com.bn388.video.DAL_MySql/video.cs new file mode 100644 index 0000000..ff978a9 --- /dev/null +++ b/com.bn388.video.DAL_MySql/video.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.Odbc; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; +using com.bn388.DBHelper; + +namespace com.bn388.video.DAL_MySql +{ + public class video : com.bn388.video.IDAL.IDAL_video + { + private static string sql; + private static string table = "video"; diff --git a/com.bn388.video.Factory/Factory_admin.cs b/com.bn388.video.Factory/Factory_admin.cs new file mode 100644 index 0000000..557ba1f --- /dev/null +++ b/com.bn388.video.Factory/Factory_admin.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Factory_admin + { + public static IDAL.IDAL_admin select() + { + string datasource = Select_DB.datasource; + if (datasource == "MsSql") + { + return new com.bn388.video.DAL_MsSql.admin(); + } diff --git a/com.bn388.video.Factory/Factory_class.cs b/com.bn388.video.Factory/Factory_class.cs new file mode 100644 index 0000000..6b61643 --- /dev/null +++ b/com.bn388.video.Factory/Factory_class.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Factory_class + { + public static IDAL.IDAL_class select() + { + string datasource = Select_DB.datasource; + if (datasource == "MsSql") + { + return new com.bn388.video.DAL_MsSql.class_(); + } diff --git a/com.bn388.video.Factory/Factory_err.cs b/com.bn388.video.Factory/Factory_err.cs new file mode 100644 index 0000000..d75a7b1 --- /dev/null +++ b/com.bn388.video.Factory/Factory_err.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Factory_err + { + public static IDAL.IDAL_err select() + { + string datasource = Select_DB.datasource; + if (datasource == "MsSql") + { + return new com.bn388.video.DAL_MsSql.err(); + } diff --git a/com.bn388.video.Factory/Factory_guest.cs b/com.bn388.video.Factory/Factory_guest.cs new file mode 100644 index 0000000..205dbeb --- /dev/null +++ b/com.bn388.video.Factory/Factory_guest.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Factory_guest + { + public static IDAL.IDAL_guest select() + { + string datasource = Select_DB.datasource; + if (datasource == "MsSql") + { + return new com.bn388.video.DAL_MsSql.guest(); + } diff --git a/com.bn388.video.Factory/Factory_link.cs b/com.bn388.video.Factory/Factory_link.cs new file mode 100644 index 0000000..65318ca --- /dev/null +++ b/com.bn388.video.Factory/Factory_link.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Factory_link + { + public static IDAL.IDAL_link select() + { + string datasource = Select_DB.datasource; + if (datasource == "MsSql") + { + return new com.bn388.video.DAL_MsSql.link(); + } diff --git a/com.bn388.video.Factory/Factory_video.cs b/com.bn388.video.Factory/Factory_video.cs new file mode 100644 index 0000000..04809f3 --- /dev/null +++ b/com.bn388.video.Factory/Factory_video.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Factory_video + { + public static IDAL.IDAL_video select() + { + string datasource = Select_DB.datasource; + if (datasource == "MsSql") + { + return new com.bn388.video.DAL_MsSql.video(); + } diff --git a/com.bn388.video.Factory/Properties/AssemblyInfo.cs b/com.bn388.video.Factory/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.Factory/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.Factory/Select_DB.cs b/com.bn388.video.Factory/Select_DB.cs new file mode 100644 index 0000000..3e56498 --- /dev/null +++ b/com.bn388.video.Factory/Select_DB.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Factory +{ + public class Select_DB + { + public static string datasource = System.Configuration.ConfigurationManager.AppSettings["datasource"]; + } +} diff --git a/com.bn388.video.Factory/com.bn388.video.Factory.csproj b/com.bn388.video.Factory/com.bn388.video.Factory.csproj new file mode 100644 index 0000000..a8138e9 --- /dev/null +++ b/com.bn388.video.Factory/com.bn388.video.Factory.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {98D3CD9D-3E02-4143-83AD-58186CB95D3B} + Library + Properties + com.bn388.video.Factory + com.bn388.video.Factory + + + 2.0 + diff --git a/com.bn388.video.Factory/obj/Debug/com.bn388.video.Factory.csproj.FileListAbsolute.txt b/com.bn388.video.Factory/obj/Debug/com.bn388.video.Factory.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d3fce59 --- /dev/null +++ b/com.bn388.video.Factory/obj/Debug/com.bn388.video.Factory.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.Factory.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.Factory.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.DAL_Access.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.DAL_MsSql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.DAL_MySql.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\AspNetPager.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.DBHelper.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.DAL_MySql.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.DAL_MsSql.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.DBHelper.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Factory\bin\Debug\com.bn388.video.Model.pdb diff --git a/com.bn388.video.Factory/obj/Factory.csproj.FileList.txt b/com.bn388.video.Factory/obj/Factory.csproj.FileList.txt new file mode 100644 index 0000000..9bf7897 --- /dev/null +++ b/com.bn388.video.Factory/obj/Factory.csproj.FileList.txt @@ -0,0 +1,15 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\pnqq.Factory.dll +bin\Debug\pnqq.Factory.pdb +bin\Debug\pnqq.DAL_MsSql.dll +bin\Debug\pnqq.DAL_MySql.dll +bin\Debug\pnqq.IData.dll +bin\Debug\pnqq.Model.dll +bin\Debug\AspNetPager.dll +bin\Debug\pnqq.Model.pdb +bin\Debug\pnqq.IData.pdb +bin\Debug\pnqq.DAL_MySql.pdb +bin\Debug\pnqq.DAL_MsSql.pdb +obj\Debug\pnqq.Factory.dll +obj\Debug\pnqq.Factory.pdb +bin\Debug\pnqq.DAL_Access.dll diff --git a/com.bn388.video.Factory/obj/net.pnqq.video.Factory.csproj.FileList.txt b/com.bn388.video.Factory/obj/net.pnqq.video.Factory.csproj.FileList.txt new file mode 100644 index 0000000..f9d4146 --- /dev/null +++ b/com.bn388.video.Factory/obj/net.pnqq.video.Factory.csproj.FileList.txt @@ -0,0 +1,15 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\net.pnqq.video.Factory.dll +bin\Debug\net.pnqq.video.Factory.pdb +bin\Debug\net.pnqq.video.DAL_Access.dll +bin\Debug\net.pnqq.video.DAL_MsSql.dll +bin\Debug\net.pnqq.video.DAL_MySql.dll +bin\Debug\net.pnqq.video.IData.dll +bin\Debug\net.pnqq.DBHelper.dll +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\AspNetPager.dll +bin\Debug\net.pnqq.DBHelper.pdb +bin\Debug\net.pnqq.video.Model.pdb +bin\Debug\net.pnqq.video.DAL_Access.pdb +bin\Debug\net.pnqq.video.IData.pdb +bin\Debug\net.pnqq.video.DAL_MsSql.pdb diff --git a/com.bn388.video.Factory/obj/net.pnqq.video.Factory.csproj.FileListAbsolute.txt b/com.bn388.video.Factory/obj/net.pnqq.video.Factory.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6693f17 --- /dev/null +++ b/com.bn388.video.Factory/obj/net.pnqq.video.Factory.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\obj\Debug\net.pnqq.video.Factory.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.Factory.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.Factory.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.DAL_Access.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.DAL_MsSql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.DAL_MySql.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\AspNetPager.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.DBHelper.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.IDAL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.DAL_MySql.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Factory\bin\Debug\net.pnqq.video.DAL_Access.pdb diff --git a/com.bn388.video.IDAL/IDAL_admin.cs b/com.bn388.video.IDAL/IDAL_admin.cs new file mode 100644 index 0000000..812635e --- /dev/null +++ b/com.bn388.video.IDAL/IDAL_admin.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; + +namespace com.bn388.video.IDAL +{ + public interface IDAL_admin + { + int insert(Hashtable ht); + int delete(string _where); + int update(Hashtable ht, string _where); + List dr(); + admin_info SingleRow(string _where); diff --git a/com.bn388.video.IDAL/IDAL_class.cs b/com.bn388.video.IDAL/IDAL_class.cs new file mode 100644 index 0000000..d281a69 --- /dev/null +++ b/com.bn388.video.IDAL/IDAL_class.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; + +namespace com.bn388.video.IDAL +{ + public interface IDAL_class + { + int insert(Hashtable ht); + int delete(string _where); + int update(Hashtable ht, string _where); + int count(string _where); + List dr(); diff --git a/com.bn388.video.IDAL/IDAL_err.cs b/com.bn388.video.IDAL/IDAL_err.cs new file mode 100644 index 0000000..2ec1fce --- /dev/null +++ b/com.bn388.video.IDAL/IDAL_err.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; + +namespace com.bn388.video.IDAL +{ + public interface IDAL_err + { + int insert(Hashtable ht); + int delete(string _where); + int update(Hashtable ht, string _where); + int update_(string key, string _where); + List dr(); diff --git a/com.bn388.video.IDAL/IDAL_guest.cs b/com.bn388.video.IDAL/IDAL_guest.cs new file mode 100644 index 0000000..c3cd07d --- /dev/null +++ b/com.bn388.video.IDAL/IDAL_guest.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; + +namespace com.bn388.video.IDAL +{ + public interface IDAL_guest + { + int insert(Hashtable ht); + int delete(string _where); + int update(Hashtable ht, string _where); + List ds(string top, string _where); + List ds(string top, string _where, Wuqi.Webdiyer.AspNetPager aspnetpager); diff --git a/com.bn388.video.IDAL/IDAL_link.cs b/com.bn388.video.IDAL/IDAL_link.cs new file mode 100644 index 0000000..b2814be --- /dev/null +++ b/com.bn388.video.IDAL/IDAL_link.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; + +namespace com.bn388.video.IDAL +{ + public interface IDAL_link + { + int insert(Hashtable ht); + int delete(string _where); + int update(Hashtable ht, string _where); + List dr(string _where, string order); + link_info SingleRow(string _where); diff --git a/com.bn388.video.IDAL/IDAL_video.cs b/com.bn388.video.IDAL/IDAL_video.cs new file mode 100644 index 0000000..70b6739 --- /dev/null +++ b/com.bn388.video.IDAL/IDAL_video.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Text; +using com.bn388.video.Model; + +namespace com.bn388.video.IDAL +{ + public interface IDAL_video + { + int insert(Hashtable ht); + int delete(string _where); + int update(Hashtable ht, string _where); + int update_(string key, string _where); + List dr(Wuqi.Webdiyer.AspNetPager pager, string sql); diff --git a/com.bn388.video.IDAL/Properties/AssemblyInfo.cs b/com.bn388.video.IDAL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.IDAL/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.IDAL/com.bn388.video.IDAL.csproj b/com.bn388.video.IDAL/com.bn388.video.IDAL.csproj new file mode 100644 index 0000000..3dd6be8 --- /dev/null +++ b/com.bn388.video.IDAL/com.bn388.video.IDAL.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {B4378B57-DE03-4E20-BC38-08EC60D7C84E} + Library + Properties + com.bn388.video.IDAL + com.bn388.video.IDAL + + + 2.0 + diff --git a/com.bn388.video.IDAL/obj/Debug/com.bn388.video.IDAL.csproj.FileListAbsolute.txt b/com.bn388.video.IDAL/obj/Debug/com.bn388.video.IDAL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c5b29a0 --- /dev/null +++ b/com.bn388.video.IDAL/obj/Debug/com.bn388.video.IDAL.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\obj\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.IDAL\obj\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\bin\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\bin\Debug\com.bn388.video.IDAL.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\obj\Debug\com.bn388.video.IDAL.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.IDAL\obj\Debug\com.bn388.video.IDAL.pdb diff --git a/com.bn388.video.IDAL/obj/IData.csproj.FileList.txt b/com.bn388.video.IDAL/obj/IData.csproj.FileList.txt new file mode 100644 index 0000000..d573f27 --- /dev/null +++ b/com.bn388.video.IDAL/obj/IData.csproj.FileList.txt @@ -0,0 +1,8 @@ +bin\Debug\pnqq.IData.dll +bin\Debug\pnqq.IData.pdb +bin\Debug\AspNetPager.dll +bin\Debug\pnqq.Model.dll +bin\Debug\pnqq.Model.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\pnqq.IData.dll +obj\Debug\pnqq.IData.pdb diff --git a/com.bn388.video.IDAL/obj/net.pnqq.video.IDAL.csproj.FileListAbsolute.txt b/com.bn388.video.IDAL/obj/net.pnqq.video.IDAL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e7f13a1 --- /dev/null +++ b/com.bn388.video.IDAL/obj/net.pnqq.video.IDAL.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.IDAL.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\obj\Debug\net.pnqq.video.IDAL.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.IDAL\obj\Debug\net.pnqq.video.IDAL.pdb +D:\web\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.IDAL.dll +D:\web\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.IDAL.pdb +D:\web\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.Model.dll +D:\web\net.pnqq.video\net.pnqq.video.IDAL\bin\Debug\net.pnqq.video.Model.pdb +D:\web\net.pnqq.video\net.pnqq.video.IDAL\obj\Debug\ResolveAssemblyReference.cache +D:\web\net.pnqq.video\net.pnqq.video.IDAL\obj\Debug\net.pnqq.video.IDAL.dll +D:\web\net.pnqq.video\net.pnqq.video.IDAL\obj\Debug\net.pnqq.video.IDAL.pdb diff --git a/com.bn388.video.IDAL/obj/net.pnqq.video.IData.csproj.FileList.txt b/com.bn388.video.IDAL/obj/net.pnqq.video.IData.csproj.FileList.txt new file mode 100644 index 0000000..ab04ede --- /dev/null +++ b/com.bn388.video.IDAL/obj/net.pnqq.video.IData.csproj.FileList.txt @@ -0,0 +1,7 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\net.pnqq.video.IData.dll +bin\Debug\net.pnqq.video.IData.pdb +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\net.pnqq.video.Model.pdb +obj\Debug\net.pnqq.video.IData.dll +obj\Debug\net.pnqq.video.IData.pdb diff --git a/com.bn388.video.Model/Properties/AssemblyInfo.cs b/com.bn388.video.Model/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0e6fcfa --- /dev/null +++ b/com.bn388.video.Model/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/com.bn388.video.Model/admin_info.cs b/com.bn388.video.Model/admin_info.cs new file mode 100644 index 0000000..cdec832 --- /dev/null +++ b/com.bn388.video.Model/admin_info.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Model +{ + public class admin_info + { + public int _user_id; + public string _user_name; + public string _user_pwd; + public int _super; + public string _login_time; + public string _login_ip; + diff --git a/com.bn388.video.Model/class_info.cs b/com.bn388.video.Model/class_info.cs new file mode 100644 index 0000000..aeeca78 --- /dev/null +++ b/com.bn388.video.Model/class_info.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Model +{ + public class class_info + { + public int _class_id; + public string _class_name; + public int _class_sort; + + public class_info() + { } + diff --git a/com.bn388.video.Model/com.bn388.video.Model.csproj b/com.bn388.video.Model/com.bn388.video.Model.csproj new file mode 100644 index 0000000..5489617 --- /dev/null +++ b/com.bn388.video.Model/com.bn388.video.Model.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {187B8A1F-C5E0-405D-B286-B325BD8AACAC} + Library + Properties + com.bn388.video.Model + com.bn388.video.Model + + + 2.0 + diff --git a/com.bn388.video.Model/err_info.cs b/com.bn388.video.Model/err_info.cs new file mode 100644 index 0000000..9fbbfad --- /dev/null +++ b/com.bn388.video.Model/err_info.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Model +{ + public class err_info + { + public int _err_id; + public string _err_ip; + public string _err_date; + public int _err_count; + public int _check_ip; + + public err_info() diff --git a/com.bn388.video.Model/guest_info.cs b/com.bn388.video.Model/guest_info.cs new file mode 100644 index 0000000..2f3be62 --- /dev/null +++ b/com.bn388.video.Model/guest_info.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Model +{ + public class guest_info + { + public int _guest_id; + public string _guest_name; + public string _guest_content; + public string _guest_time; + public string _guest_ip; + public int _video_id; + public string _video_name; diff --git a/com.bn388.video.Model/link_info.cs b/com.bn388.video.Model/link_info.cs new file mode 100644 index 0000000..7a8d5ff --- /dev/null +++ b/com.bn388.video.Model/link_info.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Model +{ + public class link_info + { + public int _link_id; + public string _link_name; + public string _link_img; + public string _link_url; + public int _link_type; + + public link_info() diff --git a/com.bn388.video.Model/obj/Debug/com.bn388.video.Model.csproj.FileListAbsolute.txt b/com.bn388.video.Model/obj/Debug/com.bn388.video.Model.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8bf2be6 --- /dev/null +++ b/com.bn388.video.Model/obj/Debug/com.bn388.video.Model.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Model\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Model\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Model\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Model\obj\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\com.bn388.video\com.bn388.video.Model\obj\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.Model\bin\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.Model\bin\Debug\com.bn388.video.Model.pdb +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.Model\obj\Debug\ResolveAssemblyReference.cache +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.Model\obj\Debug\com.bn388.video.Model.dll +F:\文档\程序资源\原创\NET\开源\香蕉视频网\com.bn388.video.Model\obj\Debug\com.bn388.video.Model.pdb diff --git a/com.bn388.video.Model/obj/Model.csproj.FileList.txt b/com.bn388.video.Model/obj/Model.csproj.FileList.txt new file mode 100644 index 0000000..cddc005 --- /dev/null +++ b/com.bn388.video.Model/obj/Model.csproj.FileList.txt @@ -0,0 +1,5 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\pnqq.Model.dll +bin\Debug\pnqq.Model.pdb +obj\Debug\pnqq.Model.dll +obj\Debug\pnqq.Model.pdb diff --git a/com.bn388.video.Model/obj/net.pnqq.video.Model.csproj.FileList.txt b/com.bn388.video.Model/obj/net.pnqq.video.Model.csproj.FileList.txt new file mode 100644 index 0000000..8d7dfd2 --- /dev/null +++ b/com.bn388.video.Model/obj/net.pnqq.video.Model.csproj.FileList.txt @@ -0,0 +1,5 @@ +bin\Debug\net.pnqq.video.Model.dll +bin\Debug\net.pnqq.video.Model.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\net.pnqq.video.Model.dll +obj\Debug\net.pnqq.video.Model.pdb diff --git a/com.bn388.video.Model/obj/net.pnqq.video.Model.csproj.FileListAbsolute.txt b/com.bn388.video.Model/obj/net.pnqq.video.Model.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..52db612 --- /dev/null +++ b/com.bn388.video.Model/obj/net.pnqq.video.Model.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Model\bin\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Model\bin\Debug\net.pnqq.video.Model.pdb +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Model\obj\Debug\ResolveAssemblyReference.cache +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Model\obj\Debug\net.pnqq.video.Model.dll +D:\文档\桌面\net.pnqq.video\net.pnqq.video.Model\obj\Debug\net.pnqq.video.Model.pdb +D:\web\net.pnqq.video\net.pnqq.video.Model\bin\Debug\net.pnqq.video.Model.dll +D:\web\net.pnqq.video\net.pnqq.video.Model\bin\Debug\net.pnqq.video.Model.pdb +D:\web\net.pnqq.video\net.pnqq.video.Model\obj\Debug\ResolveAssemblyReference.cache +D:\web\net.pnqq.video\net.pnqq.video.Model\obj\Debug\net.pnqq.video.Model.dll +D:\web\net.pnqq.video\net.pnqq.video.Model\obj\Debug\net.pnqq.video.Model.pdb diff --git a/com.bn388.video.Model/video_info.cs b/com.bn388.video.Model/video_info.cs new file mode 100644 index 0000000..c024e25 --- /dev/null +++ b/com.bn388.video.Model/video_info.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace com.bn388.video.Model +{ + public class video_info + { + public int _video_id; + public string _video_name; + public string _video_type; + public string _video_time; + public int _url_type; + public string _video_url; + public int _video_state; diff --git a/com.bn388.video.Web/App_Code/Fun.cs b/com.bn388.video.Web/App_Code/Fun.cs new file mode 100644 index 0000000..2194c5f --- /dev/null +++ b/com.bn388.video.Web/App_Code/Fun.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Collections.Generic; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Web.Security; +using System.Security.Cryptography; +using System.Text; +using System.IO; + diff --git a/com.bn388.video.Web/App_Code/com/bn388/video/Fun.cs b/com.bn388.video.Web/App_Code/com/bn388/video/Fun.cs new file mode 100644 index 0000000..3b1ddf0 --- /dev/null +++ b/com.bn388.video.Web/App_Code/com/bn388/video/Fun.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +namespace com.bn388.video +{ + public class Fun diff --git a/com.bn388.video.Web/App_Code/com/bn388/video/file.cs b/com.bn388.video.Web/App_Code/com/bn388/video/file.cs new file mode 100644 index 0000000..93d4faf --- /dev/null +++ b/com.bn388.video.Web/App_Code/com/bn388/video/file.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections; +using System.Collections.Generic; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.IO; +using System.Text; + +namespace com.bn388.video diff --git a/com.bn388.video.Web/App_Code/com/bn388/video/xml.cs b/com.bn388.video.Web/App_Code/com/bn388/video/xml.cs new file mode 100644 index 0000000..23bb514 --- /dev/null +++ b/com.bn388.video.Web/App_Code/com/bn388/video/xml.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Xml; + +namespace com.bn388.video +{ + public class xml + { diff --git a/com.bn388.video.Web/App_Code/read_ip.cs b/com.bn388.video.Web/App_Code/read_ip.cs new file mode 100644 index 0000000..2f51027 --- /dev/null +++ b/com.bn388.video.Web/App_Code/read_ip.cs @@ -0,0 +1,15 @@ +using System; +using System.IO; +using System.Collections; +using System.Text; +using System.Text.RegularExpressions; + +public class read_ip +{ + //私有成员 + private string dataPath; + private string ip; + private string country; + private string local; + private long firstStartIp = 0; + private long lastStartIp = 0; diff --git a/com.bn388.video.Web/App_Data/Mysql_bn388/bn388.sql b/com.bn388.video.Web/App_Data/Mysql_bn388/bn388.sql new file mode 100644 index 0000000..e249364 --- /dev/null +++ b/com.bn388.video.Web/App_Data/Mysql_bn388/bn388.sql @@ -0,0 +1,15 @@ +/* +SQLyog ��ҵ�� - MySQL GUI v5.02 +���� - 5.0.51a-community-nt : ���ݿ� - bn388 +********************************************************************* +�������汾 : 5.0.51a-community-nt +*/ + + +create database if not exists `bn388`; + +USE `bn388`; + +/*���ݱ� `admin` �ı��ṹ*/ + +DROP TABLE IF EXISTS `admin`; diff --git a/com.bn388.video.Web/App_Data/config.xml b/com.bn388.video.Web/App_Data/config.xml new file mode 100644 index 0000000..4ca4337 --- /dev/null +++ b/com.bn388.video.Web/App_Data/config.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/com.bn388.video.Web/App_Data/content.xml b/com.bn388.video.Web/App_Data/content.xml new file mode 100644 index 0000000..65a8a54 --- /dev/null +++ b/com.bn388.video.Web/App_Data/content.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/com.bn388.video.Web/Default.aspx b/com.bn388.video.Web/Default.aspx new file mode 100644 index 0000000..e2c2b92 --- /dev/null +++ b/com.bn388.video.Web/Default.aspx @@ -0,0 +1,8 @@ +<%@ Page Language="C#" %> + diff --git a/com.bn388.video.Web/MasterPage.master b/com.bn388.video.Web/MasterPage.master new file mode 100644 index 0000000..0d48b91 --- /dev/null +++ b/com.bn388.video.Web/MasterPage.master @@ -0,0 +1,15 @@ +<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %> +<%@ Register Src="ascx/loadbar.ascx" TagName="loadbar" TagPrefix="uc1" %> + + + + + + <%=com.bn388.video.xml.webname + title%> + + + + + + + diff --git a/com.bn388.video.Web/MasterPage.master.cs b/com.bn388.video.Web/MasterPage.master.cs new file mode 100644 index 0000000..b44cae8 --- /dev/null +++ b/com.bn388.video.Web/MasterPage.master.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Collections.Generic; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Web.Caching; + +public partial class MasterPage : System.Web.UI.MasterPage +{ diff --git a/com.bn388.video.Web/act.aspx b/com.bn388.video.Web/act.aspx new file mode 100644 index 0000000..d2b81d1 --- /dev/null +++ b/com.bn388.video.Web/act.aspx @@ -0,0 +1 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="act.aspx.cs" Inherits="act" %> diff --git a/com.bn388.video.Web/act.aspx.cs b/com.bn388.video.Web/act.aspx.cs new file mode 100644 index 0000000..bf7371a --- /dev/null +++ b/com.bn388.video.Web/act.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +public partial class act : System.Web.UI.Page +{ + protected void Page_Load(object sender, EventArgs e) + { diff --git a/com.bn388.video.Web/admin/Default.aspx b/com.bn388.video.Web/admin/Default.aspx new file mode 100644 index 0000000..2bb0e6b --- /dev/null +++ b/com.bn388.video.Web/admin/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="admin_Default" %> + + + + + + <%=com.bn388.video.xml.webname%>-后台登陆页面 +