master
editor 1 day ago
commit a530346a1a

@ -0,0 +1,48 @@
丫丫饰品商城网站源码
一、源码描述
环境VS2022 sql2019
二、功能介绍
一个小巧的商场管理系统,前台可以进行用户注册、商品购买及留言
系统首页user/index.aspx
管理首页Manger/Login.aspx默认管理帐号/密码51aspx/51aspx
后台主要功能有:订单管理 商品管理 会员管理  物流系统 系统管理 上传管理 
App_Data下为Sql2005数据库如果是VS2005自带的SqlExpress可以直接运行网站程序即可不用另行操作
DB_51Aspx下为Sql2019数据库
注意:
登录验证码区分大小写
浏览器要设置为允许弹出窗口
该代码修改自http://www.51aspx.com/CV/MingriNetShop
三、注意事项
1、在项目web.config修改数据库连接字符串附加数据库。
2、管理员账号与密码51aspx 51aspx 。
3、ctrl+F5运行即可。
作者: 宋慧红
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/YayaShop
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// CommonProperty 的摘要说明
/// </summary>
public class CommonProperty
{

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
/// <summary>
/// DBClass 的摘要说明
/// </summary>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
/// <summary>
/// MangerClass 的摘要说明
/// </summary>
public class MangerClass

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// SaveSubGoodsClass 的摘要说明
/// </summary>
public class SaveSubGoodsClass
{

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
/// <summary>
/// UserInfoClass 的摘要说明
/// </summary>
public class UserInfoClass

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// randomCode 的摘要说明
/// </summary>
public class randomCode
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AdminIndex.aspx.cs" Inherits="Manger_AdminIndex" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>后台功能</title>
</head>
<frameset id="frame" framespacing="0" border="false" cols="180,*" frameborder="0" scrolling="yes">
<frame name="left" scrolling="auto" marginwidth="0" marginheight="0" src="Left.aspx" noresize >
<frameset framespacing="0" border="false" rows="35,*" frameborder="0" scrolling="yes">
<frame name="top" scrolling="no" src="Top.aspx">
<frame name="right" scrolling="auto" src="Main.aspx">
</frameset>
</frameset>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
//该源码下载自www.51aspx.com()
public partial class Manger_AdminIndex : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Category.aspx.cs" Inherits="Manger_Category" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table class="tableBorder" cellSpacing="0" cellPadding="0" width="450" align="center" border="0">
<tr>
<th class="tableHeaderText" height="25" align="left">
&nbsp;&nbsp; 商品类别管理</th>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
//该源码下载自www.51aspx.com(a)
public partial class Manger_Category : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CategoryAdd.aspx.cs" Inherits="Manger_CategoryAdd" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;" >
<form id="Form1" method="post" runat="server">
<div>
<table class="tableBorder" cellSpacing="1" cellPadding="1" width="640" align="center" border="0">
<tr>
<td height="25" align="left">
&nbsp;&nbsp; 商品类别添加

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_CategoryAdd : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="EditProduct.aspx.cs" Inherits="Manger_EditProduct" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" width="480" align="center" border="0">
<tr>
<th align="left" height="25" colspan="2">
&nbsp;&nbsp;

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
public partial class Manger_EditProduct : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Left.aspx.cs" Inherits="Manger_Left" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Menu12_MenuItemClick(object sender, MenuEventArgs e)
{
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<HEAD>
<title>功能导航</title>
<style type="text/css">
body { background:#7F9ED9; margin:0px; font:normal 12px 宋体; scrollbar-face-color: #799AE1; scrollbar-highlight-color: #799AE1; scrollbar-shadow-color: #799AE1; scrollbar-darkshadow-color: #799AE1; scrollbar-3dlight-color: #799AE1; scrollbar-arrow-color: #FFFFFF;scrollbar-track-color: #AABFEC;}

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Manger_Left : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Login.aspx.cs" Inherits="AdminManage_Login" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>管理员登录</title>
<style >
body {margin-top:0px}
</style>
</head>
<body style="text-align: center" background ="../Images/未命名.bmp" >
<form id="form1" runat="server">
<br />
<br />

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
//该源码下载自www.51aspx.com(1aspx)
public partial class AdminManage_Login : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Main.aspx.cs" Inherits="Manger_Main" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style="font-size :9 pt; font-family:宋体 ">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" align="center" border="0" bgcolor="#ffffff" style="width: 600px; height: 605px" >
<tr>
<td valign="top" style="width: 100%" align="center">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_Main : System.Web.UI.Page
{
UserInfoClass uiObj = new UserInfoClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Manager.aspx.cs" Inherits="Manger_Manager" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table class="tableBorder" cellSpacing="0" cellPadding="0" width="650" align="center" border="0">
<tr>
<th class="tableHeaderText" height="25" align="left">
管理会员</th>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_Manager : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Member.aspx.cs" Inherits="Manger_Member" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table class="tableBorder" cellSpacing="0" cellPadding="0" width="450" align="center" border="0">
<tr>
<th class="tableHeaderText" height="25" align="left">
管理</th>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_Member : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MemberAdd.aspx.cs" Inherits="Manger_MemberAdd" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-size :9pt; font-family :宋体;">
<form id="form1" runat="server">
<div>
<table class="tableBorder" cellSpacing="1" cellPadding="1" width="640" align="center" border="0">
<tr>
<td height="25" align="left">
&nbsp;&nbsp; 添加管理员

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_MemberAdd : System.Web.UI.Page
{
MangerClass mc = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="OrderList.aspx.cs" Inherits="Manger_OrderList" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" width="100%" align="center"
border="0">
<tr>
<th align="left" height="25">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_OrderList : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="OrderModify.aspx.cs" Inherits="Manger_OrderModify" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style =" font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<object id="WebBrowser" height="0" width="0" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>
<TABLE id="Table1" cellSpacing="0" cellPadding="0" width="100%" bgColor="#ffffff" border="0">
<TBODY>
<TR>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_OrderModify : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Payment.aspx.cs" Inherits="Manger_Payment" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>支付方式</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" width="400" align="center" border="0">
<tr>
<th height="25" align="left">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_Payment : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Product.aspx.cs" Inherits="Manger_Product" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" width="640" align="center" border="0">
<tr>
<th class="tableHeaderText" height="25" align="left">
&nbsp;&nbsp; 商品管理</th>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_Product : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ProductAdd.aspx.cs" Inherits="Manger_ProductAdd" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style="font-family :宋体; font-size: 9pt;">
<form id="Form1" method="post" runat="server">
<table cellSpacing="0" cellPadding="0" width="480" align="center" border="0">
<tr>
<th align="left" height="25" colspan="2">
&nbsp;&nbsp;
<asp:label id="lblTitleInfo" Runat="server">商品添加</asp:label>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_ProductAdd : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ShipArea.aspx.cs" Inherits="Manger_ShipArea" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" width="400" align="center" border="0">
<tr>
<th height="25" align="left">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
public partial class Manger_ShipArea : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Shipping.aspx.cs" Inherits="Manger_Shipping" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="Form1" method="post" runat="server">
<table cellSpacing="0" cellPadding="0" width="640" align="center" border="0">
<tr>
<th height="25" align="left">
<asp:Label id="lblAction" runat="server"></asp:Label></th>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
public partial class Manger_Shipping : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Top.aspx.cs" Inherits="Manger_Top" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Top</title>
<style type="text/css">
a:link { color:#000000;text-decoration:none}
a:hover {color:#666666;}
a:visited {color:#000000;text-decoration:none}
td {font-size:9pt; filter:dropshadow(color=#FFFFFF,offx=1,offy=1); color:#000000; }
img {filter:alpha(opacity:100); chroma(color=#FFFFFF)}
</style>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Manger_Top : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="imagery.aspx.cs" Inherits="Manger_imagegallery" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" width="450" align="center" border="0">
<tr>
<th height="25" align="left">
上传商品图片</th>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Manger_imagegallery : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register Src="../UserControl/navigationControl.ascx" TagName="navigationControl"
TagPrefix="uc2" %>
<%@ Register Src="../UserControl/MHelp.ascx" TagName="MHelp" TagPrefix="uc1" %>
<%@ Register Src="../UserControl/bottom.ascx" TagName="bottom" TagPrefix="uc6" %>
<%@ Register Src="../UserControl/LoadingControl.ascx" TagName="LoadingControl" TagPrefix="uc7" %>
<%@ Register Src="../UserControl/ShoppingCarControl.ascx" TagName="ShoppingCarControl"
TagPrefix="uc8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>丫丫饰品商城</title>
<style >
body {margin-top:0px; font-size:12px;}

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class MasterPage : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="AddAdvancePay.aspx.cs" Inherits="User_AddAdvancePay" Title="Untitled Page" %>
<%@ Register Src="../UserControl/LoadingControl.ascx" TagName="LoadingControl" TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table id="tabAddPayment" cellSpacing="0" cellPadding="0" align="center"
border="0" runat =server style="width: 94%; height: 286px" >
<tr style ="font-size: 9pt; font-family: 宋体;">
<td align="left" style="height: 24px" width="250" colspan =2>
会员充值:</td>
</tr>
<tr>
<td align="right" style="height: 24px; width: 158px;">
请选择银行名称
</td>
<td style="height: 24px; width: 498px;" align="left"><asp:DropDownList ID="ddlPayWay" runat="server" Width="127px" Font-Size="9pt">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
//5_1_a_s_p_x.c_o_m
public partial class User_AddAdvancePay : System.Web.UI.Page
{
UserInfoClass uiObj = new UserInfoClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="CheckOut.aspx.cs" Inherits="User_CheckOut" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table cellSpacing="0" cellPadding="0" align="center" border="0" style="width: 696px">
<tr style="font: 9pt 宋体">
<th align="left" colspan="2px" style="width: 690px; height: 25px">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/LC-00.gif" /></th>
</tr>
<tr style =" font :9pt; font-family :宋体;">
<th align="left" colspan="2px" style="height: 25px; width: 690px;">
请您认真的填写收货人的信息:</th>
<tr>
</tr>
</table>
<table cellSpacing="1" cellPadding="1" align="center" border="0" style="width: 696px; height: 427px">
<tr style =" font :9pt; font-family :宋体;">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class User_CheckOut : System.Web.UI.Page
{
UserInfoClass ucObj = new UserInfoClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="ClassGoods.aspx.cs" Inherits="User_ClassGoods" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table style=" font-size: 9pt; font-family: 宋体;" >
<tr>
<td align="left" style="width :583px; height :19px;" background ="../Images/pdbg01.gif" >
&nbsp;&nbsp; &nbsp;您所在的位置是:首页>>
<asp:Label ID="lbClassName" runat="server" Text="Label" Font-Names="宋体" Font-Bold="True" ></asp:Label></td>
</tr>
<tr>
<td align="left" background="../Images/index/名字空白.JPG" style="width: 583px; height: 19px">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/yaya.jpg" Width="738px" /></td>
</tr>
<tr>
<td align="left" style="width :583px; " >
<asp:DataList ID="DLClass" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" DataKeyField ="GoodsID" OnItemCommand="DLClass_ItemCommand" Height="504px" Width="739px" OnSelectedIndexChanged="DLClass_SelectedIndexChanged">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class User_ClassGoods : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();
UserInfoClass ucObj = new UserInfoClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="CommitGoods.aspx.cs" Inherits="User_CommitGoods" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table cellSpacing="0" cellPadding="0" align="center" border="0" style="width: 692px; height: 102px">
<tr style =" font :9pt; font-family :宋体;">
<th align="left" colspan="2" style="height: 25px">
&nbsp;<asp:Image ID="Image1" runat="server" Height="50px" ImageUrl="~/Images/800buy_car_step.gif"
Width="151px" /><asp:Image ID="Image2" runat="server" Height="50px" ImageUrl="~/Images/800buy_car_step7.gif"
Width="144px" /><asp:Image ID="Image3" runat="server" Height="50px" ImageUrl="~/Images/800buy_car_step2.gif"
Width="144px" /><asp:Image ID="Image4" runat="server" Height="50px" ImageUrl="~/Images/800buy_car_step8.gif"
Width="145px" /><asp:Image ID="Image5" runat="server" Height="50px" ImageUrl="~/Images/800buy_car_step4.gif"
Width="99px" /></th>
<tr>
</tr>
</table>
<table cellSpacing="1" cellPadding="1" align="center" border="0" style="width: 684px; height: 207px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
public partial class User_CommitGoods : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="GoodsDetail.aspx.cs" Inherits="User_GoodsDetail" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table cellSpacing="0" cellPadding="0" width="480" align="center" border="0">
<tr>
<th align="left" colspan="2" style="height: 25px">
&nbsp;&nbsp;
<asp:label id="lblTitleInfo" Runat="server">商品详细信息</asp:label>
</th>
<tr>
</tr>
</table>
<table cellSpacing="1" cellPadding="1" width="480" align="center" border="0">
<tr>
<td>
<table class="tableBorder" cellSpacing="0" cellPadding="0" align="center" border="0" style="width: 107%; height: 545px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class User_GoodsDetail : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,7 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="Help.aspx.cs" Inherits="User_Help" Title="Untitled Page" %>
<%@ Register Src="../UserControl/Help.ascx" TagName="Help" TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<uc1:Help ID="Help1" runat="server" />
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class User_Help : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="RHDGoods.aspx.cs" Inherits="User_RHDGoods" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table style=" font-size: 9pt; font-family: 宋体;" runat =server id="tabRefine" >
<tr>
<td align="left" style ="width :560px; height :22px;">
</td>
</tr>
<tr>
<td align="left" style ="width :560px; " >
<asp:DataList ID="DLrefinement" DataKeyField ="GoodsID" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" OnItemCommand="DLrefinement_ItemCommand" Height="329px" Width="658px">
<ItemTemplate>
<table align="left" cellpadding=0 cellspacing=0 style =" width :135px; height:158px;" >
<tr align =center style =" width :135px; height:65px;font-size: 9pt; font-family: 宋体;" >
<td colspan="2" >
<asp:Image ID="imageRefine" runat="server" ImageUrl =<%#DataBinder.Eval(Container.DataItem,"GoodsUrl")%>/></td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
//该源码下载自www.51aspx.com()
public partial class User_RHDGoods : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Register.aspx.cs" Inherits="Register" MasterPageFile="~/MasterPage/MasterPage.master" Title ="Register"%>
<asp:Content ID =Content1 ContentPlaceHolderID =FartherMain runat =server >
<table id="tabAddUserInfo" cellSpacing="1" cellPadding="1" align="center"
border="0" runat =server style="width: 700px; height: 671px">
<tr>
<td style="width: 458px; height: 522px">
<table class="tableBorder" id="tabAddMenber" cellSpacing="0" cellPadding="0" align="center"
border="0" runat =server style="width: 153%; height: 653px" >
<tr>
<td align="left" class="tableHeaderText" colspan="2" style="height: 25px">
<asp:Image ID="Image11" runat="server" ImageUrl="~/indeximage/zhuce.gif" Width="688px" Height="74px" /></td>
</tr>
<tr>
<td class="tableHeaderText" align="left" colspan="2" style="height: 25px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class Register : System.Web.UI.Page
{
UserInfoClass uiObj = new UserInfoClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ShipFeeInfo.aspx.cs" Inherits="User_ShipFeeInfo" %>
<%@ OutputCache Duration="60" VaryByParam="None" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body style ="font-family :宋体; font-size :9pt;">
<form id="form1" runat="server">
<div>
<table cellSpacing="0" cellPadding="0" align="center" border="0" style="width: 660px">
<tr>
<td colspan="7" rowspan="1" style="height: 21px" align="center">
&nbsp;<asp:Image ID="Image11" runat="server" ImageUrl="~/Images/bg-web-a.gif" />

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class User_ShipFeeInfo : System.Web.UI.Page
{
MangerClass mcObj = new MangerClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="UpdateMember.aspx.cs" Inherits="User_UpdateMember" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table id="tabAddUserInfo" cellSpacing="1" cellPadding="1" width="700" align="center"
border="0" runat =server>
<tr>
<td style="width: 560px">
<table class="tableBorder" id="tabAddMenber" cellSpacing="0" cellPadding="0" align="center"
border="0" runat =server style="width: 124%; height: 536px" >
<tr>
<td class="tableHeaderText" align="left" height="25" colspan="2">
&nbsp; &nbsp;&nbsp;您所在的位置是:
更新会员信息</td>
</tr>
<tr>
<td align="left" class="tableHeaderText" colspan="2" style="height: 25px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text.RegularExpressions;
public partial class User_UpdateMember : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="chakanly.aspx.cs" Inherits="User_chakanly"
MasterPageFile="~/MasterPage/MasterPage.master" Title="chankanliuyan" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" runat="server">
<table><tr><td>
<asp:DataList ID="ly" runat="server" Width="662px" OnItemCommand="ly_ItemCommand">
<ItemTemplate>
<table border="0" cellpadding="1" cellspacing="0" width="662">
<tr>
<td width="100">
<strong>
<img src='<%#Eval("touxiang") %>' alt="" width="75" height="85" hspace="5" vspace="5"><br />
</strong>
</td>
<td width="500">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class User_chakanly : System.Web.UI.Page
{
// private SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["ConnectionString"]);

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="huifu.aspx.cs" Inherits="User_huifu" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>时空留言板</title>
<style type="text/css" >
<!--
body
{
font-size:12px;
}
-->
</style>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class User_huifu : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="huifu2.aspx.cs" Inherits="User_huifu2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<br />
<br />
<div>
<div align="center" style="width: 728px;
height: 100px">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class User_huifu2 : System.Web.UI.Page
{
DBClass db = new DBClass();
private SqlConnection con = new SqlConnection();

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="index.aspx.cs" Inherits="index" Title="User Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<table cellpadding=0 cellspacing=0 style=" font-size: 9pt; font-family: 宋体;width :542px; vertical-align :top ; border-top-style: none; border-right-style: none; border-left-style: none; text-align: left; border-bottom-style: none; height: 495px;" >
<tr align="left">
<td align="left"colspan="0" rowspan="0" style="vertical-align: top;
width: 573px; height: 26px; text-align: left">
<table style="font-size: 9pt; font-family: 宋体; width: 665px; height: 160px; position:absolute;" >
<tr>
<td align="left" style="vertical-align: top; width: 570px;
height: 174px; text-align: left">
<asp:Image ID="Image1" runat="server" ImageUrl="~/indeximage/2.bmp" Width="700px" Height="200px" /></td>
</tr>
</table>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class index : System.Web.UI.Page
{
UserInfoClass ucObj = new UserInfoClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="lianxi.aspx.cs" Inherits="User_lianxi" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class User_lianxi : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="liuyan.aspx.cs" Inherits="User_liuyan"
MasterPageFile="~/MasterPage/MasterPage.master" Title="Register" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" runat="server">
<table id="tabAddUserInfo" cellspacing="1" cellpadding="1" align="center" border="0"
runat="server" style="width: 700px; height: 671px">
<tr>
<td style="width: 458px; height: 522px">
<table border="1" style="width: 700px; height: 302px">
<tr>
<td colspan="2">
&nbsp;<asp:Image ID="Image25" runat="server" /></td>
</tr>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text;
public partial class User_liuyan : System.Web.UI.Page
{
private SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["ConnectionString"]);

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage/MasterPage.master" AutoEventWireup="true" CodeFile="search.aspx.cs" Inherits="MasterPage_search" Title="search" %>
<%@ Register Assembly="AfengPager" Namespace="AfengTools" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="FartherMain" Runat="Server">
<asp:DataList ID="search1" DataKeyField ="GoodsID" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" Height="150px" Width="700px" CaptionAlign="Bottom" CellPadding="0" HorizontalAlign="Center" BorderStyle="Dotted" OnItemCommand="search1_ItemCommand">
<ItemTemplate><table align="left" cellpadding=0 cellspacing=0 style=" width :170px; height:180px;" border="0" >
<tr align =center valign =bottom style =" width :135px; height:65px;font-size: 9pt; font-family: 宋体;" >
<td colspan="2" align="center" style="height: 65px">
<table border="1" cellpadding="0" cellspacing="0" style="width: 163px; height: 32px">
<tr>
<td colspan="3" style="height: 32px">
<asp:Image ID="imageRefine" runat="server" ImageUrl =<%#DataBinder.Eval(Container.DataItem,"GoodsUrl")%>/></td>
</tr>
</table>
&nbsp;</td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class MasterPage_search : System.Web.UI.Page
{
UserInfoClass ucObj = new UserInfoClass();
DBClass db=new DBClass();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="yzma.aspx.cs" Inherits="User_yzma" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Drawing;
using System.Drawing.Design;
using System.Drawing.Drawing2D;
using System.Drawing.Printing;
using System.Drawing.Imaging;

@ -0,0 +1,14 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Help.ascx.cs" Inherits="UserControl_Help" %>
<table align =center >
<tr>
<td>
<asp:Label id="labHelp" style="Z-INDEX: 102; LEFT: 344px;" runat="server"
Width="188px" Font-Size="9pt" ForeColor="Black"></asp:Label><br /><br />
<asp:TextBox id="txtRead" style="Z-INDEX: 103; LEFT: 344px;" runat="server"
Width="530px" Height="355px" TextMode="MultiLine" ReadOnly="True"></asp:TextBox>
</td>
</tr>
</table>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class UserControl_Help : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="LoadingControl.ascx.cs" Inherits="LoadingControl" %>
<table style="width: 180px; height: 26px;" border="0" cellpadding="0" cellspacing="0" runat="server" id="tabLoading">
<tr>
<td align="center" valign="top" style="height: 180px; width: 220px;">
<table style="width: 198px; height: 180px; font-size: 9pt; font-family: <20><><EFBFBD><EFBFBD>;" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" style="height: 60px; width: 229px;">
<asp:Image ID="Image1" runat="server" ImageUrl="~/indeximage/04.gif" Height="109px" /></td>
</tr>
<tr>
<td style="width: 229px; height: 20px; background-image: url(../indeximage/06.gif);" colspan="2">&nbsp; &nbsp; <20><>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><asp:TextBox ID="txtName" runat="server" Height="20px" Width="97px"></asp:TextBox></td>
</tr>
<tr style="width: 152px; height: 20px; font-size: 9pt; font-family: <20><><EFBFBD><EFBFBD>;">
<td style="width: 229px; height: 18px; background-image: url(../indeximage/06.gif);" colspan="2">&nbsp; &nbsp;<3B><>&nbsp;<3B>룺<asp:TextBox ID="txtPassword" runat="server" TextMode="Password" Height="20px" Width="97px"></asp:TextBox></td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class LoadingControl : System.Web.UI.UserControl
{
DBClass dbObj = new DBClass();

@ -0,0 +1,9 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="MHelp.ascx.cs" Inherits="UserControl_MHelp" %>
<table style ="width :780px; height :41px; font-size: 9pt; text-align: center;" cellpadding="0" cellspacing="0"">
<tr>
<td >
<A href="Help.aspx?TextName=jkfs" style="font-size: 9pt;text-decoration:none; color: black;">交款方式</A>┊<A href="Help.aspx?TextName=thhyz" style="font-size: 9pt;text-decoration:none; color: black;">退换货原则</A>┊<A href="Help.aspx?TextName=psfw" style="font-size: 9pt;text-decoration:none;color: black;">配送范围</A>┊<A href="Help.aspx?TextName=jytk" style="font-size: 9pt;text-decoration:none; color: black;">交易条款</A>┊<A href="Help.aspx?TextName=bmxy" style="font-size: 9pt;text-decoration:none; color: black;">保密协议</A>┊<asp:LinkButton ID="lbtnALogin" runat="server"
OnClick="lbtnALogin_Click" Font-Size="9pt" Font-Underline="False" ForeColor="Black" CausesValidation="False">后台入口</asp:LinkButton>
</td>
</tr>
</table>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class UserControl_MHelp : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ShoppingCarControl.ascx.cs" Inherits="ShoppingCarControl" %>
<table style="width: 200px; height: 115px; font-size: 9pt; font-family: 宋体;" >
<tr>
<td colspan="3">
购物车</td>
</tr>
<tr>
<td colspan="3">
物品数量:</td>
</tr>
<tr>
<td colspan="3" style="height: 26px">
合计:</td>
</tr>
<tr>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class ShoppingCarControl : System.Web.UI.UserControl
{
CommonProperty cpObj = new CommonProperty();

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="bottom.ascx.cs" Inherits="Frame_bottom" %>
<table style="width: 900px; height: 282px;">
<tr>
<td align="center" colspan="3" style="width: 900px">
<table border="0" style="width: 900px; height: 30px" >
<tr>
<td colspan="7" rowspan="1" style="height: 21px" align="center">
<asp:Image ID="Image11" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image12" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image13" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image14" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image15" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image16" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image17" runat="server" ImageUrl="~/Images/bg-web-a.gif" />
<asp:Image ID="Image18" runat="server" ImageUrl="~/Images/bg-web-a.gif" />

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class Frame_bottom : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="navigationControl.ascx.cs" Inherits="UserControl_navigationControl" %>
<%-- <%@ OutputCache Duration ="15" VaryByParam="None" %>--%>
<table style="width: 229px; height: 136px; font-size: 9pt; font-family: 宋体; vertical-align :top ;" border="0" cellpadding="0" cellspacing="0" >
<tr align="center" valign="top">
<td background="../indeximage/014.gif" style="width: 94px; height: 81px">
</td>
</tr>
<tr align="center" valign="top">
<td style="width: 94px; height: 57px" background ="../indeximage/07.gif">
</td>
</tr>
<tr valign =top align =center >
<td style="height: 220px; width: 94px;" background ="../indeximage/08.gif">
<asp:DataList ID="DLClass" runat="server" DataKeyField="ClassID" OnEditCommand="DLClass_EditCommand" Height="227px" Width="220px" >

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
public partial class UserControl_navigationControl : System.Web.UI.UserControl
{
UserInfoClass ucObj = new UserInfoClass();

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<!--
注意: 除了手动编辑此文件以外,您还可以使用
Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
“网站”->“Asp.Net 配置”选项。
设置和注释的完整列表在
machine.config.comments 中,该文件通常位于
\Windows\Microsoft.Net\Framework\v2.x\Config 中
-->
<configuration>
<appSettings>
<!--<add key="ConnectionString" value="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\db_NetShop.MDF;Integrated Security= True;User Instance=True;"/>-->
<add key="ConnectionString" value="Data Source=.;Initial Catalog=NetShop;Integrated Security= True;"/>
</appSettings>
<connectionStrings/>

@ -0,0 +1,15 @@
LoginTextBox
{
height: 12px;
width :107px;
}
.Logintr
{
width :152px;
height:18px;
}
.LoginTable
{
height : 94px;
width :178px;
Loading…
Cancel
Save