flight_place.aspx.cs
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:2k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.SqlClient;
  12. public partial class web_system_common_flight_place : System.Web.UI.Page
  13. {
  14.     protected void Page_Load(object sender, EventArgs e)
  15.     {
  16.     }
  17.     protected void BtnAdd_Click(object sender, EventArgs e)
  18.     {
  19.         BtnAdd.Visible = false;
  20.         Panel1.Visible = true;
  21.     }
  22.     protected void BtnOk_Click(object sender, EventArgs e)
  23.     {
  24.         SqlConnection conn = dbConnection.getConnection();
  25.         conn.Open();
  26.         int id = 1;
  27.         SqlCommand cmd = new SqlCommand("select max(id) from OA_FLIGHT_PLACE", conn);
  28.         try
  29.         {
  30.             id = Convert.ToInt32(cmd.ExecuteScalar()) + 1;
  31.         }
  32.         catch { }
  33.         cmd = new SqlCommand("insert into OA_FLIGHT_PLACE(id, name) values (" + id + ",'" + TxtName.Text + "')", conn);
  34.         cmd.ExecuteNonQuery();
  35.         conn.Close();
  36.         TxtName.Text = "";
  37.         BtnAdd.Visible = true;
  38.         Panel1.Visible = false;
  39.         GridView1.DataBind();
  40.     }
  41.     protected void BtnCancel_Click(object sender, EventArgs e)
  42.     {
  43.         TxtName.Text = "";
  44.         BtnAdd.Visible = true;
  45.         Panel1.Visible = false;
  46.     }
  47.     protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
  48.     {
  49.         if (e.Row.RowType == DataControlRowType.DataRow)
  50.         {
  51.             e.Row.Cells[e.Row.Cells.Count - 1].Attributes.Add("onclick", "return confirm('確定删除嗎?')");
  52.         }
  53.     }
  54. }