• 大小: 5.77MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-14
  • 语言: C#
  • 标签:

资源简介

二手书网络交易源码,利用C#写的,值得学习的。

资源截图

代码片段和文件信息

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;
namespace SCard
{

    public partial class Reg : System.Web.UI.Page
    {
        public string newid;

        protected void Button1_Click(object sender EventArgs e)
        {


            string DBPath = ConfigurationSettings.AppSettings[“DatabasePath“];
            string connStr = (DBPath);
            SqlConnection con = new SqlConnection(connStr);
        
            con.Open();
            if (this.txtUserName.Text.ToString().Length == 0)
            {
                Response.Write(“ript>alert(‘用户名称未填写‘)ript>“);
                return;
            }

            string UserName Psw 年龄 联系方式 备注 真实姓名;


            UserName = this.txtUserName.Text;
            Psw = this.txtPsw.Text;
            真实姓名 = this.TextBox1.Text;
            联系方式=txtZh.Text;
            年龄 = this.txtOld.Text;
   
            备注 = this.txtNode.Text;
            string sSql;
            if (Psw + ““ != ““)
            { sSql = “Update tblUser set  username=‘“ + UserName + “‘联系方式=‘“ + 联系方式 + “‘  真实姓名=‘“ + 真实姓名 + “‘Psw=‘“ + Psw + “‘年龄=‘“ + 年龄 + “‘备注=‘“ + 备注 + “‘where UserName=‘“ + Label1.Text + “‘“; }
            else
            { sSql = “Update tblUser set  username=‘“ + UserName + “‘联系方式=‘“ + 联系方式 + “‘  真实姓名=‘“ + 真实姓名 + “‘年龄=‘“ + 年龄 + “‘备注=‘“ + 备注 + “‘where UserName=‘“ + Label1.Text + “‘“; }
            

            SqlCommand cmd = new SqlCommand(sSql con);
            cmd.ExecuteNonQuery();

            Response.Write(“ript>alert(‘用户信息修改成功!请重新登陆‘)ript>“);
            

        }
        //页面加载
        protected void Page_Load(object sender EventArgs e)
        {
            if (!this.IsPostBack)
            {
                newid = Request.Params[“id“];
                Label1.Text = newid;

                string DBPath = ConfigurationSettings.AppSettings[“DatabasePath“];
                string connStr = (DBPath);
                SqlConnection con = new SqlConnection(connStr);

                con.Open();

                SqlCommand command = new SqlCommand(“select * from tblUser where UserName=‘“ + newid + “‘“ con);
                SqlDataReader sdr = command.ExecuteReader();
                if (sdr.Read())
                {
                    txtUserName.Text = sdr[“UserName“].ToString();
                    TextBox1.Text = sdr[“真实姓名“].ToString();
                    txtPsw.Text = sdr[“Psw“].ToString();
                    txtNode.Text = sdr[“备注“].ToString();
           txtZh.Text = sdr[“联系方式“].ToString();
                    this.txtOld.Text = sdr[“年龄“].ToString();
    
                    sdr.Close();
                    
                }
              

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2273  2014-04-22 15:27  51Aspx源码必读.txt
     目录           0  2014-04-21 09:53  App_Code\
     文件        2115  2006-12-12 20:31  App_Code\AssemblyInfo.cs
     文件        1217  2006-12-12 20:31  App_Code\CleanString.cs
     文件        1702  2008-12-09 11:55  App_Code\DBConn.cs
     文件        1371  2006-12-12 20:31  App_Code\Global.asax.cs
     文件        1801  2006-12-12 20:31  App_Code\Order.cs
     文件        2891  2007-05-17 17:06  App_Code\myOleDbPager.cs
     文件        1510  2014-04-22 13:18  C_SellSQL.sln
     目录           0  2014-04-22 15:06  DB_51aspx\
     文件     4194304  2014-04-22 15:05  DB_51aspx\C_net_Sell_Data.MDF
     文件     4325376  2014-04-22 15:05  DB_51aspx\C_net_Sell_Log.LDF
     文件        2855  2008-12-07 22:00  Edit.aspx
     文件        3469  2008-12-07 22:02  Edit.aspx.cs
     文件          58  2006-12-12 20:30  Global.asax
     文件        1435  2008-12-12 22:15  LeaveWord.aspx
     文件        1360  2008-12-11 10:17  LeaveWord.aspx.cs
     文件        3188  2010-05-06 12:08  P_OderInfo.aspx
     文件        1022  2008-12-11 11:50  P_OderInfo.aspx.cs
     文件        3175  2008-12-07 21:58  Reg.aspx
     文件        2868  2008-12-11 12:19  Reg.aspx.cs
     文件       11959  2010-05-06 12:08  Select.aspx
     文件        3406  2010-05-06 12:08  Select.aspx.cs
     文件          87  2006-12-12 20:30  ValidateCode.aspx
     文件        2759  2008-12-11 12:33  ValidateCode.aspx.cs
     文件        8272  2014-04-22 13:42  Web.config
     目录           0  2014-04-22 15:14  admin\
     文件        4367  2008-12-12 21:42  admin\Info_Bm.aspx
     文件        3829  2008-12-09 11:46  admin\Info_Bm.aspx.cs
     文件        3310  2008-11-12 12:43  admin\View_User.aspx
     文件        3643  2008-12-11 10:14  admin\View_User.aspx.cs
............此处省略222个文件信息

评论

共有 条评论

相关资源