最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

ASP.NET書籍信息錄入實現(xiàn)代碼

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 22:38:10
文檔

ASP.NET書籍信息錄入實現(xiàn)代碼

ASP.NET書籍信息錄入實現(xiàn)代碼:1、 在數(shù)據(jù)庫中建立一個test數(shù)據(jù)庫,在test數(shù)據(jù)庫中建立一個book_info表。 Book_name varchar(100) Author varchar(50) Press varchar(50) Press_date varchar(20) Image varchar(30) 2、 制作一個如下頁面: 當單擊插
推薦度:
導讀ASP.NET書籍信息錄入實現(xiàn)代碼:1、 在數(shù)據(jù)庫中建立一個test數(shù)據(jù)庫,在test數(shù)據(jù)庫中建立一個book_info表。 Book_name varchar(100) Author varchar(50) Press varchar(50) Press_date varchar(20) Image varchar(30) 2、 制作一個如下頁面: 當單擊插

1、 在數(shù)據(jù)庫中建立一個test數(shù)據(jù)庫,在test數(shù)據(jù)庫中建立一個book_info表。
       Book_name      varchar(100)
        Author               varchar(50)
         Press               varchar(50)
       Press_date      varchar(20)
         Image              varchar(30)

2、 制作一個如下頁面:

當單擊“插入圖書信息”按鈕時,將用戶的信息保存到book_info表中。注意:封面圖片要求先上傳到網(wǎng)站根目錄下的“upload”文件夾中,再將圖片在網(wǎng)站中的相對路徑保存到數(shù)據(jù)庫book_info表的Image字段中。
布局代碼:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
 <title></title> 
</head> 
<body> 
 <form id="form1" runat="server"> 
 <table> 
 <tr> 
 <td><asp:Label ID="Label1" runat="server" Text="書名:"></asp:Label></td> 
 <td><asp:TextBox ID="TextBox1" 
 runat="server"></asp:TextBox> 
 </td> 
 </tr> 
 <tr> 
 <td><asp:Label ID="Label2" runat="server" Text="作者:"></asp:Label></td> 
 <td> <asp:TextBox ID="TextBox2" 
 runat="server"></asp:TextBox></td> 
 </tr> 
 <tr> 
 <td> <asp:Label ID="Label3" runat="server" Text="出版社:"></asp:Label></td> 
 <td><asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"> 
 <asp:ListItem>清華大學出版社</asp:ListItem> 
 <asp:ListItem>機械工業(yè)出版社</asp:ListItem> 
 <asp:ListItem>人民郵電出版社</asp:ListItem> 
 <asp:ListItem>電子工業(yè)出版社</asp:ListItem> 
 </asp:DropDownList></td> 
 </tr> 
 <tr> 
 <td><asp:Label ID="Label4" runat="server" Text="出版日期:"></asp:Label></td> 
 <td><asp:Calendar ID="Calendar1" runat="server"></asp:Calendar></td> 
 </tr> 
 <tr> 
 <td> 
 <asp:Label ID="Label5" runat="server" Text="封面圖片:"></asp:Label></td> 
 <td> 
 <asp:FileUpload ID="FileUpload1" runat="server" /></td> 
 </tr> 
 <tr> 
 <td></td> 
 <td> 
 <asp:Button ID="Button1" runat="server" Text="插入圖片信息" onclick="Button1_Click" /></td> 
 </tr> 
 </table> 
 </form> 
 
</body> 
</html> 

cs代碼

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 Button1_Click(object sender, EventArgs e) 
 { 
 string savePath = Server.MapPath("~/images/"); 
 if (FileUpload1.HasFile) 
 { 
 String fileName = FileUpload1.FileName; 
 savePath += fileName; 
 FileUpload1.SaveAs(savePath); 
 } 
 string sql = "Data Source=A25;Initial Catalog=test;Integrated Security=True"; 
 string sqlStr = @"Insert into book_info(Book_name,Author,Press,Press_date,Image) values 
 ('" + TextBox1.Text + "','" + TextBox2.Text + "','" + DropDownList1.SelectedItem.Text + "','" 
 + Calendar1.SelectedDate.ToShortDateString() + "','" + FileUpload1.FileName + "')"; 
 using (SqlConnection conn = new SqlConnection(sql)) 
 { 
 conn.Open(); 
 using (SqlCommand cmd = conn.CreateCommand()) 
 { 
 cmd.CommandText = sqlStr; 
 cmd.ExecuteNonQuery(); 
 } 
 } 
 Response.Write("插入成功!"); 
 } 
} 

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

ASP.NET書籍信息錄入實現(xiàn)代碼

ASP.NET書籍信息錄入實現(xiàn)代碼:1、 在數(shù)據(jù)庫中建立一個test數(shù)據(jù)庫,在test數(shù)據(jù)庫中建立一個book_info表。 Book_name varchar(100) Author varchar(50) Press varchar(50) Press_date varchar(20) Image varchar(30) 2、 制作一個如下頁面: 當單擊插
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top