资源简介
应用技术成熟的ASP.NET和SQL SERVER 架构来实现。让用户享受购物模式的便利性,为企业提供了新的途径。它以网络为基础,帮助用户和商家解决传统购物模式的所出现的问题。降低企业和个人的成本将信息有效的共享,在提供安全的交易平台下,是一种高效率可移植可扩展的分布式购物系统。本课题实现商品展示、用户订单管理、购物车功能和订单提交功能以及后台综合功能管理模块。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
}
protected void Button2_Click(object sender EventArgs e)
{
SqlConnection conn = new SqlConnection();
conn.ConnectionString = “Data Source=HU-PC;initial catalog=net课程设计;integrated security=sspi“;
string strUname = TextBox2.Text;
string strpwd = TextBox3.Text;
string strsql = “select ident from userinfo where 用户名=‘“ + strUname+“‘ and 密码=‘“+strpwd+“‘“;
conn.Open();
SqlCommand comm = new SqlCommand(strsql conn);
object x = comm.ExecuteScalar();
int intident;
if (x == null)
{
Label4.Text = “你输入的用户名或密码不正确。“;
Label4.ForeColor = System.Drawing.Color.Red;
Session[“pass“] = null;
}
else
{
Session[“pass“] = “right“;
Session[“username“] = strUname;
intident = (int)x;
if (intident == 0)
{
Label4.Text = ““;
Response.Redirect(“master.aspx?name=“ + TextBox2.Text);
}
else if (intident == 1) //普通会员
{
Label4.Text = ““;
Response.Redirect(“商品首页.aspx?name=“ + TextBox2.Text);
}
}
conn.Close();
}
protected void Button3_Click(object sender EventArgs e)
{
Response.Redirect(“register.aspx?name=“);
}
}
- 上一篇:职工工资管理系统C#课程设计含数据库
- 下一篇:C#操作excel123362
相关资源
- 职工工资管理系统C#课程设计含数据库
- 医药销售管理系统 数据库课程设计
- c#数据库汽车销售课程设计
- c#课程设计蓝山人事管理
- ADO.NET数据库课程设计—汽车销售系统
- 超市会员管理系统-数据库课程设计
- 学生信息管理系统C#winform实现课程设
- C#与数据库课程设计图书管理系统+报
- 影碟租赁管理系统C# 可视化
- ASP.NET在线论坛课程设计
- 医院管理系统ASP.NET课程设计
- 图书管理系统ASP.NET课程设计源码
- 餐馆管理系统C#课程设计含数据库
- 图书管理系统C#课程设计+sqlsever数据库
- 新鲜出炉—仓库管理系统课程设计(
- c#课程设计--在线考试系统
- C#停车场管理系统的设计与实现VS201
- C#简易写字板记事本-课程设计-实验
- 数据库 asp.net 课程设计(内含5个文件
- c# asp.net 课程设计
- 数据库课程设计医院门诊管理系统
- 教务处教室管理系统软件工程课程设
- asp.net课程设计带文档
- asp.net 学生成绩管理系统代码和课程设
- 汽车销售管理系统 数据库课程设计
- C#课程设计学生管理系统
- 简单的学籍管理系统C#课程设计含数据
- C#图书馆信息管理系统_课程设计源码
- asp.net课程设计-留言板
- ASP.NET投票系统
评论
共有 条评论