• 大小: 102KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-24
  • 语言: 其他
  • 标签: Asp.NET  Sql  

资源简介

en 这个可是CSDN上没有的 我在程序员联合网站 用积分下的哦 哎 还真不错

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Configuration;
using System.Threading;
using System.Globalization;

namespace Trip
{
/// 
/// AddTrip 的摘要说明。
/// 

public class AddTrip : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox show;
protected System.Web.UI.WebControls.Button Btn_ok;
protected System.Web.UI.WebControls.Button Btn_cancel;
protected System.Web.UI.WebControls.TextBox Num;
protected System.Web.UI.WebControls.TextBox name;
protected System.Web.UI.WebControls.DropDownList line;
protected System.Web.UI.WebControls.TextBox Tell;
protected System.Web.UI.WebControls.TextBox Address;
protected System.Web.UI.WebControls.Label Lbl_note;
SqlConnection cn;

private void Page_Load(object sender System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
string strconn=ConfigurationSettings.AppSettings[“ConnectionString“];
cn=new SqlConnection(strconn);
cn.Open();
string sSQL=“select line from arrange“;
SqlCommand command = new SqlCommand(sSQLcn);
SqlDataReader reader = command.ExecuteReader();

while(reader.Read()) 
{
line.Items.Add(new ListItem(reader[0].ToString()reader[0].ToString()));

}
reader.Close();
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{    
this.Btn_ok.Click += new System.EventHandler(this.Btn_ok_Click);
this.Btn_cancel.Click += new System.EventHandler(this.Btn_cancel_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Btn_ok_Click(object sender System.EventArgs e)
{
if(Page.IsValid)
{
SqlCommand cm=new SqlCommand(“Add_Trip“cn);
cm.CommandType=CommandType.StoredProcedure;
DateTime dt=DateTime.Now;
cm.Parameters.Add(new SqlParameter(“@name“SqlDbType.VarChar50));
cm.Parameters.Add(new SqlParameter(“@line“SqlDbType.VarChar100));
cm.Parameters.Add(new SqlParameter(“@Num“SqlDbType.Char8));
cm.Parameters.Add(new SqlParameter(“@Address“SqlDbType.VarChar50));
cm.Parameters.Add(new SqlParameter(“@Tell“SqlDbType.VarChar50));
cm.Parameters.Add(new SqlParameter(“@show“SqlDbType.VarChar500));
cm.Parameters.Add(new SqlParameter(“@systime“SqlDbType.DateTime8));


cm.Parameters[“@name“].Value=name.Text;
cm.Parameters[“@line“].Value=line.SelectedValue.ToString();
cm.Parameters[“@Num“].Value=Num.Text;
cm.Parameters[“@A

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

     文件        420  2005-09-21 16:56  Char11\readme.txt

     文件    1001984  2005-04-23 15:55  Char11\database\trip

     文件       3377  2005-05-23 15:43  Char11\Trip\AddTrip.aspx

     文件       3622  2005-05-23 15:43  Char11\Trip\AddTrip.aspx.cs

     文件       5317  2005-04-20 16:49  Char11\Trip\AddTrip.aspx.resx

     文件       2115  2005-04-20 14:41  Char11\Trip\AssemblyInfo.cs

     文件       2176  2005-04-20 16:07  Char11\Trip\Default.aspx

     文件       1623  2005-04-20 16:01  Char11\Trip\Default.aspx.cs

     文件       5317  2005-04-20 16:01  Char11\Trip\Default.aspx.resx

     文件         71  2005-04-20 14:41  Char11\Trip\Global.asax

     文件       1370  2005-04-20 14:41  Char11\Trip\Global.asax.cs

     文件       1733  2002-01-30 13:04  Char11\Trip\Global.asax.resx

     文件       7513  2005-05-21 16:51  Char11\Trip\Trip.csproj

     文件        106  2005-05-23 15:36  Char11\Trip\Trip.csproj.webinfo

     文件       1436  2005-04-20 14:44  Char11\Trip\Trip.css

     文件        915  2005-05-21 16:51  Char11\Trip\Trip.sln

    ..A..H.      8704  2005-05-23 15:43  Char11\Trip\Trip.suo

     文件       4358  2005-04-20 14:44  Char11\Trip\Web.config

     文件       1656  2005-05-23 15:42  Char11\Trip\header.ascx

     文件       1297  2005-04-20 14:58  Char11\Trip\header.ascx.cs

     文件       5317  2005-04-20 14:58  Char11\Trip\header.ascx.resx

     文件       2559  2005-04-20 16:21  Char11\Trip\plan.aspx

     文件       1994  2005-04-20 16:30  Char11\Trip\plan.aspx.cs

     文件       5317  2005-04-20 16:27  Char11\Trip\plan.aspx.resx

     文件        755  2005-03-19 13:53  Char11\Trip\images\2501.jpg

     文件         63  2005-01-28 15:07  Char11\Trip\images\point2.gif

     文件        849  2003-02-18 10:44  Char11\Trip\images\sds01_r2_c8.gif

     文件         54  2003-04-10 14:14  Char11\Trip\images\topbg.gif

     文件      24576  2005-05-23 15:37  Char11\Trip\bin\Trip.dll

     文件      30208  2005-05-23 15:37  Char11\Trip\bin\Trip.pdb

............此处省略19个文件信息

评论

共有 条评论