commit 562366f6becd14402e2a51666e5280b75f39d69d Author: editor <@51Aspx.com> Date: Wed Jul 26 10:51:33 2023 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..fba24ac --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,25 @@ +爱购物电子商城源码 + +爱购物电子商城源码功能介绍:    本源码是一套完整的电子商城系统,包含了订单管理,订单查询,购物车,商品管理等功能。有了这套源码可以轻松的制作自己的B2C网上商城了。页面介绍:    特价商品 促销热卖 行业资讯 每日推荐 爱购物社区 新品上市     后台管理功能:     资讯管理   商品信息管理  网站会员管理 供货商管理 订单管理     销售统计管理 系统管理 注意:          开发环境为Visual Studio 2010,数据库为SQL Server 2005,数据库文件在DB_51aspx文件夹中附加就行。    管理员用户名密码均是:51aspx + + +作者: 学云网 + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/AiShopping +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: 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/AiGouWu\\Admin\\Admin_Center.aspx" "b/AiGouWu\\Admin\\Admin_Center.aspx" new file mode 100644 index 0000000..4b87ca9 --- /dev/null +++ "b/AiGouWu\\Admin\\Admin_Center.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Admin_Center.aspx.cs" Inherits="Shannon.Web.Admin.admin_center" %> + + + + + + 管理中心首页 + + + + +
+ +
+ diff --git "a/AiGouWu\\Admin\\Admin_Center.aspx.cs" "b/AiGouWu\\Admin\\Admin_Center.aspx.cs" new file mode 100644 index 0000000..1a865c8 --- /dev/null +++ "b/AiGouWu\\Admin\\Admin_Center.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Configuration; +using System.Data; +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 Shannon.Web.Admin +{ + public partial class admin_center : System.Web.UI.Page diff --git "a/AiGouWu\\Admin\\Admin_Center.aspx.designer.cs" "b/AiGouWu\\Admin\\Admin_Center.aspx.designer.cs" new file mode 100644 index 0000000..56f3207 --- /dev/null +++ "b/AiGouWu\\Admin\\Admin_Center.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace Shannon.Web.Admin { + + + public partial class admin_center { + + /// diff --git "a/AiGouWu\\Admin\\Article\\Add.aspx" "b/AiGouWu\\Admin\\Article\\Add.aspx" new file mode 100644 index 0000000..5a86cf6 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\Add.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Add.aspx.cs" Inherits="AiGouWu.Admin.Article.Add" %> + +<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> + + + + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Article\\Add.aspx.cs" "b/AiGouWu\\Admin\\Article\\Add.aspx.cs" new file mode 100644 index 0000000..a94b141 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\Add.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model; +namespace AiGouWu.Admin.Article +{ + public partial class Add : System.Web.UI.Page + { + SqlComm comm = new SqlComm(); + NewBLL newbll = new NewBLL(); + protected void Page_Load(object sender, EventArgs e) diff --git "a/AiGouWu\\Admin\\Article\\Add.aspx.designer.cs" "b/AiGouWu\\Admin\\Article\\Add.aspx.designer.cs" new file mode 100644 index 0000000..2103d30 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\Add.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Article { + + + public partial class Add { + + /// diff --git "a/AiGouWu\\Admin\\Article\\Edit.aspx" "b/AiGouWu\\Admin\\Article\\Edit.aspx" new file mode 100644 index 0000000..8c22db4 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\Edit.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Edit.aspx.cs" Inherits="AiGouWu.Web.Admin.Article.Edit" ValidateRequest="false" %> + +<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> + + + + + + 编辑资讯 + + + + + + diff --git "a/AiGouWu\\Admin\\Article\\Edit.aspx.cs" "b/AiGouWu\\Admin\\Article\\Edit.aspx.cs" new file mode 100644 index 0000000..9606dd5 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\Edit.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model; + +namespace AiGouWu.Web.Admin.Article +{ + public partial class Edit : System.Web.UI.Page + { + SqlComm comm = new SqlComm(); + NewBLL newbll = new NewBLL(); + tbNews news = new tbNews(); diff --git "a/AiGouWu\\Admin\\Article\\Edit.aspx.designer.cs" "b/AiGouWu\\Admin\\Article\\Edit.aspx.designer.cs" new file mode 100644 index 0000000..b744a93 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\Edit.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Web.Admin.Article { + + + public partial class Edit { + + /// diff --git "a/AiGouWu\\Admin\\Article\\List.aspx" "b/AiGouWu\\Admin\\Article\\List.aspx" new file mode 100644 index 0000000..aa78626 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\List.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="List.aspx.cs" Inherits="AiGouWu.Admin.Article.List" %> + +<%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %> + + + + + + 资讯管理 + + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Article\\NewsWordsManger.aspx.cs" "b/AiGouWu\\Admin\\Article\\NewsWordsManger.aspx.cs" new file mode 100644 index 0000000..00fd073 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\NewsWordsManger.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Data; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model.Product; +namespace AiGouWu.Admin.Article +{ + public partial class NewsWordsManger: System.Web.UI.Page + { + + + SqlComm comm = new SqlComm(); diff --git "a/AiGouWu\\Admin\\Article\\NewsWordsManger.aspx.designer.cs" "b/AiGouWu\\Admin\\Article\\NewsWordsManger.aspx.designer.cs" new file mode 100644 index 0000000..3075bd4 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\NewsWordsManger.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Article { + + + public partial class NewsWordsManger { + + /// diff --git "a/AiGouWu\\Admin\\Article\\TypeAdd.aspx" "b/AiGouWu\\Admin\\Article\\TypeAdd.aspx" new file mode 100644 index 0000000..996e418 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\TypeAdd.aspx" @@ -0,0 +1,13 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TypeAdd.aspx.cs" Inherits="AiGouWu.Admin.Article.TypeAdd" %> + + + + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Article\\TypeAdd.aspx.cs" "b/AiGouWu\\Admin\\Article\\TypeAdd.aspx.cs" new file mode 100644 index 0000000..223e34c --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\TypeAdd.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model; +namespace AiGouWu.Admin.Article +{ + public partial class TypeAdd : System.Web.UI.Page + { + SqlComm sqlcomm = new SqlComm(); + protected void Page_Load(object sender, EventArgs e) + { diff --git "a/AiGouWu\\Admin\\Article\\TypeAdd.aspx.designer.cs" "b/AiGouWu\\Admin\\Article\\TypeAdd.aspx.designer.cs" new file mode 100644 index 0000000..c5bb861 --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\TypeAdd.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Article { + + + public partial class TypeAdd { + + /// diff --git "a/AiGouWu\\Admin\\Article\\TypeList.aspx" "b/AiGouWu\\Admin\\Article\\TypeList.aspx" new file mode 100644 index 0000000..c37872c --- /dev/null +++ "b/AiGouWu\\Admin\\Article\\TypeList.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TypeList.aspx.cs" Inherits="AiGouWu.Admin.Article.TypeList" %> + + + + + + 资讯管理 + + + + + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Customer\\edit.aspx.cs" "b/AiGouWu\\Admin\\Customer\\edit.aspx.cs" new file mode 100644 index 0000000..945dd70 --- /dev/null +++ "b/AiGouWu\\Admin\\Customer\\edit.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web; +using BLL; +using Model.Customer; + + +namespace AiGouWu.Admin.Customer +{ + public partial class edit: System.Web.UI.Page + { + public static tbCustomer c = new tbCustomer(); + CustomerBLL cb = new CustomerBLL(); + SqlComm comm = new SqlComm(); + protected void Page_Load(object sender, EventArgs e) diff --git "a/AiGouWu\\Admin\\Customer\\edit.aspx.designer.cs" "b/AiGouWu\\Admin\\Customer\\edit.aspx.designer.cs" new file mode 100644 index 0000000..008a6ce --- /dev/null +++ "b/AiGouWu\\Admin\\Customer\\edit.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Customer { + + + public partial class edit { + + /// diff --git "a/AiGouWu\\Admin\\Customer\\supplayedit.aspx" "b/AiGouWu\\Admin\\Customer\\supplayedit.aspx" new file mode 100644 index 0000000..9d307cb --- /dev/null +++ "b/AiGouWu\\Admin\\Customer\\supplayedit.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="supplayedit.aspx.cs" ValidateRequest="false" Inherits="AiGouWu.Admin.Customer.supplayedit" %> + +<%@ Register assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" tagprefix="FCKeditorV2" %> + + + + + + 添加栏目 + + + + + + diff --git "a/AiGouWu\\Admin\\Customer\\supplayedit.aspx.cs" "b/AiGouWu\\Admin\\Customer\\supplayedit.aspx.cs" new file mode 100644 index 0000000..46494e4 --- /dev/null +++ "b/AiGouWu\\Admin\\Customer\\supplayedit.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web; +using BLL; +using Model.Customer; + + +namespace AiGouWu.Admin.Customer +{ + public partial class supplayedit: System.Web.UI.Page + { + public static tbCustomer c = new tbCustomer(); + CustomerBLL cb = new CustomerBLL(); + SqlComm comm = new SqlComm(); + protected void Page_Load(object sender, EventArgs e) diff --git "a/AiGouWu\\Admin\\Customer\\supplayedit.aspx.designer.cs" "b/AiGouWu\\Admin\\Customer\\supplayedit.aspx.designer.cs" new file mode 100644 index 0000000..4e50fbd --- /dev/null +++ "b/AiGouWu\\Admin\\Customer\\supplayedit.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Customer { + + + public partial class supplayedit { + + /// diff --git "a/AiGouWu\\Admin\\Customer\\supplyCustomer.aspx" "b/AiGouWu\\Admin\\Customer\\supplyCustomer.aspx" new file mode 100644 index 0000000..12a6432 --- /dev/null +++ "b/AiGouWu\\Admin\\Customer\\supplyCustomer.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="supplyCustomer.aspx.cs" Inherits="AiGouWu.Admin.Customer.supplyCustomer" %> + +<%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %> + + + + + + 资讯管理 + + + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Default.aspx.cs" "b/AiGouWu\\Admin\\Default.aspx.cs" new file mode 100644 index 0000000..7859fa7 --- /dev/null +++ "b/AiGouWu\\Admin\\Default.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.Configuration; +using System.Data; +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 Shannon.Web.Admin +{ + public partial class Default :System.Web.UI.Page diff --git "a/AiGouWu\\Admin\\Default.aspx.designer.cs" "b/AiGouWu\\Admin\\Default.aspx.designer.cs" new file mode 100644 index 0000000..dae9ea9 --- /dev/null +++ "b/AiGouWu\\Admin\\Default.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace Shannon.Web.Admin { + + + public partial class Default { + + /// diff --git "a/AiGouWu\\Admin\\Images\\login.css" "b/AiGouWu\\Admin\\Images\\login.css" new file mode 100644 index 0000000..ab855b5 --- /dev/null +++ "b/AiGouWu\\Admin\\Images\\login.css" @@ -0,0 +1,15 @@ +/*-----------*/ +body{margin: 0;padding: 0;} +img,body,html{border:0;} +address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;} +ol,ul{list-style:none;} +caption,th{text-align:left;} +h1,h2,h3,h4,h5,h6{font-size:100%;} +/*-----------*/ +.x-box-tl{background:transparent url(login/corners.gif) no-repeat 0 0;zoom:1;} +.x-box-tc{height:8px;background:transparent url(login/tb.gif) repeat-x 0 0;overflow:hidden;} +.x-box-tr{background:transparent url(login/corners.gif) no-repeat right -8px;} +.x-box-ml{background:transparent url(login/l.gif) repeat-y 0;padding-left:4px;overflow:hidden;zoom:1;} +.x-box-mc{background:#fff ;padding:4px 10px;font-family:"Myriad Pro","MyriadWeb","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:12px;} +.x-box-mc h3{font-size:14px;font-weight:bold;margin:0 0 4px 0;zoom:1;} +.x-box-mr{background:transparent url(login/r.gif) repeat-y right;padding-right:4px;overflow:hidden;} diff --git "a/AiGouWu\\Admin\\Images\\pagination.css" "b/AiGouWu\\Admin\\Images\\pagination.css" new file mode 100644 index 0000000..44aded4 --- /dev/null +++ "b/AiGouWu\\Admin\\Images\\pagination.css" @@ -0,0 +1,15 @@ +div.digg {padding: 3px; margin: 3px; text-align: center; font-family:Verdana; font-size:12px;} +div.digg a { border: #aaaadd 1px solid; padding:2px 5px; margin: 2px; color: #000099; text-decoration: none} +div.digg a:hover {border: #000099 1px solid; color: #000; } +div.digg a:active {border: #000099 1px solid; color: #000; } +div.digg span.current {border: #000099 1px solid; padding:2px 5px; font-weight: bold; margin: 2px; color: #fff;background-color: #000099} +div.digg span.disabled { border: #eee 1px solid; padding:2px 5px; margin: 2px; color: #ddd; padding-top: 2px;} + + +/*css meneame style pagination*/ +div.meneame { + padding-right: 3px; padding-left: 3px; font-size: 80%; padding-bottom: 3px; margin: 3px; color: #ff6500; padding-top: 3px; text-align: center; font-family:Verdana; font-size:12px; +} +div.meneame a { + border-right: #ff9600 1px solid; padding-right: 7px; background-position: 50% bottom; border-top: #ff9600 1px solid; padding-left: 7px; background-image: url(meneame.jpg); padding-bottom: 5px; border-left: #ff9600 1px solid; color: #ff6500; margin-right: 3px; padding-top: 5px; border-bottom: #ff9600 1px solid; text-decoration: none +} diff --git "a/AiGouWu\\Admin\\Images\\style.css" "b/AiGouWu\\Admin\\Images\\style.css" new file mode 100644 index 0000000..217f34e --- /dev/null +++ "b/AiGouWu\\Admin\\Images\\style.css" @@ -0,0 +1,15 @@ +*{ + scrollbar-face-color:#E6F2FD; + scrollbar-highlight-color:#ffffff; + scrollbar-shadow-color:#D6E4EF; + scrollbar-3dlight-color:#F1F9FF; + scrollbar-arrow-color:#006699; + scrollbar-track-color:#F1F9FF; + scrollbar-darkshadow-color:#F1F9FF; +} +body{ + margin:0px; + color:#666; + background-color:#FFF; + font-family:Verdana, Geneva, sans-serif; + font-size:12px; diff --git "a/AiGouWu\\Admin\\Js\\DateControl.js" "b/AiGouWu\\Admin\\Js\\DateControl.js" new file mode 100644 index 0000000..c183f1a --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\DateControl.js" @@ -0,0 +1,15 @@ +//==================================================== 参数设定部分 ======================================================= +var bMoveable=true; //设置日历是否可以拖动 +var _VersionInfo="" //版本信息 + +//==================================================== WEB 页面显示部分 ===================================================== +var strFrame; //存放日历层的HTML代码 +document.writeln(''); +strFrame=''; +strFrame+=''; +strFrame+='var datelayerx,datelayery; /*存放日历控件的鼠标位置*/'; +strFrame+='var bDrag; /*标记是否开始拖动*/'; diff --git "a/AiGouWu\\Admin\\Js\\JqueryDatePicker_ZW.js" "b/AiGouWu\\Admin\\Js\\JqueryDatePicker_ZW.js" new file mode 100644 index 0000000..4701a2a --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\JqueryDatePicker_ZW.js" @@ -0,0 +1,15 @@ +jQuery(function($){ + $.datepicker.regional['zh-CN'] = { + clearText: '���', + clearStatus: '�����ѡ����', + closeText: '�ر�', + closeStatus: '���ı䵱ǰѡ��', + prevText: '<����', + prevStatus: '��ʾ����', + prevBigText: '<<', + prevBigStatus: '��ʾ��һ��', + nextText: '����>', + nextStatus: '��ʾ����', + nextBigText: '>>', + nextBigStatus: '��ʾ��һ��', + currentText: '����', diff --git "a/AiGouWu\\Admin\\Js\\ModelField.js" "b/AiGouWu\\Admin\\Js\\ModelField.js" new file mode 100644 index 0000000..9b096d0 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\ModelField.js" @@ -0,0 +1,15 @@ +// JScript 文件 +function SelectModelType() { + var TypeCount = document.getElementsByName("Type"); + + for (var i = 1; i < TypeCount.length; i++) { + var DivType = eval("Div" + TypeCount[i].value); + + if (TypeCount[i].checked) { + DivType.style.display = ""; + } + else { + DivType.style.display = "none"; + } + } +} diff --git "a/AiGouWu\\Admin\\Js\\MyComm.js" "b/AiGouWu\\Admin\\Js\\MyComm.js" new file mode 100644 index 0000000..dbf5a96 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\MyComm.js" @@ -0,0 +1,15 @@ +$(function () { + var screenwidth, screenheight, mytop, getPosLeft, getPosTop + screenwidth = $(window).width(); + screenheight = $(window).height(); + //获取滚动条距顶部的偏移 + mytop = $(document).scrollTop(); + //计算弹出层的left + getPosLeft = screenwidth / 2 - 200; + //计算弹出层的top + getPosTop = screenheight / 2 - 150; + //css定位弹出层 + $("#divTypeManger").css({ "left": getPosLeft, "top": getPosTop }); + //当浏览器窗口大小改变时 + $(window).resize(function () { + screenwidth = $(window).width(); diff --git "a/AiGouWu\\Admin\\Js\\TypeAdd.js" "b/AiGouWu\\Admin\\Js\\TypeAdd.js" new file mode 100644 index 0000000..a75f41b --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\TypeAdd.js" @@ -0,0 +1,15 @@ +var count = 0; +$(document).ready(function () { + $("#loading").hide() +}); + +function TypeAdd() { + $("#btnaddtype").hide(); + $("#loading").show(); + var txtName = $("#txtName"); + + $.ajax({ + url: "TypeAdd.aspx?typename=" + encodeURI(txtName.val())+ "", + type: "post", + datatype: "text", + success: function (returnValue) { diff --git "a/AiGouWu\\Admin\\Js\\ValidateMessage_ZW.js" "b/AiGouWu\\Admin\\Js\\ValidateMessage_ZW.js" new file mode 100644 index 0000000..f91be37 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\ValidateMessage_ZW.js" @@ -0,0 +1,15 @@ +jQuery.extend( +jQuery.validator.messages, { +required: "*", +remote: "请修正该字段", +email: "请输入正确格式的电子邮件", +url: "请输入合法的网址", +date: "请输入合法的日期", +dateISO: "请输入合法的日期 (如:2011-11-02)", +number: "请输入合法的数字", +digits: "只能输入整数", +creditcard: "请输入合法的信用卡号", +equalTo: "请再次输入相同的值", +accept: "请输入拥有合法后缀名的字符串", +maxlength: $.validator.format("请输入一个长度最多是 {0} 的字符串"), +minlength: $.validator.format("请输入一个长度最少是 {0} 的字符串"), diff --git "a/AiGouWu\\Admin\\Js\\cursorfocus.js" "b/AiGouWu\\Admin\\Js\\cursorfocus.js" new file mode 100644 index 0000000..08deff2 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\cursorfocus.js" @@ -0,0 +1,15 @@ +$(function() { + $(".input,.login_input,.textarea").focus(function() { + $(this).addClass("focus"); + }).blur(function() { + $(this).removeClass("focus"); + }); + + //输入框提示,获取拥有HintTitle,HintInfo属性的对象 + $("[HintTitle],[HintInfo]").focus(function(event) { + $("*").stop(); //停止所有正在运行的动画 + $("#HintMsg").remove(); //先清除,防止重复出错 + var HintHtml = "
  • " + $(this).attr("HintTitle") + "" + $(this).attr("HintInfo") + "
"; //设置显示的内容 + var offset = $(this).offset(); //取得事件对象的位置 + $("body").append(HintHtml); //添加节点 + $("#HintMsg").fadeTo(0, 0.85); //对象的透明度 diff --git "a/AiGouWu\\Admin\\Js\\function.js" "b/AiGouWu\\Admin\\Js\\function.js" new file mode 100644 index 0000000..c0f608c --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\function.js" @@ -0,0 +1,12 @@ +//管理操作所需的所有函数 +//全选取消按钮函数,调用样式如: +function checkAll(chkobj){ + if($(chkobj).text()=="全选") + { + $(chkobj).text("取消"); + $(".checkall input").attr("checked", true); + }else{ + $(chkobj).text("全选"); + $(".checkall input").attr("checked", false); + } +} diff --git "a/AiGouWu\\Admin\\Js\\jquery-1.4.1.js" "b/AiGouWu\\Admin\\Js\\jquery-1.4.1.js" new file mode 100644 index 0000000..f08c842 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\jquery-1.4.1.js" @@ -0,0 +1,15 @@ +/*! + * jQuery JavaScript Library v1.4.1 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to diff --git "a/AiGouWu\\Admin\\Js\\jquery-1.4.1.min.js" "b/AiGouWu\\Admin\\Js\\jquery-1.4.1.min.js" new file mode 100644 index 0000000..e5e4c39 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\jquery-1.4.1.min.js" @@ -0,0 +1,15 @@ +/*! + * jQuery JavaScript Library v1.4.1 + * http://jquery.com/ + * + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to diff --git "a/AiGouWu\\Admin\\Js\\jquery-ui-1.7.custom.css" "b/AiGouWu\\Admin\\Js\\jquery-ui-1.7.custom.css" new file mode 100644 index 0000000..5352808 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\jquery-ui-1.7.custom.css" @@ -0,0 +1,15 @@ +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +*/ + +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { display: none; } +.ui-helper-hidden-accessible { position: absolute; left: -99999999px; } +.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } +.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } +.ui-helper-clearfix { display: inline-block; } +/* required comment for clearfix to work in Opera \*/ +* html .ui-helper-clearfix { height:1%; } diff --git "a/AiGouWu\\Admin\\Js\\jquery-ui-1.7.custom.min.js" "b/AiGouWu\\Admin\\Js\\jquery-ui-1.7.custom.min.js" new file mode 100644 index 0000000..fa9f2f2 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\jquery-ui-1.7.custom.min.js" @@ -0,0 +1,15 @@ +/* + * jQuery UI 1.7 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI + */ +jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/* + * jQuery UI Draggable 1.7 + * + * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. diff --git "a/AiGouWu\\Admin\\Js\\manager.js" "b/AiGouWu\\Admin\\Js\\manager.js" new file mode 100644 index 0000000..ac50a6d --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\manager.js" @@ -0,0 +1,15 @@ +// JavaScript Document +$(function(){ + //关闭打开左栏目 + $("#sysBar").toggle(function(){ + $("#mainLeft").hide(); + $("#barImg").attr("src","images/butOpen.gif"); + },function(){ + $("#mainLeft").show(); + $("#barImg").attr("src","images/butClose.gif"); + }); + //页面加载完毕,显示第一个子菜单 + $(".left_menu").hide(); + $(".left_menu:eq(0)").show(); +}); +//后台主菜单控制函数 diff --git "a/AiGouWu\\Admin\\Js\\multipleupload.js" "b/AiGouWu\\Admin\\Js\\multipleupload.js" new file mode 100644 index 0000000..f212661 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\multipleupload.js" @@ -0,0 +1,15 @@ +$(function() { + $("#FileUpload").bind("change", function() { + //开始提交 + $("#form1").ajaxSubmit({ + beforeSubmit: function(formData, jqForm, options){ + //隐藏上传按钮 + $(".files").hide(); + //显示LOADING图片 + $(".uploading").show(); + }, + success: function(data, textStatus) { + if (data.msg == 1) { + $("#txtImgUrl").val(data.msbox); + } else { + alert(data.msbox); diff --git "a/AiGouWu\\Admin\\Js\\png.js" "b/AiGouWu\\Admin\\Js\\png.js" new file mode 100644 index 0000000..33fade8 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\png.js" @@ -0,0 +1,15 @@ +// JScript 文件 + +function correctPNG() { + var arVersion = navigator.appVersion.split("MSIE") + var version = parseFloat(arVersion[1]) + if ((version >= 5.5) && (document.body.filters)) { + for (var j = 0; j < document.images.length; j++) { + var img = document.images[j] + var imgName = img.src.toUpperCase() + if (imgName.substring(imgName.length - 3, imgName.length) == "PNG") { + var imgID = (img.id) ? "id='" + img.id + "' " : "" + var imgClass = (img.className) ? "class='" + img.className + "' " : "" + var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' " + var imgStyle = "display:inline-block;" + img.style.cssText + if (img.align == "left") imgStyle = "float:left;" + imgStyle diff --git "a/AiGouWu\\Admin\\Js\\singleupload.js" "b/AiGouWu\\Admin\\Js\\singleupload.js" new file mode 100644 index 0000000..86766b7 --- /dev/null +++ "b/AiGouWu\\Admin\\Js\\singleupload.js" @@ -0,0 +1,15 @@ +$(function() { + $("#FileUpload").bind("change", function() { + //开始提交 + $("#form1").ajaxSubmit({ + beforeSubmit: function(formData, jqForm, options) { + //隐藏上传按钮 + $(".files").hide(); + //显示LOADING图片 + $(".uploading").show(); + }, + success: function(data, textStatus) { + if (data.msg == 1) { + $("#txtImgUrl").val(data.msbox); + } else { + alert(data.msbox); diff --git "a/AiGouWu\\Admin\\Links\\Add.aspx" "b/AiGouWu\\Admin\\Links\\Add.aspx" new file mode 100644 index 0000000..b55dd05 --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\Add.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Add.aspx.cs" Inherits="AiGouWu.Admin.Links.Add" %> + +<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> + + + + + + 友情链接添加 + + + + + + diff --git "a/AiGouWu\\Admin\\Links\\Add.aspx.cs" "b/AiGouWu\\Admin\\Links\\Add.aspx.cs" new file mode 100644 index 0000000..46cb6be --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\Add.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model.Links; +namespace AiGouWu.Admin.Links +{ + public partial class Add : System.Web.UI.Page + { + SqlComm comm = new SqlComm(); + tbLinksBLL linksbll = new tbLinksBLL(); + protected void Page_Load(object sender, EventArgs e) diff --git "a/AiGouWu\\Admin\\Links\\Add.aspx.designer.cs" "b/AiGouWu\\Admin\\Links\\Add.aspx.designer.cs" new file mode 100644 index 0000000..355e465 --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\Add.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Links { + + + public partial class Add { + + /// diff --git "a/AiGouWu\\Admin\\Links\\Edit.aspx" "b/AiGouWu\\Admin\\Links\\Edit.aspx" new file mode 100644 index 0000000..3466ad8 --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\Edit.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Edit.aspx.cs" Inherits="AiGouWu.Admin.Links.Edit" %> + +<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> + + + + + + 友情链接修改 + + + + + + diff --git "a/AiGouWu\\Admin\\Links\\Edit.aspx.cs" "b/AiGouWu\\Admin\\Links\\Edit.aspx.cs" new file mode 100644 index 0000000..b7c4301 --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\Edit.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; +using Model.Links; +namespace AiGouWu.Admin.Links +{ + public partial class Edit : System.Web.UI.Page + { + SqlComm comm = new SqlComm(); + tbLinksBLL linksbll = new tbLinksBLL(); + protected void Page_Load(object sender, EventArgs e) diff --git "a/AiGouWu\\Admin\\Links\\Edit.aspx.designer.cs" "b/AiGouWu\\Admin\\Links\\Edit.aspx.designer.cs" new file mode 100644 index 0000000..d14ebd7 --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\Edit.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Links { + + + public partial class Edit { + + /// diff --git "a/AiGouWu\\Admin\\Links\\List.aspx" "b/AiGouWu\\Admin\\Links\\List.aspx" new file mode 100644 index 0000000..430d1ab --- /dev/null +++ "b/AiGouWu\\Admin\\Links\\List.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="List.aspx.cs" Inherits="AiGouWu.Admin.Links.List" %> + +<%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %> + + + + + + 友情链接管理 + + + + + + + + + + + + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Orders\\OrdersList.aspx.cs" "b/AiGouWu\\Admin\\Orders\\OrdersList.aspx.cs" new file mode 100644 index 0000000..0729aba --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersList.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Text; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; + +namespace AiGouWu.Admin.Orders +{ + public partial class OrdersList: System.Web.UI.Page + { + SqlComm comm = new SqlComm(); + string condition = " "; + //每页5条 diff --git "a/AiGouWu\\Admin\\Orders\\OrdersList.aspx.designer.cs" "b/AiGouWu\\Admin\\Orders\\OrdersList.aspx.designer.cs" new file mode 100644 index 0000000..eeb9cf4 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersList.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Orders { + + + public partial class OrdersList { + + /// diff --git "a/AiGouWu\\Admin\\Orders\\OrdersReport.aspx" "b/AiGouWu\\Admin\\Orders\\OrdersReport.aspx" new file mode 100644 index 0000000..770bbda --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersReport.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrdersReport.aspx.cs" Inherits="AiGouWu.Admin.Orders.OrdersReport" %> + +<%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %> + + + + + + 订单管理 + + + + + + diff --git "a/AiGouWu\\Admin\\Orders\\OrdersReport.aspx.cs" "b/AiGouWu\\Admin\\Orders\\OrdersReport.aspx.cs" new file mode 100644 index 0000000..8e91a83 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersReport.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Text; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using BLL; + +namespace AiGouWu.Admin.Orders +{ + public partial class OrdersReport: System.Web.UI.Page + { + + + diff --git "a/AiGouWu\\Admin\\Orders\\OrdersReport.aspx.designer.cs" "b/AiGouWu\\Admin\\Orders\\OrdersReport.aspx.designer.cs" new file mode 100644 index 0000000..cf8cca3 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersReport.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Orders { + + + public partial class OrdersReport { + + /// diff --git "a/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx" "b/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx" new file mode 100644 index 0000000..ecabfcd --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrdersShenHe.aspx.cs" ValidateRequest="false" Inherits="AiGouWu.Admin.Orders.OrdersShenHe" %> + +<%@ Register assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" tagprefix="FCKeditorV2" %> + + + + + + 订单审核 + + + + + + diff --git "a/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx.cs" "b/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx.cs" new file mode 100644 index 0000000..61d8efa --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web; +using BLL; +using Model.Orders; + + +namespace AiGouWu.Admin.Orders +{ + public partial class OrdersShenHe: System.Web.UI.Page + { + OrderBLL obll = new OrderBLL(); + public tbOrders orders = new tbOrders(); + SqlComm comm = new SqlComm(); + protected void Page_Load(object sender, EventArgs e) diff --git "a/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx.designer.cs" "b/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx.designer.cs" new file mode 100644 index 0000000..5ceae22 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\OrdersShenHe.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Orders { + + + public partial class OrdersShenHe { + + /// diff --git "a/AiGouWu\\Admin\\Orders\\ProductReport.aspx" "b/AiGouWu\\Admin\\Orders\\ProductReport.aspx" new file mode 100644 index 0000000..04296bd --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\ProductReport.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProductReport.aspx.cs" Inherits="AiGouWu.Admin.Orders.ProductReport" %> + +<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %> + + + + + + + + +
+
+ + diff --git "a/AiGouWu\\Admin\\Orders\\ProductReport.aspx.cs" "b/AiGouWu\\Admin\\Orders\\ProductReport.aspx.cs" new file mode 100644 index 0000000..0c09f94 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\ProductReport.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace AiGouWu.Admin.Orders +{ + public partial class ProductReport : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } diff --git "a/AiGouWu\\Admin\\Orders\\ProductReport.aspx.designer.cs" "b/AiGouWu\\Admin\\Orders\\ProductReport.aspx.designer.cs" new file mode 100644 index 0000000..58f4fdf --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\ProductReport.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Orders { + + + public partial class ProductReport { + + /// diff --git "a/AiGouWu\\Admin\\Orders\\logsAdd.aspx" "b/AiGouWu\\Admin\\Orders\\logsAdd.aspx" new file mode 100644 index 0000000..4e1a296 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\logsAdd.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="logsAdd.aspx.cs" ValidateRequest="false" Inherits="AiGouWu.Admin.Orders.logsAdd" %> + +<%@ Register assembly="FredCK.FCKeditorV2" namespace="FredCK.FCKeditorV2" tagprefix="FCKeditorV2" %> + + + + + + 物流公司信息添加 + + + + + + diff --git "a/AiGouWu\\Admin\\Orders\\logsAdd.aspx.cs" "b/AiGouWu\\Admin\\Orders\\logsAdd.aspx.cs" new file mode 100644 index 0000000..e8d88b8 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\logsAdd.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web; +using BLL; +using Model.Orders; + + +namespace AiGouWu.Admin.Orders +{ + public partial class logsAdd: System.Web.UI.Page + { + + protected void Page_Load(object sender, EventArgs e) + { + diff --git "a/AiGouWu\\Admin\\Orders\\logsAdd.aspx.designer.cs" "b/AiGouWu\\Admin\\Orders\\logsAdd.aspx.designer.cs" new file mode 100644 index 0000000..95d5c7f --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\logsAdd.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Orders { + + + public partial class logsAdd { + + /// diff --git "a/AiGouWu\\Admin\\Orders\\logsList.aspx" "b/AiGouWu\\Admin\\Orders\\logsList.aspx" new file mode 100644 index 0000000..4eabeb1 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\logsList.aspx" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="logsList.aspx.cs" Inherits="AiGouWu.Admin.Orders.logsList" %> + +<%@ Register assembly="AspNetPager" namespace="Wuqi.Webdiyer" tagprefix="webdiyer" %> + + + + + + 订单管理 + + + + + + + + + diff --git "a/AiGouWu\\Admin\\Orders\\logsedit.aspx.cs" "b/AiGouWu\\Admin\\Orders\\logsedit.aspx.cs" new file mode 100644 index 0000000..6d0ea0e --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\logsedit.aspx.cs" @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web; +using BLL; +using Model.Orders; + + +namespace AiGouWu.Admin.Orders +{ + public partial class logsedit: System.Web.UI.Page + { + static tbLogs logs = new tbLogs(); + tbLogsBLL logsbll = new tbLogsBLL(); + protected void Page_Load(object sender, EventArgs e) + { diff --git "a/AiGouWu\\Admin\\Orders\\logsedit.aspx.designer.cs" "b/AiGouWu\\Admin\\Orders\\logsedit.aspx.designer.cs" new file mode 100644 index 0000000..074759f --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\logsedit.aspx.designer.cs" @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// <自动生成> +// 此代码由工具生成。 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +namespace AiGouWu.Admin.Orders { + + + public partial class logsedit { + + /// diff --git "a/AiGouWu\\Admin\\Orders\\orderdetail.html" "b/AiGouWu\\Admin\\Orders\\orderdetail.html" new file mode 100644 index 0000000..5f82962 --- /dev/null +++ "b/AiGouWu\\Admin\\Orders\\orderdetail.html" @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SalesOrderDetail.aspx.cs" + Inherits="Admin_Sales_SalesOrderDetail" %> + + + + + ���۶�����ϸ��Ϣ +