Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,036

HOME > .NET Framework > Forum > ต้องการทำเลขลำดับแถว เริ่มจาก 1 ถึง บรรทัดสุดท้ายไม่ได้ครับ รบกวนแนะนำด้วยครับ



 

ต้องการทำเลขลำดับแถว เริ่มจาก 1 ถึง บรรทัดสุดท้ายไม่ได้ครับ รบกวนแนะนำด้วยครับ

 



Topic : 088530



โพสกระทู้ ( 33 )
บทความ ( 0 )



สถานะออฟไลน์




คือผมอยากให้ลำดับของ LEVEL_SEQ เริ่มจาก 1,2,3,4,5,6,7,...ไปจนถึงลำดับเลขบรรทัดสุดท้ายครับ พยายามลองดูก็ยังไม่ได้ รบกวนแนะนำหน่อยนะครับ หัวผมตื้อคิดมะออกครับ ขอบคุณครับ

help11

Code (C#)
protected void Button3_Click(object sender, EventArgs e)
    {
        RadioButton RG1 = null;
        if (RadioButton1.Checked == true)
        {
            RG1 = RadioButton1;

            SqlTransaction tr = objConn.BeginTransaction();
            SqlCommand cmd = objConn.CreateCommand();

            try
            {
                cmd.CommandType = CommandType.Text;
                cmd.Transaction = tr;
                
                for (int i = 0; i <= GridView1.Rows.Count - 1; i++)
                    {
                        string typeCarbinet = "1";
                        string typeDrawer = "2";
                        string typeFiles = "3";
                        string typeBinder = "4";

                        string chkCabinet = GridView1.Rows[i].Cells[5].Text.Trim();
                        string chkDrawer = GridView1.Rows[i].Cells[6].Text.Trim();
                        string chkFiles = GridView1.Rows[i].Cells[7].Text.Trim();
                        string chkBinder = GridView1.Rows[i].Cells[8].Text.Trim();

                        int levelseq = 1;

                        if (i >= 0)
                        {
                            bool testchk = false;
                            for (int c = 0; c < i; c++) //###Check Cabinet###
                                if (GridView1.Rows[i].Cells[5].Text.Trim() == GridView1.Rows[c].Cells[5].Text.Trim())
                                {
                                    testchk = true;
                                }
                            if (testchk == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeCarbinet + "','" + chkCabinet + "')";
                                cmd.ExecuteNonQuery();
                                levelseq++;
                            }
                        }
                        if (i >= 0)
                        {
                            bool testchk = false;
                            for (int d = 0; d < i; d++) //###Check Drawer###
                                if (GridView1.Rows[i].Cells[6].Text.Trim() == GridView1.Rows[d].Cells[6].Text.Trim())
                                {
                                    testchk = true;
                                }
                            if (testchk == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeDrawer + "','" + chkDrawer + "')";
                                cmd.ExecuteNonQuery();
                                levelseq++;
                            }
                        }
                        if (i >= 0)
                        {
                            bool testchk = false;
                            for (int f = 0; f < i; f++) //###Check Files###
                                if (GridView1.Rows[i].Cells[7].Text.Trim() == GridView1.Rows[f].Cells[7].Text.Trim() && GridView1.Rows[i].Cells[6].Text.Trim() == GridView1.Rows[f].Cells[6].Text.Trim())
                                {
                                    testchk = true;
                                }
                            if (testchk == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeFiles + "','" + chkFiles + "')";
                                cmd.ExecuteNonQuery();
                                levelseq++;
                            }
                        }
                        if (i >= 0)
                        {
                            bool testchk = false;
                            for (int b = 0; b < i; b++) //###Check Binder###
                                if (GridView1.Rows[i].Cells[8].Text.Trim() == GridView1.Rows.Cells[8].Text.Trim())
                                {
                                    testchk = true;
                                }
                            if (testchk == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeBinder + "','" + chkBinder + "')";
                                cmd.ExecuteNonQuery();
                                levelseq++;
                            }
                        }
                    }
                    
                    tr.Commit();
                    Label4.Text = "บันทึกข้อมูลเรียบร้อย";
            }
            catch (SqlException ex)
            {
                tr.Rollback();
                Label2.Text = "Error - TRANSACTION ROLLED BACK\n" + ex.Message;
            }
            catch (Exception ex)
            {
                tr.Rollback();
                Label2.Text = "System Error\n" + ex.Message;
            }
            finally
            {
                objConn.Close();
                tr.Dispose();
            }
        }




Tag : .NET, Ms SQL Server 2008, Web (ASP.NET), C#, VS 2010 (.NET 4.x)







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2012-12-25 14:28:58 By : SponG_Gy View : 1275 Reply : 6
 

 

No. 1



โพสกระทู้ ( 1,035 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
int levelseq = i+1;







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-12-25 15:46:52 By : kanchen
 


 

No. 2



โพสกระทู้ ( 33 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณนะครับ ผมก็นั่งคิด ลองไปลองมาหลายต่อหลายรอบ ที่แท้ตรงนี้นี่เอง
ขอบคุณมากนะครับ คุณ kanchen
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2012-12-25 16:06:28 By : SponG_Gy
 

 

No. 3



โพสกระทู้ ( 33 )
บทความ ( 0 )



สถานะออฟไลน์


คุณ kanchen ขอโทดนะครับ พอดีผมเพิ่งมาสังเกตุเห็น จากที่ คุณ kanchen ได้แนะนำผมให้นำ int levelseq = i+1;
ผมลองดูผลลัพธ์ ลำดับเลขเรียง 1,2,3,...9 พอ 10 กลายเป็นกระโดดไป 13 // พอ 18 ก็ซ้ำกัน 2 ครั้ง
พอ 19,20 แล้วก็ 19,20 อีกรอบ เป็นเพราะอะไรหรอครับ แนะนำทีครับ เพิ่งจะสังเกตุเห็นว่ายังเรียงผิดอยู่ครับ
รบกวนช่วยหน่อยนะครับ ขอบคุณครับ

ผิดพลาดอยู่

โค๊ดที่ใช้เหมือนข้างบนเลยครับ ถ้าใครแนะนำได้ รบกวนด้วยนะครับ ขอบคุณมากครับ


ประวัติการแก้ไข
2013-01-02 11:15:48
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-01-02 11:14:46 By : SponG_Gy
 


 

No. 4



โพสกระทู้ ( 88 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
protected void Button3_Click(object sender, EventArgs e)
    {
        RadioButton RG1 = null;
        if (RadioButton1.Checked == true)
        {
            RG1 = RadioButton1;

            SqlTransaction tr = objConn.BeginTransaction();
            SqlCommand cmd = objConn.CreateCommand();

            try
            {
                cmd.CommandType = CommandType.Text;
                cmd.Transaction = tr;
                
                for (int i = 0; i <= GridView1.Rows.Count - 1; i++)
                    {
                        string typeCarbinet = "1";
                        string typeDrawer = "2";
                        string typeFiles = "3";
                        string typeBinder = "4";

                        string chkCabinet = GridView1.Rows[i].Cells[5].Text.Trim();
                        string chkDrawer = GridView1.Rows[i].Cells[6].Text.Trim();
                        string chkFiles = GridView1.Rows[i].Cells[7].Text.Trim();
                        string chkBinder = GridView1.Rows[i].Cells[8].Text.Trim();

                        int levelseq = 1;

                        if (i >= 0)
                        {
                            bool testchk1 = false;
                            for (int c = 0; c < i; c++) //###Check Cabinet###
                            {
                               if (GridView1.Rows[i].Cells[5].Text.Trim() == GridView1.Rows[c].Cells[5].Text.Trim())
                                {
                                    testchk1 = true;
                                    break;
                                }
                             }
                            if (testchk1 == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeCarbinet + "','" + chkCabinet + "')";
                                cmd.ExecuteNonQuery();
                            }

                            bool testchk2 = false;
                            for (int d = 0; d < i; d++) //###Check Drawer###
                            {
                                if (GridView1.Rows[i].Cells[6].Text.Trim() == GridView1.Rows[d].Cells[6].Text.Trim())
                                {
                                    testchk2 = true;
                                    break;
                                }
                            }
                            if (testchk2 == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeDrawer + "','" + chkDrawer + "')";
                                cmd.ExecuteNonQuery();
                            }

                            bool testchk3 = false;
                            for (int f = 0; f < i; f++) //###Check Files###
                             {
                                if (GridView1.Rows[i].Cells[7].Text.Trim() == GridView1.Rows[f].Cells[7].Text.Trim() && GridView1.Rows[i].Cells[6].Text.Trim() == GridView1.Rows[f].Cells[6].Text.Trim())
                                {
                                    testchk3 = true;
                                    break;
                                }
                            }
                            if (testchk3 == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeFiles + "','" + chkFiles + "')";
                                cmd.ExecuteNonQuery();
                            }

                            bool testchk4 = false;
                            for (int b = 0; b < i; b++) //###Check Binder###
                            {
                                if (GridView1.Rows[i].Cells[8].Text.Trim() == GridView1.Rows.Cells[8].Text.Trim())
                                {
                                    testchk4 = true;
                                    break;
                                }
                            }
                            if (testchk4 == false)
                            {
                                cmd.CommandText = "Insert Into DIP_LEVEL2(LEVEL_SEQ,LEVEL_TYPE,LEVEL_NAME)" + " values ('" + levelseq + "','" + typeBinder + "','" + chkBinder + "')";
                                cmd.ExecuteNonQuery();
                            }

                        levelseq = levelseq  + 1;
                        }
                    }
                    
                    tr.Commit();
                    Label4.Text = "บันทึกข้อมูลเรียบร้อย";
            }
            catch (SqlException ex)
            {
                tr.Rollback();
                Label2.Text = "Error - TRANSACTION ROLLED BACK\n" + ex.Message;
            }
            catch (Exception ex)
            {
                tr.Rollback();
                Label2.Text = "System Error\n" + ex.Message;
            }
            finally
            {
                objConn.Close();
                tr.Dispose();
            }
        }


แบบนี้ได้ไหมครับ

ถ้าผิด ขออภัยด้วยครับ


ประวัติการแก้ไข
2013-01-02 15:27:06
2013-01-02 15:30:52
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-01-02 15:25:14 By : Niratiam
 


 

No. 5



โพสกระทู้ ( 33 )
บทความ ( 0 )



สถานะออฟไลน์


ไม่ได้ครับ คุณ Niratiam ผลที่ได้คือเลข 1 ทุกแถวเลยครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-01-02 15:49:38 By : SponG_Gy
 


 

No. 6



โพสกระทู้ ( 33 )
บทความ ( 0 )



สถานะออฟไลน์


ผมแก้ได้แล้วครับ พอดีเอ๊ะใจ เลยวาง int levelseq = 1; ไว้นอก loop
แล้วเอา levelseq++; วางไว้ในแต่ละ if ที่เป็น false ยังไงก็ขอบคุณ คุณ "Niratiam" นะครับ เคยช่วยแนะนำผม
แล้วในครั้งนี้ก็มาแนะนำผมอีก ยังไงก็ขอบคุณมากนะครับ



ประวัติการแก้ไข
2013-01-02 16:01:42
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-01-02 16:01:03 By : SponG_Gy
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ต้องการทำเลขลำดับแถว เริ่มจาก 1 ถึง บรรทัดสุดท้ายไม่ได้ครับ รบกวนแนะนำด้วยครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่