资源简介
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\databa
文件 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个文件信息
- 上一篇:旅游管理系统的主要数据流程图
- 下一篇:可以看看 刀光 粒子
相关资源
- 旅游管理系统的主要数据流程图
- 数据结构课程设计学生信息管理系统
- 软件工程课程设计包含设计文档和实
- 连接数据库并实现登录功能的
- ChatRoom简单无刷新聊天室(源码+数据
- CVI访问数据库的
- 网上书店系统数据库课程设计
- msvcr120.dll 官方
- VC加油站管理系统源码
- 学籍数据库
- 与backupdbE.bat配合使用
- ajax实现完美传值
- 基于RFID的门禁系统
- SSM完整框架
- vue仿拼多多教程
- SpringCloud Alibaba使用四 - seata分布式事
- 空闲自习室管理系统
- 旅游管理系统开题报告
- shopping online 购物系统论文演示ppt
- 人工智能算法
- 2021 年全年详细工作日、周末、节假日
- 数据结构实验-链式存储和顺序存储实
- 大学生就业信息网源码
- 蓝山BlueHill公司人事管理系统补充数据
- 毕业设计图书管理系统任务书 全
- 网页持续读取数据库数据显示
- 数据库课程设计完整版
- 数据库超强同步软件(绿色版)
- navicat premium 11.2.13 英文版 破解 100% 破
- 实盘赚钱趋势ea
评论
共有 条评论