资源简介
城市公交线路添加查询城市公交线路添加查询
代码片段和文件信息
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;
public partial class add : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (!IsPostBack)
{
}
}
protected void but_Click(object sender EventArgs e)
{
string busno = this.name.Text;
string origin = this.beg.Text;
string terminal = this.end.Text;
try
{
SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings[“bus“]);
conn.Open();
SqlCommand com = new SqlCommand(“select count(*) from businfo where busno=‘“ + busno + “‘“ conn);
int count = Convert.ToInt32(com.ExecuteScalar());
if (count != 1)
{
com.CommandText = “insert into businfo(busnooriginterminal)values(@busno@origin@terminal)“;
SqlParameter para = new SqlParameter(“@busno“ SqlDbType.VarChar 10);
para.Value = busno;
com.Parameters.Add(para);
para = new SqlParameter(“@origin“ SqlDbType.VarChar 20);
para.Value = origin;
com.Parameters.Add(para);
para = new SqlParameter(“@terminal“ SqlDbType.VarChar 20);
para.Value = terminal;
com.Parameters.Add(para);
com.ExecuteNonQuery();
this.mes.Text = “此路线添加成功!!“;
this.name.Text = ““;
this.beg.Text = ““;
this.end.Text = ““;
}
else
{
this.mes.Text = “此路线已经存在!请重新添加!!“;
this.name.Text = ““;
this.beg.Text = ““;
this.end.Text = ““;
}
conn.Close();
}
catch(Exception ex)
{
ex.ToString();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-12-12 08:48 Bus\App_Data
文件 573440 2008-12-12 10:36 Bus\db\businfoDB_log.LDF
文件 2293760 2008-12-12 10:36 Bus\db\businfoDB.mdf
目录 0 2008-12-12 10:36 Bus\db
文件 2280 2008-12-12 09:48 Bus\add.aspx.cs
文件 1870 2008-12-12 09:49 Bus\add.aspx
文件 2433 2008-12-12 09:09 Bus\Web.config
文件 2030 2008-12-12 09:22 Bus\index.aspx.cs
文件 1495 2008-12-12 09:23 Bus\index.aspx
目录 0 2008-12-12 08:48 Bus
----------- --------- ---------- ----- ----
2877308 10
- 上一篇:C超级爬虫.zip
- 下一篇:UDP动态温度曲线图
相关资源
- 航空管理系统
- redupload多文件上传控件 dll
- 家教管理系统
- web服务的建立和引用——模拟网上购
- B2C电子商务网站系统源码
- 水晶报表8.0基本使用手册中文
- h5无插件 RTSP 摄像头在线播放代码2
- 机票预订系统
- 旅游管理系统 用于做毕业设计最好了
- 软件工程课程设计包含设计文档和实
- ChatRoom简单无刷新聊天室(源码+数据
- ajax实现完美传值
- 蓝山BlueHill公司人事管理系统补充数据
- 毕业设计图书管理系统任务书 全
- 网页持续读取数据库数据显示
- NHibernate-2.1.2.GA-bin.zip
- 一个web版的图片猜谜游戏
- DLL查看器(可以查看封装到DLL里面的
- 校园新闻发布系统源码
- 办公系统源码(MyOffice)OA
- h5无插件 RTSP 摄像头在线播放代码
- 三层架构登录web
- 书刊租借管理系统
- .net聊天室小
- 在线答题系统
- 火车订票系统 附带数据库
- 数据库系统设计报告
- 软件技术专业毕业设计推荐选题
- Enterprise Library 3.1
- 基于mvc的多图片上传预览
评论
共有 条评论