资源简介
资料大家共享,希望能对大家有好处
代码片段和文件信息
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.OleDb;
using System.Data.SqlClient;
public partial class sign : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
}
protected void btnAdd_Click(object sender EventArgs e)
{
string strSql = “INSERT INTO [signup] ([name][sex][age][card][tel][address][type][email][job][ask]) values (“ +
“‘“ + tbName.Text + “‘‘“ + ddlSex.SelectedItem.Value + “‘‘“ + tbAge.Text + “‘‘“ + tbCard.Text + “‘‘“ +
tbTel.Text + “‘‘“ + tbAddress.Text + “‘‘“ + ddlType.SelectedItem.Value + “‘‘“ + tbEmail.Text + “‘‘“ +
tbJob.Text + “‘‘“ + tbAsk.Text + “‘)“;
ExcuteSql(strSql);
tbName.Text = null;
tbTel.Text = null;
tbJob.Text=null;
tbEmail.Text = null;
tbCard.Text = null;
tbAsk.Text = null;
tbAge.Text = null;
tbAddress.Text = null;
}
private void ExcuteSql(string strSql)
{
try
{
OleDbConnection con = new OleDbConnection();
con.ConnectionString = “Provider=Microsoft.Jet.Oledb.4.0;Data Source=“ + Server.MapPath(ConfigurationSettings.AppSettings[“数据库“].ToString());
con.Open();
//添加纪录...
OleDbCommand com = new OleDbCommand(strSql con);
com.ExecuteNonQuery();
con.Close();
Response.Write(“ript language=‘javascript‘>alert(‘报名成功!‘) ript>“);
}
catch (Exception ee)
{
Response.Write(“发生错误:“ + ee.Message);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1452 2007-03-21 17:19 51aspx源码必读.txt
文件 736 2007-03-25 16:27 ReadMe.txt
文件 741398 2006-07-31 16:36 img\01.jpg
文件 817249 2006-07-31 16:36 img\02.jpg
文件 541216 2006-07-31 16:37 img\03.jpg
文件 805082 2006-07-31 16:35 img\04.jpg
文件 592 2006-07-27 08:19 img\bown.gif
文件 549 2006-07-27 08:19 img\bown_2.gif
文件 545 2006-07-27 08:19 img\bown_3.gif
文件 520 2006-07-27 08:19 img\ico1.gif
文件 68 2006-07-27 08:19 img\ico2.gif
文件 147 2006-07-27 08:19 img\ico3.gif
文件 63 2006-07-27 08:19 img\lift.gif
文件 9160 2006-07-27 08:19 img\lift_0.gif
文件 4620 2006-07-27 08:19 img\lift_1.gif
文件 6458 2006-07-27 08:19 img\lift_2.gif
文件 301 2006-07-27 08:19 img\lift_bg.gif
文件 1570 2006-07-27 08:19 img\lift_right.gif
文件 8062 2006-07-27 09:21 img\logo.gif
文件 28925 2006-07-31 16:19 img\pic_1.gif
文件 741398 2006-07-31 16:19 img\pic_1.jpg
文件 49195 2006-07-31 16:22 img\pic_2.jpg
文件 40273 2006-07-31 16:30 img\pic_3.jpg
文件 43645 2006-07-31 16:34 img\pic_4.jpg
文件 415 2006-07-27 08:19 img\right_bg.gif
文件 152 2006-07-27 08:19 img\rtit_2.gif
文件 1029 2006-07-27 08:19 img\rtit_3.gif
文件 791 2006-07-27 08:19 img\rtit_4.gif
文件 4031 2006-07-27 08:19 img\ti
文件 110 2006-07-27 08:19 img\ti
............此处省略17个文件信息
- 上一篇:pyecharts安装包
- 下一篇:罗升伺服sd系列通讯软件
相关资源
- 餐厅管理系统(管理端与客户端)
- 医药销售系统
- mvc 在线考试系统
- .NetCore快速开发后台框架v1.0
- 医药管理系统 源码+实验报告
- 药店管理系统有源代码
- .net三层架构登录注册源码母版页的使
- 教学绩效管理系统
- MvcLoginNew
- 通用后台管理系统(OA+CRM+ERP)
- NPOI:设置样式与合并单元格
- 篮球网站设计开发
- 有关图像jpeg压缩算法介绍及其源码
- NPOI 读取word2003 了apache一部分源码
- [电子书] 快速编码 高效使用 Microsof
- .NET开发 iat/语音听写/语音转文本 科
- 甜橙在线音乐MP3网
- 新闻发布系统简单的制作
- 洗衣房信息管理系统
- 基于.NET的招聘信息发布网站
- ps需求分析
- 员工绩效管理系统的设计及实现
- 电子商务网(毕业设计参考
- WebApi授权拦截——重写AuthorizeAttribu
-
基于xm
l的留言本 - windows server 2008 部署MVC5程序的方法
- 城市公交线路添加查询
- 航空管理系统
- redupload多文件上传控件 dll
- 家教管理系统
评论
共有 条评论