asp.net三層架構增刪改查

来源:https://www.cnblogs.com/zuozhaoquan/archive/2019/01/25/10317886.html
-Advertisement-
Play Games

資料庫 鏈接資料庫Web.config Model層managementModel類 DAL層添加引用 Model層添加程式集引用 using System.Configuration;managementDAL類 DBHelper類 BLL層添加引用 Model層添加引用 DAL層 UI 層添加引 ...


資料庫

use master
if exists (select * from sysdatabases where name='bond')
drop database bond
create database bond
on PRIMARY
(
name='bond_data',
FILENAME='F:\asp\理財代銷\management\bond.mdf',
filegrowth=20%,
size=10MB
)
LOG ON
(
name='bond_log',
FILENAME='F:\asp\理財代銷\management\bond_log.ldf',
size=3MB,
MAXSIZE=20MB
)




use bond
--基金類型表(左用)
if exists (select * from sys.objects where name='jjlx')
drop table jjlx
create table jjlx
(
id int primary key identity(1,1),                     --id
jjlx varchar(50) not null                            --基金類型
)

--基金類型表增加存儲過程
if exists(select * from sys.objects where name='jjlx_add')
drop procedure jjlx_add
go
create proc jjlx_add
@jjlx varchar(50) 
as
insert into jjlx values (@jjlx)
go
--基金類型表查詢存儲過程
if exists(select * from sys.objects where name='p_jjlx')
drop procedure p_jjlx
go
create proc p_jjlx
as
select * from jjlx
go
--基金類型表修改存儲過程
if exists(select * from sys.objects where name='jjlx_gai')
drop procedure jjlx_gai
go
create proc jjlx_gai
@id int,
@jjlx varchar(50)
as
UPDATE jjlx SET jjlx=@jjlx where  id=@id 
go
--基金類型表刪除存儲過程
if exists(select * from sys.objects where name='jjlx_delete')
drop procedure jjlx_delete
go
create proc jjlx_delete
@id int,
@jjlx varchar(50)
as
delete from jjlx where id=@id and jjlx=@jjlx
go

鏈接資料庫
Web.config

<connectionStrings>
  <add name="conn" connectionString="server=.;database=bond;integrated security=true" />
 </connectionStrings>

Model層
managementModel類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace managementModel
{
    public class jjlxs//基金類型表
    {
        public int id { set; get; }//id
        public string jjlx { set; get; } //基金類型

    }
}

DAL層
添加引用 Model層
添加程式集引用 using System.Configuration;
managementDAL類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.SqlClient;
using System.Data;
using managementModel;
namespace managementDAL
{
    public class jjlxdal
    {
        DBHelper db = new DBHelper();
        /// <summary>
        /// 查詢基金類型
        /// </summary>
        /// <returns></returns>
        public DataSet Searchjjlx()
        {
            string sql = "p_jjlx";
            return db.Search(sql);
        }
        /// <summary>
        /// 增加基金類型
        /// </summary>
        /// <param name="stu"></param>
        /// <returns></returns>
        public int Insertjjlx(jjlxs stujjlx)
        {
            string sql = "jjlx_add";
            SqlParameter[] para ={
                           new SqlParameter("@jjlx",stujjlx.jjlx)   
                           };
            return db.IUD(sql, para);
        }
        /// <summary>
        /// 修改基金類型
        /// </summary>
        /// <param name="stu"></param>
        /// <returns></returns>
        public int Udatejjlx(jjlxs stujjlx)
        {
            string sql = "jjlx_gai";
            SqlParameter[] para ={
                           new SqlParameter("@id",stujjlx.id),
                           new SqlParameter("@jjlx",stujjlx.jjlx)
                           };
            return db.IUD(sql, para);
        }
        /// <summary>
        /// 刪除基金類型
        /// </summary>
        /// <param name="stu"></param>
        /// <returns></returns>
        public int Deletejjlx(jjlxs stujjlx)
        {
            string sql = "jjlx_delete";
            SqlParameter[] para ={
                          new SqlParameter("@id",stujjlx.id),
                           new SqlParameter("@jjlx",stujjlx.jjlx)
                           };
            return db.IUD(sql, para);
        }
    }
}

DBHelper類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
namespace managementDAL
{
    public class DBHelper
    {
        public static string conn = ConfigurationManager.ConnectionStrings["conn"].ToString();
        /// <summary>
        /// 增刪改的方法
        /// </summary>
        /// <param name="sql">增刪改的存儲過程</param>
        /// <param name="param">存儲過程使用的參數</param>
        /// <returns></returns>
        public int IUD(string sql, SqlParameter[] param)
        {
            int count = 0;
            SqlConnection con = new SqlConnection(conn);
            con.Open();
            SqlCommand com = new SqlCommand(sql, con);
            com.CommandType = CommandType.StoredProcedure;
            com.Parameters.AddRange(param);
            count = com.ExecuteNonQuery();
            con.Close();
            return count;
        }
        /// <summary>
        /// 查詢返回DATASET
        /// </summary>
        /// <param name="sql"></param>
        /// <returns></returns>
        public DataSet Search(string sql)
        {
            DataSet ds = new DataSet();
            SqlConnection con = new SqlConnection(conn);
            SqlDataAdapter adapter = new SqlDataAdapter(sql, con);
            adapter.Fill(ds);
            return ds;
        }
      
    }
}

BLL層
添加引用 Model層
添加引用 DAL層

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using managementDAL;
using managementModel;
using System.Data;
namespace managementBLL
{
   public  class jjlxbll
    {
       jjlxdal dal = new jjlxdal();
       /// <summary>
       /// 查詢基金類型
       /// </summary>
       /// <returns></returns>
       public DataSet Searchjjlx() {
           return dal.Searchjjlx();
       }
       /// <summary>
       /// 增加基金類型
       /// </summary>
       /// <param name="stu"></param>
       /// <returns></returns>
       public bool Insertjjlx(jjlxs stujjlx)
       {
           bool flag = false;
           if (stujjlx.jjlx.Length != 0)
           {
               int count = dal.Insertjjlx(stujjlx);
               if (count > 0)
               {
                   flag = true;
               }
           }
           return flag;
       }
       /// <summary>
       /// 修改基金類型
       /// </summary>
       /// <param name="stujjlx"></param>
       /// <returns></returns>
       public bool Udatejjlx(jjlxs stujjlx)
       {
           bool flag = false;
           if (stujjlx.jjlx.Length != 0&&stujjlx.id!=0)
           {
               int count = dal.Udatejjlx(stujjlx);
               if (count > 0)
               {
                   flag = true;
               }
           }
           return flag;
       }
       /// <summary>
       /// 刪除基金類型
       /// </summary>
       /// <param name="stujjlx"></param>
       /// <returns></returns>
       public bool Deletejjlx(jjlxs stujjlx)
       {
           bool flag = false;
           if (stujjlx.jjlx.Length != 0 && stujjlx.id != 0)
           {
               int count = dal.Deletejjlx(stujjlx);
               if (count > 0)
               {
                   flag = true;
               }
           }
           return flag;
       }
    }
}

UI 層
添加引用 Model層
添加引用 BLL層
基金類型.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="基金類型表.aspx.cs" Inherits="management.index" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Label ID="Label2" runat="server" Text="類型id:"></asp:Label>
&nbsp;
        <asp:TextBox ID="txtid" runat="server"></asp:TextBox>
    <div>
    
    </div>
        <asp:Label ID="Label1" runat="server" Text="基金類型:"></asp:Label>
        <asp:TextBox ID="txtjjlx" runat="server"></asp:TextBox>
        <br />
        <br />
        <asp:Button ID="btnadd" runat="server" OnClick="btnadd_Click" Text="增加" />
        <asp:Button ID="btndelete" runat="server" OnClick="btndelete_Click" Text="刪除" />
        <asp:Button ID="btngai" runat="server" OnClick="btngai_Click" Text="修改" />
        <br />
        <table border="1">
            <tr><th>類型id</th><th>基金類型</th></tr>
        <asp:Repeater ID="repjjlx" runat="server">
            <ItemTemplate>
                <tr>
                    <td><%#Eval("id") %></td>
                    <td><%#Eval ("jjlx") %></td>
                </tr>
            </ItemTemplate>
        </asp:Repeater>
        </table>
    </form>
</body>
</html>

基金類型.aspx.cs
基金類型.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls; 
using managementBLL;
using System.Data;
using managementModel;
namespace management
{
    public partial class index : System.Web.UI.Page
    {
        jjlxbll bll = new jjlxbll();
        protected void Page_Load(object sender, EventArgs e)
        {
            Bind();
        }
        public void Bind() {

            this.repjjlx.DataSource = bll.Searchjjlx().Tables[0];
            this.repjjlx.DataBind();
        }
        protected void btnadd_Click(object sender, EventArgs e)
        {
            jjlxs stujjlx = new jjlxs {jjlx=txtjjlx.Text };
            if (bll.Insertjjlx(stujjlx))
            {
                Bind();
                Response.Write("<script>alert('增加成功!')</script>");
            }
            else {
                Response.Write("<script>alert('增加失敗!')</script>");
            }
        }

        protected void btndelete_Click(object sender, EventArgs e)
        {
            jjlxs stujjlx = new jjlxs();
            stujjlx.id = Convert.ToInt32(txtid.Text);
            stujjlx.jjlx = txtjjlx.Text;
            if (bll.Deletejjlx(stujjlx))
            {
                Bind();
                Response.Write("<script>alert('刪除成功!')</script>");
            }
            else
            {
                Response.Write("<script>alert('刪除失敗!')</script>");
            }
        }

        protected void btngai_Click(object sender, EventArgs e)
        {
            jjlxs stujjlx = new jjlxs();
            stujjlx.id = Convert.ToInt32(txtid.Text);
            stujjlx.jjlx = txtjjlx.Text;
            if (bll.Udatejjlx(stujjlx))
            {
                Bind();
                Response.Write("<script>alert('修改成功!')</script>");
            }
            else
            {
                Response.Write("<script>alert('修改失敗!')</script>");
            }
            
        }
    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 遞歸 一個函數在執行過程中一次或多次調用其本身便是遞歸,就像是俄羅斯套娃一樣,一個娃娃里包含另一個娃娃。 遞歸其實是程式設計語言學習過程中很快就會接觸到的東西,但有關遞歸的理解可能還會有一些遺漏,下麵對此方面進行更加深入的理解 遞歸的分類 這裡根據遞歸調用的數量分為線性遞歸、二路遞歸與多重遞歸 線性 ...
  • 背景介紹 JSF(京東服務框架,類似dubbo)預設配置了可伸縮的最大到200的工作線程池,每一個向外提供的服務都在其中運行(這裡我們是服務端),這些服務內部調用外部依賴時(這裡我們是客戶端)一般是同步調用,不單獨限制調用併發量,因為同步調用時會阻塞原服務線程,因此實際上所有外部調用共用了JSF的2 ...
  • 0. 寫在最前面 之前實習天天在寫業務,其中有一個業務是非常的複雜,涉及到了特別多的表。最後測下來,一個介面的時間,竟然要5s多。 當時想寫一個AOP,來計算處理介面花費多長時間,也就是在業務邏輯的前面計算開始的時間,業務邏輯後面計算結束的時間,一相減即可。 但我發覺我竟然忘記怎麼寫了,哎,沒辦法, ...
  • 生成器 函數體內有yield選項的就是生成器,生成器的本質是迭代器,由於函數結構和生成器結構類似,可以通過調用判斷是函數還是生成器.如下: 生成器的優點就是節省記憶體.Python獲取生成器的二種方式: 通過函數獲取生成器 通過生成器推導式創建生成器 通過函數獲取生成器 從列印內容可以看出是生成器.但 ...
  • 前言 前面我們講到了《函數指針》,今天我們看一個編程技巧-函數跳轉表。我們先來看如何實現一個簡易計算器。 初始版本 讓我們實現一個簡易計算器,我們首先能想到的方式是什麼?switch語句或者if else語句。沒錯,初學就會想到的兩種方式,我們來看看這種實現方式。這裡我們選擇switch語句,定義一 ...
  • CURL是一個非常強大的開源庫,支持很多協議,包括HTTP、FTP、TELNET等,我們使用它來發送HTTP請求。它給我 們帶來的好處是可以通過靈活的選項設置不同的HTTP協議參數,並且支持HTTPS。CURL可以根據URL首碼是“HTTP” 還是“HTTPS”自動選擇是否加密發送內容。 使用CUR ...
  • 閱讀目錄: 1.變數 2.用戶與程式交互 3.基本數據類型 4.格式化輸出 5.基本運算符 6.流程式控制制之if....else 7.流程式控制制之while迴圈 8.流程式控制制之for迴圈 9.開發工具IDE 10.擴展閱讀 11:作業 1.變數 定義變數會有 id type value 常量 2.用戶與 ...
  • 最近開始整理python的資料,博主建立了一個qq群,希望給大家提供一個交流的同平臺:78486745 。 當我們認為某些代碼可能會出錯時,就可以用try來運行這段代碼,如果執行出錯,則後續代碼不會繼續執行,而是直接跳轉至錯誤處理代碼,即except語句塊,執行完except後,如果有finally ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...