• 大小: 1MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-03
  • 语言: C#
  • 标签: 完整可用  .net  

资源简介

利用.net制作的建议购物网站 asp.net课程实验。 可现用。

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
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;
using System.xml.Linq;
using System.Data.SqlClient;

public partial class Buy1 : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        if (Application[“a“] != “a“)
        {
            Response.Write(“您尚未登录!“);
            Response.Redirect(“Login.aspx“);
        }

        if (Application[“Count“] == null) Application[“Count“] = 1;
        else
        {
            int n = (int)Application[“Count“];
            n++;
            Application[“Count“] = n;
        }
        Response.Write(“页面访问量“ + Application[“Count“]+ “
“);
    }
    protected void Button1_Click(object sender EventArgs e)
    {
        if (CheckBox1.Checked) Session[“b1“] = CheckBox1.Text; else Session[“b1“] = null;
        if (CheckBox2.Checked) Session[“b2“] = CheckBox2.Text; else Session[“b2“] = null;
        if (CheckBox3.Checked) Session[“b3“] = CheckBox3.Text; else Session[“b3“] = null;
        if (Application[“sessionid“] == null) Application[“sessionid“] = 1;
        else
        {
            int n = (int)Application[“sessionid“];
            n++;
            Application[“sessionid“] = n;
        }
        SqlConnection sqlcon = new SqlConnection(@“Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;
Integrated Security = true;User Instance= true“);
        sqlcon.Open();
        for (int i = 0; i         {
            if (Session[i] != null)
            {
                SqlCommand sqlcom = new SqlCommand(“insert into shopping values(‘“ + Application[“sessionid“] + “‘‘“ + Session[i] + “‘)“ sqlcon);
                sqlcom.ExecuteNonQuery();

            }
        }
        Response.Write(“购买成功!“);
        sqlcon.Close();
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1055  2012-11-02 01:34  购物\Buy1.aspx

     文件       2095  2012-11-02 01:55  购物\Buy1.aspx.cs

     文件       1055  2012-11-02 01:34  购物\Buy2.aspx

     文件       2095  2012-11-02 01:55  购物\Buy2.aspx.cs

     文件        913  2012-11-02 01:04  购物\Cart.aspx

     文件        604  2012-11-02 01:31  购物\Cart.aspx.cs

     文件       1206  2012-11-01 23:27  购物\Login.aspx

     文件       1471  2012-11-02 13:04  购物\Login.aspx.cs

     文件        696  2012-11-01 23:49  购物\sqldata.aspx

     文件        452  2012-11-01 23:29  购物\sqldata.aspx.cs

     文件       1825  2013-01-06 19:06  购物\web.config

     文件       5535  2012-11-02 12:58  购物\App_Code\sqldata.cs

     文件    2293760  2013-01-06 19:12  购物\App_Data\Database.mdf

     文件    1114112  2013-01-06 19:12  购物\App_Data\Database_log.LDF

     目录          0  2012-11-02 12:58  购物\App_Code

     目录          0  2012-11-01 22:12  购物\App_Data

     目录          0  2013-01-04 12:53  购物

----------- ---------  ---------- -----  ----

              3426874                    17


评论

共有 条评论