Advertisement
imjyb1008work

001

Sep 6th, 2018
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.79 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Data.SqlClient;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Web.Configuration;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10.  
  11. namespace AndyProjectManagementSystem.Web
  12. {
  13.     public partial class PMSPositionDemoPage : System.Web.UI.Page
  14.     {
  15.         private string _connStr = WebConfigurationManager.ConnectionStrings["AndyProjectManagementSystem"].ConnectionString;
  16.  
  17.         protected void Page_Load(object sender, EventArgs e)
  18.         {
  19.             ShowHaHaData();
  20.         }
  21.  
  22.         public void TestConnection()
  23.         {
  24.             try
  25.             {
  26.                 using (SqlConnection conn = new SqlConnection(_connStr))
  27.                 {
  28.                     conn.Open();
  29.                     Response.Write("資料庫連線成功");
  30.                 }
  31.             }
  32.             catch (Exception ex)
  33.             {
  34.                 Response.Write("資料庫連線失敗");
  35.                 Response.Write("<br/>");
  36.                 Response.Write("<br/>");
  37.                 Response.Write(ex.ToString());
  38.             }
  39.         }
  40.  
  41.         public void ShowPMSPositionData()
  42.         {
  43.             DataTable dt = new DataTable();
  44.  
  45.             try
  46.             {
  47.                 using (SqlConnection conn = new SqlConnection(_connStr))
  48.                 {
  49.                     string sql = "SELECT [Position_ID] ID, [Position], [Description] FROM [PMS_Position]";
  50.  
  51.                     SqlCommand cmd = new SqlCommand(sql, conn);
  52.                     SqlDataAdapter da = new SqlDataAdapter(cmd);
  53.                     da.Fill(dt);
  54.                 }
  55.  
  56.                 GridView1.DataSource = dt;
  57.                 GridView1.DataBind();
  58.             }
  59.             catch (Exception ex)
  60.             {
  61.                 Response.Write("發生失敗");
  62.                 Response.Write("<br/>");
  63.                 Response.Write("<br/>");
  64.                 Response.Write(ex.ToString());
  65.             }
  66.         }
  67.  
  68.         public void ShowHaHaData()
  69.         {
  70.             string[] datas = new string[] { "Justin", "Andy", "Amy" };
  71.  
  72.             GridView2.DataSource = datas;
  73.             GridView2.DataBind();
  74.         }
  75.  
  76.         public void DateTypeConvert()
  77.         {
  78.             //string strNum = "5";
  79.             //int intNum = strNum;
  80.         }
  81.     }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement