资源简介
本系统是一个网络售书系统,里面包括论文和源码,可以完美运行。
代码片段和文件信息
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 account : System.Web.UI.Page
{ DBClass dbObj = new DBClass();
CommonClass ccObj = new CommonClass();
protected void Page_Load(object sender EventArgs e)
{
ST_check_Login();
SqlConnection conn2 = dbObj.GetConnection();
conn2.Open();
string str2 = “select * from tb_Account where MemberID=‘“ + int.Parse(Session[“UserID“].ToString()) + “‘“;
SqlCommand cmd2 = new SqlCommand(str2 conn2);
SqlDataReader dr = cmd2.ExecuteReader();
if (dr.Read())
{
Session[“accountid“] = dr[“AccountID“];
Session[“money“] = dr[“Money“];
}
dr.Close();
conn2.Close();
if(!IsPostBack)
{
if(Session[“accountid“]==null)
{
SqlConnection conn = dbObj.GetConnection();//5~1-a-s-p-x
conn.Open();
string str = “insert into tb_Account(MemberID) values(‘“ + int.Parse(Session[“UserID“].ToString()) + “‘)“;
SqlCommand cmd = new SqlCommand(str conn);
dbObj.ExecNonQuery(cmd);
conn.Close();
}
}
}
public void ST_check_Login()
{
if ((Session[“Username“] == null))
{
Response.Write(“ript>alert(‘对不起!您不是会员,请先注册!‘);location=‘Default.aspx‘ ript>“);
Response.End();
}
}
protected void sure_Click(object sender EventArgs e)
{
SqlConnection conn1 = dbObj.GetConnection();
conn1.Open();
string str1= “update tb_Account set Bank=‘“ + this.bank2.Text.ToString().Trim() + “‘ where MemberID=‘“+int.Parse(Session[“UserID“].ToString())+“‘“;
SqlCommand cmd1 = new SqlCommand(str1 conn1);
dbObj.ExecNonQuery(cmd1);
conn1.Close();
Response.Write(ccObj.MessageBoxPage(“绑定成功!“));
}
protected void Button1_Click(object sender EventArgs e)
{
float RMB = 0;
SqlConnection conn3 = dbObj.GetConnection();
conn3.Open();
string str3 = “select * from tb_Account where MemberID=‘“ + int.Parse(Session[“UserID“].ToString()) + “‘“;
SqlCommand cmd3 = new SqlCommand(str3 conn3);
SqlDataReader dr3 = cmd3.ExecuteReader();
if (dr3.Read())
{ RMB = float.Parse(dr3[“Money“].ToString()); }
dr3.Close();
if (float.Parse(this.cash.Text.ToString().Trim()) <= RMB)
{
dr3.Close();
float part = RMB - float.Parse(this.cash.Text.ToString().Trim());
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 7165 2008-12-13 08:33 网上书店管理系统\源码\account.aspx
文件 4289 2010-05-04 09:05 网上书店管理系统\源码\account.aspx.cs
文件 2193 2010-05-02 17:43 网上书店管理系统\源码\accounts.aspx
文件 529 2008-12-10 20:59 网上书店管理系统\源码\accounts.aspx.cs
文件 1926 2008-12-12 22:03 网上书店管理系统\源码\App_Code\CommonClass.cs
文件 3569 2008-12-01 13:48 网上书店管理系统\源码\App_Code\DBClass.cs
文件 2397 2010-05-02 18:09 网上书店管理系统\源码\App_Code\GoodsClass.cs
文件 4802 2008-12-12 22:18 网上书店管理系统\源码\App_Code\OrderClass.cs
文件 2686 2008-12-12 22:19 网上书店管理系统\源码\App_Code\OrderProperty.cs
文件 5473 2008-12-12 22:21 网上书店管理系统\源码\App_Code\UserClass.cs
文件 3145728 2011-05-15 10:29 网上书店管理系统\源码\App_Data\db_NetStore.mdf
文件 1048576 2011-05-15 10:29 网上书店管理系统\源码\App_Data\db_NetStore_log.ldf
文件 1550 2010-05-04 09:09 网上书店管理系统\源码\bookstore.sln
..A..H. 11776 2010-05-25 09:08 网上书店管理系统\源码\bookstore.suo
文件 918 2008-12-07 22:15 网上书店管理系统\源码\buyFlow.aspx
文件 411 2008-12-12 22:22 网上书店管理系统\源码\buyFlow.aspx.cs
文件 2389 2008-12-08 15:41 网上书店管理系统\源码\check.aspx
文件 1366 2008-12-12 22:16 网上书店管理系统\源码\check.aspx.cs
文件 10962 2008-12-13 09:18 网上书店管理系统\源码\checkOut.aspx
文件 11728 2008-12-13 09:09 网上书店管理系统\源码\checkOut.aspx.cs
文件 8832 2010-05-02 17:43 网上书店管理系统\源码\Default.aspx
文件 3790 2010-05-04 09:05 网上书店管理系统\源码\Default.aspx.cs
文件 4947 2008-11-14 16:37 网上书店管理系统\源码\goodsList.aspx
文件 5862 2008-12-12 22:24 网上书店管理系统\源码\goodsList.aspx.cs
文件 4463 2008-12-07 14:54 网上书店管理系统\源码\images\1.jpg
文件 15100 2008-12-07 15:09 网上书店管理系统\源码\images\2.jpg
文件 31896 2008-12-07 15:23 网上书店管理系统\源码\images\3.jpg
文件 35823 2008-12-07 16:02 网上书店管理系统\源码\images\4.jpg
文件 27165 2010-05-13 12:50 网上书店管理系统\源码\images\5.jpg
文件 79153 2008-12-07 16:07 网上书店管理系统\源码\images\6.jpg
............此处省略138个文件信息
- 上一篇:C#版中国象棋游戏大厅版
- 下一篇:教务管理系统(毕业设计)源码
相关资源
- 教务管理系统(毕业设计)源码
- 超市管理系统(C#源码) 超市管理系
- asp.net(c#)开源权限管理系统
- 小区物业管理系统c#
- ASP.NET在线图书销售系统
- 人员管理系统源码
- C#学生信息管理系统用VS2008编写的学生
- asp.net学生公寓管理系统
- 学分预警系统
- 人事工资管理系统ASP.NET+SQL server
- 基于三层架构的C#电影售票系统
- winform酒店管理系统
- C#基于CS开发的人力资源管理系统
- 学生管理系统c#课设窗体技术
- 电子购物商城系统C#实现
- 宾馆客房管理信息系统C#课程设计含数
- ASP.NET网上投票系统
- 图书管理系统文档数据流图、数据流
- 基于C#与SQL开发的图书管理系统VS201
- c#和sqlserver编写的学生信息管理系统
- asp.net+sqlserver小区物业管理系统
- C# 小区物业管理系统 SqlServer
- 部门信息管理系统
- c# asp.net 在线投稿审稿系统
- Winform模仿360系统安全工具源码.zip
- 网上购物系统源代码
- 自己做的文献检索系统 毕业设计 论文
- c#小型超市管理系统
- 毕业设计 基于C#的大型企业物流管理
- 电影网站管理系统.NET vs2008+sql2005,
评论
共有 条评论