• 大小: 2.55MB
    文件类型: .xz
    金币: 1
    下载: 0 次
    发布日期: 2023-10-02
  • 语言: C#
  • 标签: 课程设计  

资源简介

应用技术成熟的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=“);
    }
}

评论

共有 条评论