master
editor 1 year ago
commit 85bc747c6e

@ -0,0 +1,45 @@
阿V咖 精品电影网站ASP.NET+SQL
电影资料网站ASP.NET 三层结构开发,可配合火车头采集软件使用。
功能:
电影下载资源发布,
分类管理
广告位管理
友情链接管理
作者: a03404826
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/Boutiquemoviewebsite
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 广告管理
/// </summary>
public class Ads
{
#region 数据库方法
private readonly dinghao.DAL.Ads dal = new dinghao.DAL.Ads();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 文章中心
/// </summary>
public class Article
{
#region 数据库方法
private readonly dinghao.DAL.Article dal = new dinghao.DAL.Article();
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 文章类别
/// </summary>
public class ArticleCategory
{
#region 数据库方法
private readonly dinghao.DAL.ArticleCategory dal = new dinghao.DAL.ArticleCategory();
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 扩展
/// </summary>
public class Attributes
{
private readonly dinghao.DAL.Attributes dal = new dinghao.DAL.Attributes();
/// <summary>
/// 当前分类下是否存在显示记录

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using System.Web.UI.WebControls;
namespace dinghao.BLL
{
/// <summary>
/// 类别业务层
/// </summary>
public class Category
{
#region 数据库方法
private readonly dinghao.DAL.Category dal = new dinghao.DAL.Category();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 评论
/// </summary>
public class Comment
{
#region 数据库方法
private readonly dinghao.DAL.Comment dal = new dinghao.DAL.Comment();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// ContractOrders
/// </summary>
public partial class ContractOrders
{
private readonly dinghao.DAL.ContractOrders dal=new dinghao.DAL.ContractOrders();
public ContractOrders()
{}

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 倒计时
/// </summary>
public class Countdown
{
private readonly dinghao.DAL.Countdown dal = new dinghao.DAL.Countdown();
/// <summary>
/// 是否存在该记录

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
public class CustomParameter
{
/// <summary>
/// 获取指定标签的参数
/// </summary>
/// <returns></returns>
public static CustomParameterInfo GetPara(string paraStr)
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 业务逻辑类:Favorites
/// </summary>
public class Favorites
{
private readonly dinghao.DAL.Favorites dal = new dinghao.DAL.Favorites();
/// <summary>
/// 是否存在该记录
/// </summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using dinghao.Utility;
namespace dinghao.BLL
{
/// <summary>
/// 文件相关操作
/// </summary>
public class Files
{
/// <summary>
/// 获取指定目录下的文件

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 帮助模块
/// </summary>
public class Help
{
#region 数据库方法
private readonly dinghao.DAL.Help dal = new dinghao.DAL.Help();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 帮助类别
/// </summary>
public class HelpCategory
{
#region 数据库方法
private readonly dinghao.DAL.HelpCategory dal = new dinghao.DAL.HelpCategory();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 热门关键字
/// </summary>
public class HotKeywords
{
private readonly dinghao.DAL.HotKeywords dal = new dinghao.DAL.HotKeywords();
/// <summary>
/// 是否存在该记录

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Drawing;
using System.IO;
using System.Collections;
using System.Diagnostics;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.BLL
{
/// <summary>
/// 图片上传相关

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 友情链接
/// </summary>
public class Link
{
#region 数据库方法
private readonly dinghao.DAL.Link dal = new dinghao.DAL.Link();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Mail;
namespace dinghao.BLL
{
/// <summary>
/// 邮件发送
/// </summary>
public class Mail
{
/// <summary>
/// 发送邮件
/// </summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.BLL
{
/// <summary>
/// 管理员信息
/// </summary>
public class Manager
{
#region 数据库方法
private readonly dinghao.DAL.Manager dal = new dinghao.DAL.Manager();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 文章中心
/// </summary>
public class Movie
{
#region 数据库方法
private readonly dinghao.DAL.Movie dal = new dinghao.DAL.Movie();
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 导航
/// </summary>
public class Nav
{
#region 方法
private readonly dinghao.DAL.Nav dal = new dinghao.DAL.Nav();
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 配送
/// </summary>
public class PayMent
{
#region 数据库方法
private readonly dinghao.DAL.PayMent dal = new dinghao.DAL.PayMent();

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("BLL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BLL")]
[assembly: AssemblyCopyright("Copyright © 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 充值业务操作
/// </summary>
public class RechargeLog
{
#region 数据库方法
private readonly dinghao.DAL.RechargeLog dal = new dinghao.DAL.RechargeLog();
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.BLL
{
/// <summary>
/// 用户业务类
/// </summary>
public class User
{
#region 数据库方法
private readonly dinghao.DAL.User dal = new dinghao.DAL.User();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 配送地址
/// </summary>
public class UserAddress
{
#region 数据库方法
private readonly dinghao.DAL.UserAddress dal = new dinghao.DAL.UserAddress();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 用户组
/// </summary>
public class UserGroup
{
#region 数据库方法
private readonly dinghao.DAL.UserGroup dal = new dinghao.DAL.UserGroup();

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.IO;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.BLL
{
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
namespace dinghao.BLL
{
/// <summary>
/// 站点信息
/// </summary>
public class WebSite
{
#region 数据库方法
private readonly dinghao.DAL.WebSite dal = new dinghao.DAL.WebSite();
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6511AB94-C362-4C38-99A7-D0FBE2E005B6}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>dinghao.BLL</RootNamespace>
<AssemblyName>dinghao.BLL</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,15 @@
F:\西华手机网\BLL\bin\Debug\TimeDo.BLL.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.BLL.pdb
F:\西华手机网\BLL\bin\Debug\TimeDo.Config.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.DAL.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.Mail.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.Model.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.Utility.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.DBUtility.dll
F:\西华手机网\BLL\bin\Debug\TimeDo.Config.pdb
F:\西华手机网\BLL\bin\Debug\TimeDo.Mail.pdb
F:\西华手机网\BLL\bin\Debug\TimeDo.Model.pdb
F:\西华手机网\BLL\bin\Debug\TimeDo.DAL.pdb
F:\西华手机网\BLL\bin\Debug\TimeDo.Utility.pdb
F:\西华手机网\BLL\bin\Debug\TimeDo.DBUtility.pdb
F:\西华手机网\BLL\obj\Debug\ResolveAssemblyReference.cache

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.BLL.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.BLL.pdb
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Config.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.DAL.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Model.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Utility.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.DBUtility.dll
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.DAL.pdb
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.DBUtility.pdb
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Mail.pdb
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Config.pdb
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Utility.pdb
G:\aspnetProject\盘龙云海\程序\BLL\bin\Debug\TimeDo.Model.pdb
G:\aspnetProject\盘龙云海\程序\BLL\obj\Debug\ResolveAssemblyReference.cache

@ -0,0 +1,15 @@
F:\宇航电脑网\BLL\bin\Debug\TimeDo.BLL.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.BLL.pdb
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Config.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.DAL.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Mail.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Model.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Utility.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.DBUtility.dll
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Config.pdb
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Mail.pdb
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Model.pdb
F:\宇航电脑网\BLL\bin\Debug\TimeDo.DAL.pdb
F:\宇航电脑网\BLL\bin\Debug\TimeDo.Utility.pdb
F:\宇航电脑网\BLL\bin\Debug\TimeDo.DBUtility.pdb
F:\宇航电脑网\BLL\obj\Debug\ResolveAssemblyReference.cache

@ -0,0 +1,15 @@
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.BLL.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.BLL.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Config.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.DAL.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Mail.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Model.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Utility.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.DBUtility.dll
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Config.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Mail.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Model.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.DAL.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.Utility.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\bin\Debug\dinghao.DBUtility.pdb
E:\新网站程序\B2C商场版\源程序新版\BLL\obj\Debug\dinghao.BLL.csprojResolveAssemblyReference.cache

@ -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.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using dinghao.Model;
using dinghao.BLL;
using dinghao.Utility;
namespace dinghao.Web.Component
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.BLL;
using dinghao.Model;
using System.Text.RegularExpressions;
using System.Collections;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using dinghao.Utility;
using dinghao.UrlRewrite;
using System.Net;
using System.IO;
using System.Text;

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using dinghao.Utility;
namespace dinghao.Web.Component
{
/// <summary>
/// 所有控件的基类
/// </summary>
public class ControlBase : UserControl
{

@ -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.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
namespace TimeDo.Web.WebPage
{
public class PageUtility
{
}

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Web.UI;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Component")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("862")]
[assembly: AssemblyProduct("Component")]
[assembly: AssemblyCopyright("Copyright © 862 2010")]
[assembly: AssemblyTrademark("")]

@ -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.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using dinghao.Model;
using dinghao.BLL;
namespace dinghao.Web.Component
{
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using dinghao.Web.Component;
using dinghao.Config;
namespace dinghao.Web.Component
{
/// <summary>
/// 动态加载用户控件(减少页面引用)
/// </summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8C808F20-8994-4670-BB4F-9CE12F9E9FD0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>dingahao.Web.Component</RootNamespace>
<AssemblyName>dingahao.Web.Component</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,15 @@
F:\西华手机网\Component\bin\Debug\TimeDo.Web.Component.dll
F:\西华手机网\Component\bin\Debug\TimeDo.Web.Component.pdb
F:\西华手机网\Component\bin\Debug\TimeDo.BLL.dll
F:\西华手机网\Component\bin\Debug\TimeDo.Config.dll
F:\西华手机网\Component\bin\Debug\TimeDo.Model.dll
F:\西华手机网\Component\bin\Debug\TimeDo.UrlRewrite.dll
F:\西华手机网\Component\bin\Debug\TimeDo.Utility.dll
F:\西华手机网\Component\bin\Debug\TimeDo.DAL.dll
F:\西华手机网\Component\bin\Debug\TimeDo.Mail.dll
F:\西华手机网\Component\bin\Debug\TimeDo.DBUtility.dll
F:\西华手机网\Component\bin\Debug\TimeDo.BLL.pdb
F:\西华手机网\Component\bin\Debug\TimeDo.Config.pdb
F:\西华手机网\Component\bin\Debug\TimeDo.Model.pdb
F:\西华手机网\Component\bin\Debug\TimeDo.UrlRewrite.pdb
F:\西华手机网\Component\bin\Debug\TimeDo.Utility.pdb

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Web.Component.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Web.Component.pdb
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.BLL.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Config.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Model.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.UrlRewrite.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Utility.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.DBUtility.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.DAL.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.DBUtility.pdb
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.DAL.pdb
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.UrlRewrite.pdb
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.BLL.pdb
G:\aspnetProject\盘龙云海\程序\Component\bin\Debug\TimeDo.Config.pdb

@ -0,0 +1,15 @@
F:\宇航电脑网\Component\bin\Debug\TimeDo.Web.Component.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.Web.Component.pdb
F:\宇航电脑网\Component\bin\Debug\TimeDo.BLL.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.Config.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.Model.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.UrlRewrite.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.Utility.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.DAL.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.Mail.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.DBUtility.dll
F:\宇航电脑网\Component\bin\Debug\TimeDo.BLL.pdb
F:\宇航电脑网\Component\bin\Debug\TimeDo.Config.pdb
F:\宇航电脑网\Component\bin\Debug\TimeDo.Model.pdb
F:\宇航电脑网\Component\bin\Debug\TimeDo.UrlRewrite.pdb
F:\宇航电脑网\Component\bin\Debug\TimeDo.Utility.pdb

@ -0,0 +1,15 @@
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dingahao.Web.Component.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dingahao.Web.Component.pdb
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.BLL.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Config.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Model.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.UrlRewrite.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Utility.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.DAL.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Mail.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.DBUtility.dll
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.BLL.pdb
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Config.pdb
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Model.pdb
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.UrlRewrite.pdb
E:\新网站程序\B2C商场版\源程序新版\Component\bin\Debug\dinghao.Utility.pdb

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.Config
{
/// <summary>
/// 客服代码XML操作
/// </summary>
public class CustomServiceConfig
{
/// <summary>
/// 获取设置信息

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Mail;
using dinghao.Utility;
namespace dinghao.Config
{
/// <summary>
/// 邮件配置信息
/// </summary>
public class EmailConfig
{
/// <summary>
/// 获取设置信息

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.Config
{
/// <summary>
/// 图片设置
/// </summary>
public class ImageConfig
{
/// <summary>
/// 获取设置信息

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Config")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Config")]
[assembly: AssemblyCopyright("Copyright © 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using dinghao.Utility;
namespace dinghao.Config
{
/// <summary>
/// 网站的基本信息设置
/// </summary>
public class SiteConfig
{
/// <summary>
/// 获取Sql数据库链接字段

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using dinghao.Model;
using dinghao.Utility;
using System.Collections;
namespace dinghao.Config
{
/// <summary>
/// 模板设置
/// </summary>
public class ThemeConfig
{
string key = "ThemeConfigInfo";

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{803F4F88-C9CB-43CD-B6B6-00C6E2BE646F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>dinghao.Config</RootNamespace>
<AssemblyName>dinghao.Config</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,11 @@
F:\西华手机网\Config\bin\Debug\TimeDo.Config.dll
F:\西华手机网\Config\bin\Debug\TimeDo.Config.pdb
F:\西华手机网\Config\bin\Debug\TimeDo.Mail.dll
F:\西华手机网\Config\bin\Debug\TimeDo.Model.dll
F:\西华手机网\Config\bin\Debug\TimeDo.Utility.dll
F:\西华手机网\Config\bin\Debug\TimeDo.Mail.pdb
F:\西华手机网\Config\bin\Debug\TimeDo.Model.pdb
F:\西华手机网\Config\bin\Debug\TimeDo.Utility.pdb
F:\西华手机网\Config\obj\Debug\ResolveAssemblyReference.cache
F:\西华手机网\Config\obj\Debug\TimeDo.Config.dll
F:\西华手机网\Config\obj\Debug\TimeDo.Config.pdb

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Config.dll
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Config.pdb
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Model.dll
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Utility.dll
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Model.pdb
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Mail.pdb
G:\aspnetProject\盘龙云海\程序\Config\bin\Debug\TimeDo.Utility.pdb
G:\aspnetProject\盘龙云海\程序\Config\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\Config\obj\Debug\TimeDo.Config.dll
G:\aspnetProject\盘龙云海\程序\Config\obj\Debug\TimeDo.Config.pdb
E:\aspnet\P盘龙银海\Config\obj\Debug\TimeDo.Config.dll
E:\aspnet\P盘龙银海\Config\obj\Debug\TimeDo.Config.pdb
E:\aspnet\P盘龙银海\Config\bin\Debug\TimeDo.Config.dll
E:\aspnet\P盘龙银海\Config\bin\Debug\TimeDo.Config.pdb

@ -0,0 +1,15 @@
F:\宇航电脑网\Config\bin\Debug\TimeDo.Config.dll
F:\宇航电脑网\Config\bin\Debug\TimeDo.Config.pdb
F:\宇航电脑网\Config\bin\Debug\TimeDo.Mail.dll
F:\宇航电脑网\Config\bin\Debug\TimeDo.Model.dll
F:\宇航电脑网\Config\bin\Debug\TimeDo.Utility.dll
F:\宇航电脑网\Config\bin\Debug\TimeDo.Mail.pdb
F:\宇航电脑网\Config\bin\Debug\TimeDo.Model.pdb
F:\宇航电脑网\Config\bin\Debug\TimeDo.Utility.pdb
F:\宇航电脑网\Config\obj\Debug\ResolveAssemblyReference.cache
F:\宇航电脑网\Config\obj\Debug\TimeDo.Config.dll
F:\宇航电脑网\Config\obj\Debug\TimeDo.Config.pdb
E:\SunJun\盘龙云海\程序\Config\bin\Debug\TimeDo.Config.dll
E:\SunJun\盘龙云海\程序\Config\bin\Debug\TimeDo.Config.pdb
E:\SunJun\盘龙云海\程序\Config\bin\Debug\TimeDo.Mail.dll
E:\SunJun\盘龙云海\程序\Config\bin\Debug\TimeDo.Model.dll

@ -0,0 +1,15 @@
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Config.dll
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Config.pdb
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Mail.dll
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Model.dll
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Utility.dll
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Mail.pdb
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Model.pdb
E:\新网站程序\B2C商场版\源程序新版\Config\bin\Debug\dinghao.Utility.pdb
E:\新网站程序\B2C商场版\源程序新版\Config\obj\Debug\dinghao.Config.csprojResolveAssemblyReference.cache
E:\新网站程序\B2C商场版\源程序新版\Config\obj\Debug\dinghao.Config.dll
E:\新网站程序\B2C商场版\源程序新版\Config\obj\Debug\dinghao.Config.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\Config\bin\Debug\dinghao.Config.dll
E:\新网站程序\a_艾美美发\B2C商城程序\Config\bin\Debug\dinghao.Config.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\Config\bin\Debug\dinghao.Mail.dll
E:\新网站程序\a_艾美美发\B2C商城程序\Config\bin\Debug\dinghao.Model.dll

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:HelpTip runat=server></{0}:HelpTip>")]
public class HelpTip :Literal
{
private string cssClass = "msgNormal";

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[ToolboxData("<{0}:PageDataList runat=server></{0}:PageDataList>"), DefaultProperty("Text")]
public class PageDataList : DataList
{
// Methods
public string Pagination(int recordcount, int pagesize, int currentpage, string url)
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:PageGrid runat=server></{0}:PageGrid>")]
public class PageGrid :GridView
{
// Properties

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Web.UI;
namespace dinghao.Controls
{
[ToolboxData("<{0}:PageRepeater runat=server></{0}:PageRepeater>"), DefaultProperty("Text")]
public class PageRepeater : Repeater
{
// Methods
public string Pagination(int recordcount, int pagesize, int currentpage, string url)
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:PicturePreview runat=server></{0}:PicturePreview>")]
public class PicturePreview : WebControl
{
[Bindable(true)]

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Web.UI;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Controls")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("WwW.YlmF.CoM")]
[assembly: AssemblyProduct("Controls")]
[assembly: AssemblyCopyright("Copyright © WwW.YlmF.CoM 2009")]
[assembly: AssemblyTrademark("")]

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:StatePic runat=server></{0}:StatePic>")]
public class StatePic : ImageButton
{
public string UpImg

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:Submit runat=server></{0}:Submit>")]
public class Submit : Button
{
//private int editId = 0;

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:TextBoxCalendar runat=server></{0}:TextBoxCalendar>")]
public class TextBoxCalendar : TextBox
{
protected override void OnInit(EventArgs e)

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
namespace dinghao.Controls
{
[ToolboxData("<{0}:UpLoadImg runat=server></{0}:UpLoadImg>"), DefaultProperty("Text")]
public class UpLoadImg : TextBox
{
// Methods
protected override void OnPreRender(EventArgs e)
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:Validate runat=server></{0}:Validate>")]
public class Validate : Literal
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.UI.WebControls;
using System.ComponentModel;
using System.Web.UI;
namespace dinghao.Controls
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:Submit runat=server></{0}:Submit>")]
public class WebSubmit : Button
{
//private int editId = 0;
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{2F63B969-BE6E-4F2D-94AF-71E60FD5C8D9}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>dinghao.Controls</RootNamespace>
<AssemblyName>dinghao.Controls</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,15 @@
<!--
/**
* Calendar
* @param beginYear 1990
* @param endYear 2010
* @param language 0(zh_cn)|1(en_us)|2(en_en)|3(zh_tw)|4(jp)
* @param patternDelimiter "-"
* @param date2StringPattern "yyyy-MM-dd"
* @param string2DatePattern "ymd"
* @version V20060401
* @version V20061217
* @version V20080809 add to google project
* @version V20081226 add language support for japanese
* @version V20090104 add fix some bugs in help.html
use style.display replace the style.visibility

@ -0,0 +1,5 @@
F:\西华手机网\Controls\bin\Debug\TimeDo.Controls.dll
F:\西华手机网\Controls\bin\Debug\TimeDo.Controls.pdb
F:\西华手机网\Controls\obj\Debug\ResolveAssemblyReference.cache
F:\西华手机网\Controls\obj\Debug\TimeDo.Controls.dll
F:\西华手机网\Controls\obj\Debug\TimeDo.Controls.pdb

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\Controls\bin\Debug\TimeDo.Controls.dll
G:\aspnetProject\盘龙云海\程序\Controls\bin\Debug\TimeDo.Controls.pdb
G:\aspnetProject\盘龙云海\程序\Controls\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\Controls\obj\Debug\TimeDo.Controls.dll
G:\aspnetProject\盘龙云海\程序\Controls\obj\Debug\TimeDo.Controls.pdb
E:\aspnet\P盘龙银海\Controls\bin\Debug\TimeDo.Controls.dll
E:\aspnet\P盘龙银海\Controls\bin\Debug\TimeDo.Controls.pdb
E:\aspnet\P盘龙银海\Controls\obj\Debug\ResolveAssemblyReference.cache
E:\aspnet\P盘龙银海\Controls\obj\Debug\TimeDo.Controls.dll
E:\aspnet\P盘龙银海\Controls\obj\Debug\TimeDo.Controls.pdb
G:\aspnetProject\P盘龙银海\Controls\bin\Debug\TimeDo.Controls.dll
G:\aspnetProject\P盘龙银海\Controls\bin\Debug\TimeDo.Controls.pdb
G:\aspnetProject\P盘龙银海\Controls\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\P盘龙银海\Controls\obj\Debug\TimeDo.Controls.dll
G:\aspnetProject\P盘龙银海\Controls\obj\Debug\TimeDo.Controls.pdb

@ -0,0 +1,15 @@
F:\宇航电脑网\Controls\bin\Debug\TimeDo.Controls.dll
F:\宇航电脑网\Controls\bin\Debug\TimeDo.Controls.pdb
F:\宇航电脑网\Controls\obj\Debug\ResolveAssemblyReference.cache
F:\宇航电脑网\Controls\obj\Debug\TimeDo.Controls.dll
F:\宇航电脑网\Controls\obj\Debug\TimeDo.Controls.pdb
E:\SunJun\盘龙云海\程序\Controls\bin\Debug\TimeDo.Controls.dll
E:\SunJun\盘龙云海\程序\Controls\bin\Debug\TimeDo.Controls.pdb
E:\SunJun\盘龙云海\程序\Controls\obj\Debug\ResolveAssemblyReference.cache
E:\SunJun\盘龙云海\程序\Controls\obj\Debug\TimeDo.Controls.dll
E:\SunJun\盘龙云海\程序\Controls\obj\Debug\TimeDo.Controls.pdb
G:\aspnetProject\盘龙云海\程序\Controls\bin\Debug\TimeDo.Controls.dll
G:\aspnetProject\盘龙云海\程序\Controls\bin\Debug\TimeDo.Controls.pdb
G:\aspnetProject\盘龙云海\程序\Controls\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\Controls\obj\Debug\TimeDo.Controls.dll
G:\aspnetProject\盘龙云海\程序\Controls\obj\Debug\TimeDo.Controls.pdb

@ -0,0 +1,15 @@
E:\新网站程序\B2C商场版\源程序新版\Controls\bin\Debug\dinghao.Controls.dll
E:\新网站程序\B2C商场版\源程序新版\Controls\bin\Debug\dinghao.Controls.pdb
E:\新网站程序\B2C商场版\源程序新版\Controls\obj\Debug\dinghao.Controls.dll
E:\新网站程序\B2C商场版\源程序新版\Controls\obj\Debug\dinghao.Controls.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\Controls\bin\Debug\dinghao.Controls.dll
E:\新网站程序\a_艾美美发\B2C商城程序\Controls\bin\Debug\dinghao.Controls.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\Controls\obj\Debug\dinghao.Controls.dll
E:\新网站程序\a_艾美美发\B2C商城程序\Controls\obj\Debug\dinghao.Controls.pdb
E:\新网站程序\h_红酒\程序\Controls\bin\Debug\dinghao.Controls.dll
E:\新网站程序\h_红酒\程序\Controls\bin\Debug\dinghao.Controls.pdb
E:\新网站程序\h_红酒\程序\Controls\obj\Debug\dinghao.Controls.dll
E:\新网站程序\h_红酒\程序\Controls\obj\Debug\dinghao.Controls.pdb
E:\网站程序\d_电影\Controls\bin\Debug\dinghao.Controls.dll
E:\网站程序\d_电影\Controls\bin\Debug\dinghao.Controls.pdb
E:\网站程序\d_电影\Controls\obj\Debug\dinghao.Controls.dll

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DBUtility")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("WwW.YlmF.CoM")]
[assembly: AssemblyProduct("DBUtility")]
[assembly: AssemblyCopyright("Copyright © WwW.YlmF.CoM 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;
using System.Web;
using System.Collections;
namespace dinghao.DBUtility
{
public abstract class SqlHelper
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SQLite;
using System.Web;
using System.Configuration;
using System.Collections;
using System.Data;
using TimeDo.Utility;
using TimeDo.Config;
namespace TimeDo.DBUtility
{
public class SqliteHelper
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4BC07B52-BFF2-4FB1-9D22-0AF7E45D8D15}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>dinghao.DBUtility</RootNamespace>
<AssemblyName>dinghao.DBUtility</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,13 @@
F:\西华手机网\DBUtility\bin\Debug\TimeDo.DBUtility.dll
F:\西华手机网\DBUtility\bin\Debug\TimeDo.DBUtility.pdb
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Config.dll
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Utility.dll
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Model.dll
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Mail.dll
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Config.pdb
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Utility.pdb
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Model.pdb
F:\西华手机网\DBUtility\bin\Debug\TimeDo.Mail.pdb
F:\西华手机网\DBUtility\obj\Debug\ResolveAssemblyReference.cache
F:\西华手机网\DBUtility\obj\Debug\TimeDo.DBUtility.dll
F:\西华手机网\DBUtility\obj\Debug\TimeDo.DBUtility.pdb

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.DBUtility.dll
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.DBUtility.pdb
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Config.dll
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Utility.dll
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Model.dll
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Config.pdb
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Mail.pdb
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Utility.pdb
G:\aspnetProject\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.Model.pdb
G:\aspnetProject\盘龙云海\程序\DBUtility\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\DBUtility\obj\Debug\TimeDo.DBUtility.dll
G:\aspnetProject\盘龙云海\程序\DBUtility\obj\Debug\TimeDo.DBUtility.pdb
E:\aspnet\P盘龙银海\DBUtility\bin\Debug\TimeDo.DBUtility.dll
E:\aspnet\P盘龙银海\DBUtility\bin\Debug\TimeDo.DBUtility.pdb

@ -0,0 +1,15 @@
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.DBUtility.dll
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.DBUtility.pdb
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Config.dll
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Utility.dll
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Mail.dll
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Model.dll
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Config.pdb
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Utility.pdb
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Mail.pdb
F:\宇航电脑网\DBUtility\bin\Debug\TimeDo.Model.pdb
F:\宇航电脑网\DBUtility\obj\Debug\ResolveAssemblyReference.cache
F:\宇航电脑网\DBUtility\obj\Debug\TimeDo.DBUtility.dll
F:\宇航电脑网\DBUtility\obj\Debug\TimeDo.DBUtility.pdb
E:\SunJun\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.DBUtility.dll
E:\SunJun\盘龙云海\程序\DBUtility\bin\Debug\TimeDo.DBUtility.pdb

@ -0,0 +1,15 @@
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.DBUtility.dll
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.DBUtility.pdb
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Config.dll
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Utility.dll
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Mail.dll
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Model.dll
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Config.pdb
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Utility.pdb
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Mail.pdb
E:\新网站程序\B2C商场版\源程序新版\DBUtility\bin\Debug\dinghao.Model.pdb
E:\新网站程序\B2C商场版\源程序新版\DBUtility\obj\Debug\dinghao.DBUtility.csprojResolveAssemblyReference.cache
E:\新网站程序\B2C商场版\源程序新版\DBUtility\obj\Debug\dinghao.DBUtility.dll
E:\新网站程序\B2C商场版\源程序新版\DBUtility\obj\Debug\dinghao.DBUtility.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\DBUtility\bin\Debug\dinghao.DBUtility.dll
E:\新网站程序\a_艾美美发\B2C商城程序\DBUtility\bin\Debug\dinghao.DBUtility.pdb

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{1B22AF3D-84FC-4FFE-980E-A29B3E43A5D2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>JiSuWd.IDAL</RootNamespace>
<AssemblyName>JiSuWd.IDAL</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using dinghao.Model;
namespace JiSuWd.IDAL
{
/// <summary>
/// 管理员类
/// </summary>
public interface IManager
{
/// <summary>
/// 是否存在该记录

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("IDAL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("IDAL")]
[assembly: AssemblyCopyright("Copyright © 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\IDAL\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\IDAL\bin\Debug\JiSuWd.IDAL.dll
G:\aspnetProject\盘龙云海\程序\IDAL\bin\Debug\JiSuWd.IDAL.pdb
G:\aspnetProject\盘龙云海\程序\IDAL\bin\Debug\TimeDo.Model.dll
G:\aspnetProject\盘龙云海\程序\IDAL\bin\Debug\TimeDo.Model.pdb
G:\aspnetProject\盘龙云海\程序\IDAL\obj\Debug\JiSuWd.IDAL.dll
G:\aspnetProject\盘龙云海\程序\IDAL\obj\Debug\JiSuWd.IDAL.pdb
E:\aspnet\P盘龙银海\IDAL\bin\Debug\JiSuWd.IDAL.dll
E:\aspnet\P盘龙银海\IDAL\bin\Debug\JiSuWd.IDAL.pdb
E:\aspnet\P盘龙银海\IDAL\bin\Debug\TimeDo.Model.dll
E:\aspnet\P盘龙银海\IDAL\bin\Debug\TimeDo.Model.pdb
E:\aspnet\P盘龙银海\IDAL\obj\Debug\ResolveAssemblyReference.cache
E:\aspnet\P盘龙银海\IDAL\obj\Debug\JiSuWd.IDAL.dll
E:\aspnet\P盘龙银海\IDAL\obj\Debug\JiSuWd.IDAL.pdb
G:\aspnetProject\P盘龙银海\IDAL\bin\Debug\JiSuWd.IDAL.dll

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("Mail")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("WwW.YlmF.CoM")]
[assembly: AssemblyProduct("Mail")]
[assembly: AssemblyCopyright("Copyright © WwW.YlmF.CoM 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.Mail;
namespace dinghao.Mail
{
/// <summary>
/// 邮件发送
/// </summary>
public class SmtpMail
{
private string _subject;
private string _body;

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{14C6142C-CE33-4CD2-A761-1BEC34E73BCC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>dinghao.Mail</RootNamespace>
<AssemblyName>dinghao.Mail</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>

@ -0,0 +1,5 @@
F:\西华手机网\Mail\bin\Debug\TimeDo.Mail.dll
F:\西华手机网\Mail\bin\Debug\TimeDo.Mail.pdb
F:\西华手机网\Mail\obj\Debug\ResolveAssemblyReference.cache
F:\西华手机网\Mail\obj\Debug\TimeDo.Mail.dll
F:\西华手机网\Mail\obj\Debug\TimeDo.Mail.pdb

@ -0,0 +1,15 @@
G:\aspnetProject\盘龙云海\程序\Mail\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\Mail\bin\Debug\TimeDo.Mail.pdb
G:\aspnetProject\盘龙云海\程序\Mail\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\Mail\obj\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\Mail\obj\Debug\TimeDo.Mail.pdb
E:\aspnet\P盘龙银海\Mail\bin\Debug\TimeDo.Mail.dll
E:\aspnet\P盘龙银海\Mail\bin\Debug\TimeDo.Mail.pdb
E:\aspnet\P盘龙银海\Mail\obj\Debug\ResolveAssemblyReference.cache
E:\aspnet\P盘龙银海\Mail\obj\Debug\TimeDo.Mail.dll
E:\aspnet\P盘龙银海\Mail\obj\Debug\TimeDo.Mail.pdb
G:\aspnetProject\P盘龙银海\Mail\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\P盘龙银海\Mail\bin\Debug\TimeDo.Mail.pdb
G:\aspnetProject\P盘龙银海\Mail\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\P盘龙银海\Mail\obj\Debug\TimeDo.Mail.dll
G:\aspnetProject\P盘龙银海\Mail\obj\Debug\TimeDo.Mail.pdb

@ -0,0 +1,15 @@
F:\宇航电脑网\Mail\bin\Debug\TimeDo.Mail.dll
F:\宇航电脑网\Mail\bin\Debug\TimeDo.Mail.pdb
F:\宇航电脑网\Mail\obj\Debug\ResolveAssemblyReference.cache
F:\宇航电脑网\Mail\obj\Debug\TimeDo.Mail.dll
F:\宇航电脑网\Mail\obj\Debug\TimeDo.Mail.pdb
E:\SunJun\盘龙云海\程序\Mail\bin\Debug\TimeDo.Mail.dll
E:\SunJun\盘龙云海\程序\Mail\bin\Debug\TimeDo.Mail.pdb
E:\SunJun\盘龙云海\程序\Mail\obj\Debug\ResolveAssemblyReference.cache
E:\SunJun\盘龙云海\程序\Mail\obj\Debug\TimeDo.Mail.dll
E:\SunJun\盘龙云海\程序\Mail\obj\Debug\TimeDo.Mail.pdb
G:\aspnetProject\盘龙云海\程序\Mail\bin\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\Mail\bin\Debug\TimeDo.Mail.pdb
G:\aspnetProject\盘龙云海\程序\Mail\obj\Debug\ResolveAssemblyReference.cache
G:\aspnetProject\盘龙云海\程序\Mail\obj\Debug\TimeDo.Mail.dll
G:\aspnetProject\盘龙云海\程序\Mail\obj\Debug\TimeDo.Mail.pdb

@ -0,0 +1,15 @@
E:\新网站程序\B2C商场版\源程序新版\Mail\bin\Debug\dinghao.Mail.dll
E:\新网站程序\B2C商场版\源程序新版\Mail\bin\Debug\dinghao.Mail.pdb
E:\新网站程序\B2C商场版\源程序新版\Mail\obj\Debug\dinghao.Mail.dll
E:\新网站程序\B2C商场版\源程序新版\Mail\obj\Debug\dinghao.Mail.pdb
E:\新网站程序\B2C商场版\源程序新版\Mail\obj\Debug\dinghao.Mail.csprojResolveAssemblyReference.cache
E:\新网站程序\a_艾美美发\B2C商城程序\Mail\bin\Debug\dinghao.Mail.dll
E:\新网站程序\a_艾美美发\B2C商城程序\Mail\bin\Debug\dinghao.Mail.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\Mail\obj\Debug\dinghao.Mail.dll
E:\新网站程序\a_艾美美发\B2C商城程序\Mail\obj\Debug\dinghao.Mail.pdb
E:\新网站程序\a_艾美美发\B2C商城程序\Mail\obj\Debug\dinghao.Mail.csprojResolveAssemblyReference.cache
E:\新网站程序\h_红酒\程序\Mail\bin\Debug\dinghao.Mail.dll
E:\新网站程序\h_红酒\程序\Mail\bin\Debug\dinghao.Mail.pdb
E:\新网站程序\h_红酒\程序\Mail\obj\Debug\dinghao.Mail.dll
E:\新网站程序\h_红酒\程序\Mail\obj\Debug\dinghao.Mail.pdb
E:\新网站程序\h_红酒\程序\Mail\obj\Debug\dinghao.Mail.csprojResolveAssemblyReference.cache

@ -0,0 +1,15 @@
using System;
namespace dinghao.Model
{
/// <summary>
/// 广告实体类
/// </summary>
[Serializable]
public partial class AdsInfo
{
#region Model
private int _id=0;
private string _class="";
private string _title="";
private int _clicks=0;
private int _views=0;

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save