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,038

HOME > .NET Framework > Forum > จากภาพปัญหาที่เกิดคือ 1.ผมทำ Search จาก Code 2.พอผมเอา Code มา Search ก็ได้ผล Search ได้,เจอ 3.แต่พอกด Select


 

[.NET] จากภาพปัญหาที่เกิดคือ 1.ผมทำ Search จาก Code 2.พอผมเอา Code มา Search ก็ได้ผล Search ได้,เจอ 3.แต่พอกด Select

 
Topic : 132521



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



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



จากภาพปัญหาที่เกิดคือ
1.ผมทำ Search จาก Code
2.พอผมเอา Code มา Search ก็ได้ผล Search ได้,เจอ
3.แต่พอกด Select แล้วดันเลิก ค่าอื่น เช่นตามภาม Select ค่า CaseKey 1 แต่ดัน ออก 2
ปล.พอไม่ Search แล้วคลิก Select เลย มันเลือก ตามค่าที่คลิกไม่มีปัญหา อยากถามผู้รู้ว่าเป็นเพราะอะครับ บัค หรอครับ

หน้าที่ส่งค่าไป
Code (C#)
01.using System;
02.using System.Collections.Generic;
03.using System.Data;
04.using System.Data.SqlClient;
05.using System.Linq;
06.using System.Web;
07.using System.Web.UI;
08.using System.Web.UI.WebControls;
09.namespace Test
10.{
11.    public partial class ShowIT : System.Web.UI.Page
12.    {
13.        string connectiondb = @"Data Source=ARTEMIS\SQL2014;Initial Catalog=SvlITDB;User ID=it;Password=Tigers1234;";
14.        protected void Page_Load(object sender, EventArgs e)
15.        {
16.            
17. 
18.            using (SqlConnection sqlcon = new SqlConnection(connectiondb))
19.            {
20.                sqlcon.Open();
21.                SqlDataAdapter sqlda = new SqlDataAdapter("SELECT c.CaseKey, c.CaseCode, ct.Name, c.CaseName, c.CaseDetail, c.CaseDT, c.Requester, u.DeptName, u.Tel, cs.Name AS Expr1, ic.StaffName, ic.Solve, ic.Dates, ic.ExpectedDT FROM [Case] AS c LEFT OUTER JOIN CaseType AS ct ON c.CaseTypeKey = ct.CaseTypeKey LEFT JOIN Usr AS u ON c.UsrKey = u.UsrKey LEFT JOIN CaseStatus AS cs ON c.CaseStatusKey = cs.CaseStatusKey LEFT OUTER JOIN ItCase AS ic ON c.CaseKey = ic.CaseKey ORDER BY c.CaseKey DESC", sqlcon);
22.                DataTable aaa = new DataTable();
23.                sqlda.Fill(aaa);
24.                GridView1.DataSource = aaa;
25.                GridView1.DataBind();
26.            }
27. 
28.    }
29. 
30.       
31. 
32.        protected void Button1_Click(object sender, EventArgs e)
33.        {
34.            if (DropDownList1.Text == "1") {
35. 
36.                using (SqlConnection sqlcon = new SqlConnection(connectiondb))
37.                {
38.                    sqlcon.Open();
39.                    SqlDataAdapter sqlda = new SqlDataAdapter("SELECT c.CaseKey, c.CaseCode, ct.Name, c.CaseName, c.CaseDetail, c.CaseDT, c.Requester, u.DeptName, u.Tel, cs.Name AS Expr1, ic.StaffName, ic.Solve, ic.Dates, ic.ExpectedDT FROM [Case] AS c LEFT OUTER JOIN CaseType AS ct ON c.CaseTypeKey = ct.CaseTypeKey LEFT JOIN Usr AS u ON c.UsrKey = u.UsrKey LEFT JOIN CaseStatus AS cs ON c.CaseStatusKey = cs.CaseStatusKey LEFT OUTER JOIN ItCase AS ic ON c.CaseKey = ic.CaseKey WHERE cs.Name = 'Process' ORDER BY c.CaseKey DESC", sqlcon);
40.                    DataTable aaa = new DataTable();
41.                    sqlda.Fill(aaa);
42.                    GridView1.DataSource = aaa;
43.                    GridView1.DataBind();
44.                }
45. 
46. 
47. 
48.            }
49.            if (DropDownList1.Text=="2") {
50. 
51.                using (SqlConnection sqlcon = new SqlConnection(connectiondb))
52.                {
53.                    sqlcon.Open();
54.                    SqlDataAdapter sqlda = new SqlDataAdapter("SELECT c.CaseKey, c.CaseCode, ct.Name, c.CaseName, c.CaseDetail, c.CaseDT, c.Requester, u.DeptName, u.Tel, cs.Name AS Expr1, ic.StaffName, ic.Solve, ic.Dates, ic.ExpectedDT FROM [Case] AS c LEFT OUTER JOIN CaseType AS ct ON c.CaseTypeKey = ct.CaseTypeKey LEFT JOIN Usr AS u ON c.UsrKey = u.UsrKey LEFT JOIN CaseStatus AS cs ON c.CaseStatusKey = cs.CaseStatusKey LEFT OUTER JOIN ItCase AS ic ON c.CaseKey = ic.CaseKey WHERE cs.Name = 'Success' ORDER BY c.CaseKey DESC", sqlcon);
55.                    DataTable aaa = new DataTable();
56.                    sqlda.Fill(aaa);
57.                    GridView1.DataSource = aaa;
58.                    GridView1.DataBind();
59.                }
60. 
61.            }
62.            if (DropDownList1.Text == "3") {
63.                using (SqlConnection sqlcon = new SqlConnection(connectiondb))
64.                {
65.                    sqlcon.Open();
66.                    SqlDataAdapter sqlda = new SqlDataAdapter("SELECT c.CaseKey, c.CaseCode, ct.Name, c.CaseName, c.CaseDetail, c.CaseDT, c.Requester, u.DeptName, u.Tel, cs.Name AS Expr1, ic.StaffName, ic.Solve, ic.Dates, ic.ExpectedDT FROM [Case] AS c LEFT OUTER JOIN CaseType AS ct ON c.CaseTypeKey = ct.CaseTypeKey LEFT JOIN Usr AS u ON c.UsrKey = u.UsrKey LEFT JOIN CaseStatus AS cs ON c.CaseStatusKey = cs.CaseStatusKey LEFT OUTER JOIN ItCase AS ic ON c.CaseKey = ic.CaseKey ORDER BY c.CaseKey DESC", sqlcon);
67.                    DataTable aaa = new DataTable();
68.                    sqlda.Fill(aaa);
69.                    GridView1.DataSource = aaa;
70.                    GridView1.DataBind();
71.                }
72. 
73.            }
74.        }
75. 
76.        protected void Button2_Click(object sender, EventArgs e)
77.        {
78.            using (SqlConnection sqlcon = new SqlConnection(connectiondb))
79.            {
80.                sqlcon.Open();
81.                SqlDataAdapter sqlda = new SqlDataAdapter("SELECT c.CaseKey, c.CaseCode, ct.Name, c.CaseName, c.CaseDetail, c.CaseDT, c.Requester, u.DeptName, u.Tel, cs.Name AS Expr1, ic.StaffName, ic.Solve, ic.Dates, ic.ExpectedDT FROM [Case] AS c LEFT OUTER JOIN CaseType AS ct ON c.CaseTypeKey = ct.CaseTypeKey LEFT JOIN Usr AS u ON c.UsrKey = u.UsrKey LEFT JOIN CaseStatus AS cs ON c.CaseStatusKey = cs.CaseStatusKey LEFT OUTER JOIN ItCase AS ic ON c.CaseKey = ic.CaseKey Where c.CaseCode LIKE '%' +'"+TextBox1.Text.Trim()+"'+'%' ", sqlcon);
82.                DataTable aaa = new DataTable();
83.                sqlda.Fill(aaa);
84.                GridView1.DataSource = aaa;
85.                GridView1.DataBind();
86.                
87.            }
88.        }
89.  protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
90.        {
91.            GridViewRow gr = GridView1.SelectedRow;
92. 
93.            Response.Redirect("TestEdit.aspx?CaseKey=" + gr.Cells[1].Text + "&CaseCode=" + gr.Cells[2].Text + "&ct.Name=" + gr.Cells[3].Text + "&CaseName=" + gr.Cells[4].Text + "&CaseDetail=" + gr.Cells[5].Text + "&CaseDT=" + gr.Cells[6].Text + "&Requester=" + gr.Cells[7].Text + "&DeptName=" + gr.Cells[8] + "cs.Tel" + gr.Cells[9] + "cs.Name" + gr.Cells[10] + "StaffName" + gr.Cells[11] + "Solve" + gr.Cells[12] + "Dates" + gr.Cells[13] + "ExpectedDT" + gr.Cells[14]);    
94.        }
95.    }
96.        }
97.   



หน้าที่รับค่ามา
Code (C#)
001.using System;
002.using System.Collections.Generic;
003.using System.Data;
004.using System.Data.SqlClient;
005.using System.Linq;
006.using System.Web;
007.using System.Web.UI;
008.using System.Web.UI.WebControls;
009. 
010.namespace Test
011.{
012.    public partial class TestEdit : System.Web.UI.Page
013.    {
014.        string connectiondb = @"Data Source=ARTEMIS\SQL2014;Initial Catalog=SvlITDB;User ID=it;Password=Tigers1234;";
015.        protected void Page_Load(object sender, EventArgs e)
016.        {
017. 
018.            DateTime daValues = DateTime.Now;
019.            string MyDt = daValues.ToString("dd-MM-yyyy HH:mm");
020.            TextBox3.Text = DateTime.Now.ToString(MyDt);
021. 
022. 
023. 
024.            TextBox1.Text = Request.QueryString["CaseKey"];
025.            TextBox2.Text = Request.QueryString["CaseCode"];
026. 
027.            
028. 
029.            using (SqlConnection sqlcon = new SqlConnection(connectiondb))
030.            {
031.                sqlcon.Open();
032.                SqlDataAdapter sqlda = new SqlDataAdapter("SELECT LFET.CaseKey, LFET.CaseCode, ItCase.StaffName, ItCase.Solve, ItCase.Dates, ItCase.ExpectedDT, ItCase.DateHope FROM [Case] AS LFET INNER JOIN ItCase ON LFET.CaseKey = ItCase.CaseKey Order By ItCase.CaseKey DESC", sqlcon);
033.                DataTable aaa = new DataTable();
034.                sqlda.Fill(aaa);
035.                GridView1.DataSource = aaa;
036.                GridView1.DataBind();
037.            }
038. 
039. 
040.        }
041. 
042.        #region Button1_Click
043.        protected void Button1_Click(object sender, EventArgs e)
044.        {
045. 
046. 
047.            if (DropDownList4.Text == "0")
048.            {
049. 
050.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
051.            }
052.            else if (DropDownList1.Text == "กำลังดำเนินการ")
053.            {
054. 
055.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
056. 
057. 
058.            }
059. 
060.           
061.            else if (DropDownList5.Text == "0")
062.            {
063. 
064.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
065. 
066. 
067.            }
068.  else if (Request.Form["Message"] == null)
069.            {
070.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
071.            }
072. 
073.            else
074.            {
075.                SqlConnection conn = new SqlConnection("Data Source=ARTEMIS\\SQL2014;Initial Catalog=SvlITDB;User ID=it;Password=Tigers1234");
076.                conn.Open();
077.                SqlCommand sqlcom = conn.CreateCommand();
078.                SqlCommand sqlcom2 = conn.CreateCommand();
079.                sqlcom.CommandText = "INSERT INTO [dbo].[ItCase] ([CaseKey], [Solve], [StaffName], [ExpectedDT], [CaseCode],[Dates],[DateHope]) VALUES ('" + TextBox1.Text + "','" + Request.Form["Message"].ToString() + "', '" + DropDownList1.Text + "', '"+TextBox8.Text+"','"+TextBox2.Text+"','"+TextBox3.Text+"','"+DropDownList5.Text+"')";
080.                sqlcom2.CommandText = "Update [Case] set CaseStatusKey = '" + DropDownList4.Text + "' where CaseKey =  '" + TextBox1.Text + "'";
081.                //sqlcom.CommandText = "INSERT INTO[dbo].[CaseType] ( [CodeType], [NameType]) VALUES" + "('" + this.TextBox2.Text + "','" + TextBox3.Text + "')";
082. 
083. 
084.                sqlcom.CommandType = CommandType.Text;
085.                sqlcom2.CommandType = CommandType.Text;
086.                sqlcom2.ExecuteNonQuery();
087.                sqlcom.ExecuteNonQuery();
088.                conn.Close();
089. 
090.                string scriptText = "alert('แก้ไขการแจ้งปัญหาสำเร็จ'); window.location='" + Request.ApplicationPath + "TestEdit.aspx'";
091.                ScriptManager.RegisterStartupScript(this, this.GetType(), "alertMessage", scriptText, true);
092.            }
093.        }
094. 
095.        #endregion
096.        protected void Button2_Click(object sender, EventArgs e)
097.        {
098.            if (DropDownList4.Text == "0")
099.            {
100. 
101.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
102.            }
103.            else if (DropDownList1.Text == "กำลังดำเนินการ")
104.            {
105. 
106.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
107. 
108. 
109.            }
110. 
111. 
112.            else if (DropDownList5.Text == "0")
113.            {
114. 
115.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
116. 
117. 
118.            }
119.            else if (Request.Form["Message"] == null)
120.            {
121.                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "Myscript", "alert('กรุณากรอกข้อมุลให้ครบ')", true);
122.            }
123.           else if (TextBox1.Text != "")
124.            {
125.                SqlConnection conn = new SqlConnection("Data Source=ARTEMIS\\SQL2014;Initial Catalog=SvlITDB;User ID=it;Password=Tigers1234");
126.                conn.Open();
127.                SqlCommand sqlcom = conn.CreateCommand();
128.                SqlCommand sqlcom2 = conn.CreateCommand();
129. 
130.                sqlcom.CommandText = "Update [dbo].[ItCase] set Solve = '" + Request.Form["Message"] + "', StaffName =  '" + DropDownList1.Text + "',  ExpectedDT =  '" + TextBox8.Text + "', DateHope = '" + DropDownList5.Text + "' WHERE CaseKey='" + TextBox1.Text + "'";
131.                sqlcom2.CommandText = "Update [Case] set CaseStatusKey = '" + DropDownList4.Text + "' where CaseKey =  '" + TextBox1.Text + "'";
132. 
133.                sqlcom.CommandType = CommandType.Text;
134.                sqlcom.ExecuteNonQuery();
135.                sqlcom2.CommandType = CommandType.Text;
136.                sqlcom2.ExecuteNonQuery();
137.                conn.Close();
138.                string scriptText = "alert('แก้ไขการแจ้งปัญหาสำเร็จ'); window.location='" + Request.ApplicationPath + "TestEdit.aspx'";
139.                ScriptManager.RegisterStartupScript(this, this.GetType(), "alertMessage", scriptText, true);
140.            }
141.        }
142.        
143. 
144.        protected void GridView1_SelectedIndexChanged1(object sender, EventArgs e)
145.        {
146.            Response.RedirectPermanent("~/ShowIT.aspx");
147.        }
148.    }
149.}


assa



Tag : .NET, Web (ASP.NET), C#



ประวัติการแก้ไข
2018-11-08 13:55:42
2018-11-08 14:56:14
2018-11-08 14:56:50
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2018-11-08 13:54:16 By : wiraphon View : 772 Reply : 10
 

 

No. 1



โพสกระทู้ ( 74,059 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

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

เอารูปมาให้ดูไม่มีใครช่วยแก้ได้ครับ ถ้าเป็น ASP.net ให้ใช้วิธีการ Debug ดูค่าตัวแปรครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 14:48:32 By : mr.win
 

 

No. 2



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



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


ตอบความคิดเห็นที่ : 1 เขียนโดย : mr.win เมื่อวันที่ 2018-11-08 14:48:32
รายละเอียดของการตอบ ::
ทำดูแล้วครับ มันเรียกค่าอื่น มาอย่างที่บอกและตามภาพครับ ผมถึงมาขอให้คนที่รู้ช่วยดู

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 14:54:38 By : wiraphon
 

 

No. 3



โพสกระทู้ ( 9,590 )
บทความ ( 2 )



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


เครื่องมือที่ใข้ แสดงข้อมูล เขียนขึ้นเอง หรือใช้ เครื่องมืออะไรบ้าง เอาแค่ภาพมาแสดง ไม่มีใครตอบได้ครับ
ตามที่ admin บอก อยากให้ตอบ ก็ต้องมีรายละเอียดของโค๊ดมาแสดงครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 14:58:58 By : Chaidhanan
 

 

No. 4



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



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


ตอบความคิดเห็นที่ : 3 เขียนโดย : Chaidhanan เมื่อวันที่ 2018-11-08 14:58:58
รายละเอียดของการตอบ ::
ผมลงโค๊ดให้แล้วครับ ผม D-bug แล้ว มันส่ง CaseKey มาตามที่ต้องการ แต่มันส่งเป็น 2 อะครับ ไม่ใช่ 1 ผม งง มาก

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 15:01:12 By : wiraphon
 

 

No. 5



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



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


ตอบความคิดเห็นที่ : 3 เขียนโดย : Chaidhanan เมื่อวันที่ 2018-11-08 14:58:58
รายละเอียดของการตอบ ::
ใช้โค๊ด แสดงในgridview ครับ

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 15:54:04 By : wiraphon
 

 

No. 6



โพสกระทู้ ( 9,590 )
บทความ ( 2 )



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


ใน function page_load ไม่เห็นเอาตัวแปร request ไปคิวรี่เลยอะครับ
ใช้ อะไรค้นหา เหรอครับ ใช้ javascript ช่วย หรือเปล่า

Code (C#)
01.protected void Page_Load(object sender, EventArgs e)
02.        {
03. 
04.            DateTime daValues = DateTime.Now;
05.            string MyDt = daValues.ToString("dd-MM-yyyy HH:mm");
06.            TextBox3.Text = DateTime.Now.ToString(MyDt);
07. 
08.            TextBox1.Text = Request.QueryString["CaseKey"]; // 2 บันทัดนี้ไม่เห็น นำไปใช้ในการ คิวรี่ข้างล่าง
09.            TextBox2.Text = Request.QueryString["CaseCode"];
10. 
11.            using (SqlConnection sqlcon = new SqlConnection(connectiondb))
12.            {
13.                sqlcon.Open();
14.                SqlDataAdapter sqlda = new SqlDataAdapter("SELECT LFET.CaseKey, LFET.CaseCode, ItCase.StaffName, ItCase.Solve, ItCase.Dates, ItCase.ExpectedDT, ItCase.DateHope FROM [Case] AS LFET INNER JOIN ItCase ON LFET.CaseKey = ItCase.CaseKey
15.## เพิ่ม where clause ตรงนี้ เอาตัวแปร ข้างบนมา generate การค้นหา
16.Order By ItCase.CaseKey DESC", sqlcon);
17.                DataTable aaa = new DataTable();
18.                sqlda.Fill(aaa);
19.                GridView1.DataSource = aaa;
20.                GridView1.DataBind();
21.            }
22. 
23. 
24.        }

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 16:52:08 By : Chaidhanan
 

 

No. 7



โพสกระทู้ ( 74,059 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

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

page life cycle => Page.IsPostBack
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 17:54:20 By : mr.win
 

 

No. 8



โพสกระทู้ ( 74,059 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

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

Code
protected void Page_Load(object sender, EventArgs e) { if(!Page.IsPostBack) { using (SqlConnection sqlcon = new SqlConnection(connectiondb)) { sqlcon.Open(); SqlDataAdapter sqlda = new SqlDataAdapter("SELECT c.CaseKey, c.CaseCode, ct.Name, c.CaseName, c.CaseDetail, c.CaseDT, c.Requester, u.DeptName, u.Tel, cs.Name AS Expr1, ic.StaffName, ic.Solve, ic.Dates, ic.ExpectedDT FROM [Case] AS c LEFT OUTER JOIN CaseType AS ct ON c.CaseTypeKey = ct.CaseTypeKey LEFT JOIN Usr AS u ON c.UsrKey = u.UsrKey LEFT JOIN CaseStatus AS cs ON c.CaseStatusKey = cs.CaseStatusKey LEFT OUTER JOIN ItCase AS ic ON c.CaseKey = ic.CaseKey ORDER BY c.CaseKey DESC", sqlcon); DataTable aaa = new DataTable(); sqlda.Fill(aaa); GridView1.DataSource = aaa; GridView1.DataBind(); } } }

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-08 17:57:21 By : mr.win
 

 

No. 9



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



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


ตอบความคิดเห็นที่ : 8 เขียนโดย : mr.win เมื่อวันที่ 2018-11-08 17:57:21
รายละเอียดของการตอบ ::
ได้แล้วครับพี่ เพิ่ม !Page.IsPostBack เข้าไปได้เลยครับ ขอบพระคุณมากๆนะครับผู้รู้ทั้ง 2 คน

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-09 08:20:03 By : wiraphon
 

 

No. 10



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



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


ตอบความคิดเห็นที่ : 6 เขียนโดย : Chaidhanan เมื่อวันที่ 2018-11-08 16:52:08
รายละเอียดของการตอบ ::
ได้แล้วครับ ขอบพระคุณครับพี่

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2018-11-09 08:20:25 By : wiraphon
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : จากภาพปัญหาที่เกิดคือ 1.ผมทำ Search จาก Code 2.พอผมเอา Code มา Search ก็ได้ผล Search ได้,เจอ 3.แต่พอกด Select
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)





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