• 大小: 4.63M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2024-04-24
  • 语言: C#
  • 标签: Aspx  asp  花店  销售  

资源简介


资源截图

代码片段和文件信息

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();
                    
                }
              

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3326  2020-08-17 09:56  51Aspx源码必读.txt
     目录           0  2020-08-17 09:46  App_Code\
     文件        2115  2019-03-25 12:01  App_Code\AssemblyInfo.cs
     文件        1217  2019-03-25 12:01  App_Code\CleanString.cs
     文件        1702  2019-03-25 12:01  App_Code\DBConn.cs
     文件        1371  2019-03-25 12:01  App_Code\Global.asax.cs
     文件        1801  2019-03-25 12:01  App_Code\Order.cs
     文件        2891  2019-03-25 12:01  App_Code\myOleDbPager.cs
     文件        1538  2019-03-25 12:01  C_SellSQL.sln
     文件        2855  2019-03-25 12:01  Edit.aspx
     文件        3469  2019-03-25 12:01  Edit.aspx.cs
     文件          58  2019-03-25 12:01  Global.asax
     文件        1435  2019-03-25 12:01  LeaveWord.aspx
     文件        1360  2019-03-25 12:01  LeaveWord.aspx.cs
     文件        3186  2019-03-25 12:01  P_OderInfo.aspx
     文件        1022  2019-03-25 12:01  P_OderInfo.aspx.cs
     文件        3175  2019-03-25 12:01  Reg.aspx
     文件        2868  2019-03-25 12:01  Reg.aspx.cs
     文件       11968  2019-04-17 10:56  Select.aspx
     文件        3404  2019-03-25 12:01  Select.aspx.cs
     文件          87  2019-03-25 12:01  ValidateCode.aspx
     文件        2759  2019-03-25 12:01  ValidateCode.aspx.cs
     文件        4408  2020-03-22 18:27  Web.config
     目录           0  2020-08-17 09:46  admin\
     文件        4367  2019-03-25 12:01  admin\Info_Bm.aspx
     文件        3829  2019-03-25 12:01  admin\Info_Bm.aspx.cs
     文件        3310  2019-03-25 12:01  admin\View_User.aspx
     文件        3643  2019-03-25 12:01  admin\View_User.aspx.cs
     文件        3610  2019-03-25 12:01  admin\adminAdd.aspx.cs
     文件        1256  2019-03-25 12:01  admin\adminDisplay.aspx.cs
     文件        3113  2019-03-25 12:01  admin\adminList.aspx.cs
............此处省略248个文件信息

评论

共有 条评论