• 大小: 3.7MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-15
  • 语言: 其他
  • 标签: Asp.net  

资源简介

资料大家共享,希望能对大家有好处

资源截图

代码片段和文件信息

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\title_1.gif

     文件        110  2006-07-27 08:19  img\title_lift.gif

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

评论

共有 条评论