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 > EDIT ข้อมูลใน Gridview แล้ว แสดงผลผิดพลาด ไม่ตรงกับ Index เลือกไว้



 

[.NET] EDIT ข้อมูลใน Gridview แล้ว แสดงผลผิดพลาด ไม่ตรงกับ Index เลือกไว้

 



Topic : 060098



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



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




รูปบแรก

รูปที่ 1 ก็แสดง reocrd ทั้งหมดออกมาไม่มีอะไรครับ

รูป 2

รูปที่ 2 ผมจะทำการ search ข้อมูลตามรูป และ เลือก EDIT ใน ลำดับที่ 53

รป 3

รูปที่ 3 หลังจากกด EDIT ลำดับที่ 53 มันดันแสดง record ทั้งหมด แถมไป EDIT ลำดับ 48 แทน (ซึ่งเป็น index = 3 นับจาก 0)

รุป 4

รูปที่ 4 พอ ค้นหาอีกครั้ง จะแสดงข้อมูลที่ถูกต้อง

พอทราบไหมว่าเกิดจากอะไรครับ



อันนี้ code grdview กับ datasource ที่ใช้ในการติดต่อ

Code (ASP)
001.<table style="width: 1024px;">
002.        <tr>
003.            <td>
004.                <asp:RadioButton ID="radId" runat="server" GroupName="Search" Text="ลำดับที่" />
005.                <asp:RadioButton ID="radFis" runat="server" GroupName="Search"
006.                    Text="ปีงบประมาณ" />
007.                <asp:RadioButton ID="radPro" runat="server" GroupName="Search"
008.                    Text="หัวข้อโครงการ" />
009.                <asp:RadioButton ID="radRes" runat="server" GroupName="Search"
010.                    Text="ชื่อผู้วิจัย/ผู้ร่วมวิจัย" />
011.                <asp:RadioButton ID="radFac" runat="server" GroupName="Search" Text="คณะ" />
012.                <asp:RadioButton ID="radBud" runat="server" GroupName="Search"
013.                    Text="งบประมาณ" />
014.                <asp:RadioButton ID="radSou" runat="server" GroupName="Search"
015.                    Text="แหล่งทุน" />
016.                <asp:TextBox ID="txtSearch" runat="server"></asp:TextBox>
017.                <asp:Button ID="btnSearch" runat="server" Text="ค้นหา" />
018.            </td>
019.        </tr>
020.    </table>
021. 
022.<asp:GridView ID="GridView1" runat="server" AllowPaging="True"
023.            AllowSorting="True" AutoGenerateColumns="False" CellPadding="3"
024.            DataKeyNames="Id" DataSourceID="SqlDataSource1"
025.            GridLines="None" BackColor="White"
026.            BorderColor="White" BorderStyle="Ridge" BorderWidth="2px" CellSpacing="1">
027.            <Columns>
028.                <asp:BoundField DataField="Id" HeaderText="ลำดับที่" InsertVisible="False"
029.                    ReadOnly="True" SortExpression="Id" >
030.                <HeaderStyle Font-Bold="True" ForeColor="White" Wrap="False" />
031.                <ItemStyle HorizontalAlign="Center" />
032.                </asp:BoundField>
033.                <asp:TemplateField HeaderText="ปีงบประมาณ" SortExpression="FiscalYear">
034.                    <EditItemTemplate>
035.                        <asp:DropDownList ID="addFiscalYear" runat="server"
036.                            ControlToValidate="addFiscalYear" SelectedValue='<%# Bind("FiscalYear") %>'
037.                            Width="60px">
038.                            <asp:ListItem>2545</asp:ListItem>
039.                            <asp:ListItem>2546</asp:ListItem>
040.                            <asp:ListItem>2547</asp:ListItem>
041.                            <asp:ListItem>2548</asp:ListItem>
042.                            <asp:ListItem>2549</asp:ListItem>
043.                            <asp:ListItem>2550</asp:ListItem>
044.                            <asp:ListItem>2551</asp:ListItem>
045.                            <asp:ListItem>2552</asp:ListItem>
046.                            <asp:ListItem>2553</asp:ListItem>
047.                            <asp:ListItem>2554</asp:ListItem>
048.                        </asp:DropDownList>
049.                    </EditItemTemplate>
050.                    <ItemTemplate>
051.                        <asp:Label ID="Label1" runat="server" Text='<%# Bind("FiscalYear") %>'></asp:Label>
052.                    </ItemTemplate>
053.                    <HeaderStyle ForeColor="White" Wrap="False" />
054.                    <ItemStyle HorizontalAlign="Center" />
055.                </asp:TemplateField>
056.                <asp:BoundField DataField="ProjectName" HeaderText="หัวข้อโครงการ"
057.                    SortExpression="ProjectName" >
058.                <HeaderStyle ForeColor="White" Wrap="False" />
059.                <ItemStyle HorizontalAlign="Center" />
060.                </asp:BoundField>
061.                <asp:BoundField DataField="ResearchersName" HeaderText="ชื่อผู้วิจัย/ผู้ร่วมวิจัย"
062.                    SortExpression="ResearchersName" >
063.                <HeaderStyle ForeColor="White" Wrap="False" />
064.                <ItemStyle HorizontalAlign="Center" />
065.                </asp:BoundField>
066.                <asp:TemplateField HeaderText="คณะ" SortExpression="Faculty">
067.                    <EditItemTemplate>
068.                        <asp:DropDownList ID="addFaculty" runat="server"
069.                            SelectedValue='<%# Bind("Faculty") %>' Width="150px">
070.                            <asp:ListItem Value="00">เลือกคณะ</asp:ListItem>
071.                            <asp:ListItem>เกษตรศาสตร์ทรัพยากรธรรมชาติและสิ่งแวดล้อม</asp:ListItem>
072.                            <asp:ListItem>วิทยาศาสตร์</asp:ListItem>
073.                            <asp:ListItem>วิทยาลัยพลังงานและสิ่งแวดล้อม</asp:ListItem>
074.                            <asp:ListItem>เทคโนโลยีสารสนเทศและการสื่อสาร</asp:ListItem>
075.                            <asp:ListItem>ศิลปศาสตร์</asp:ListItem>
076.                            <asp:ListItem>วิทยาการจัดการและสารสนเทศศาสตร์</asp:ListItem>
077.                            <asp:ListItem>วิศวกรรมศาสตร์</asp:ListItem>
078.                            <asp:ListItem>วิทยาศาสตร์การแพทย์ </asp:ListItem>
079.                            <asp:ListItem>ส่วนงานบริหารกลาง</asp:ListItem>
080.                            <asp:ListItem>ส่วนงานกิจการนิสิต</asp:ListItem>
081.                            <asp:ListItem>IT</asp:ListItem>
082.                            <asp:ListItem>พยาบาลศาสตร์</asp:ListItem>
083.                            <asp:ListItem>นิติศาสตร์</asp:ListItem>
084.                            <asp:ListItem>เภสัชศาสตร์</asp:ListItem>
085.                            <asp:ListItem>วิทยาศาสตร์</asp:ListItem>
086.                            <asp:ListItem>วิทยาการจัดการ</asp:ListItem>
087.                            <asp:ListItem>สหเวชศาสตร์</asp:ListItem>
088.                            <asp:ListItem>แพทยศาสตร์</asp:ListItem>
089.                            <asp:ListItem>หน่วยปฏิบัติการชีวโมเลกุล</asp:ListItem>
090.                            <asp:ListItem>อื่นๆ</asp:ListItem>
091.                        </asp:DropDownList>
092.                    </EditItemTemplate>
093.                    <ItemTemplate>
094.                        <asp:Label ID="Label2" runat="server" Text='<%# Bind("Faculty") %>'></asp:Label>
095.                    </ItemTemplate>
096.                    <HeaderStyle ForeColor="White" Wrap="False" />
097.                    <ItemStyle HorizontalAlign="Center" />
098.                </asp:TemplateField>
099.                <asp:BoundField DataField="Budget" HeaderText="งบประมาณ"
100.                    SortExpression="Budget" >
101.                <HeaderStyle ForeColor="White" Wrap="False" />
102.                <ItemStyle HorizontalAlign="Center" />
103.                </asp:BoundField>
104.                <asp:TemplateField HeaderText="แหล่งทุน" SortExpression="SourceFunds">
105.                    <EditItemTemplate>
106.                        <asp:DropDownList ID="addSourceFunds" runat="server" Height="22px"
107.                            SelectedValue='<%# bind("SourceFunds") %>' Width="170px">
108.                            <asp:ListItem Value="000">เลือกแหล่งทุน</asp:ListItem>
109.                            <asp:ListItem>งบประมาณรายได้มหาวิทยาลัย</asp:ListItem>
110.                            <asp:ListItem>งบประมาณแผ่นดิน</asp:ListItem>
111.                            <asp:ListItem>สำนักงานกองทุนสนับสนุนการสร้างเสริมสุขภาพ (สสส.)</asp:ListItem>
112.                            <asp:ListItem>โครงการความร่วมมือระหว่างสำนักงานคณะกรรมการอุดมศึกษากับสำนักงานกองทุนสนับสนุนการวิจัย</asp:ListItem>
113.                            <asp:ListItem>สำนักงานปฏิรูปที่ดินเพื่อการเกษตร (สปก.)</asp:ListItem>
114.                            <asp:ListItem>สำนักงานคณะกรรมการวัฒนธรรมแห่งชาติ</asp:ListItem>
115.                            <asp:ListItem>บริษัท มั่งมีศรีสุข จำกัด</asp:ListItem>
116.                            <asp:ListItem>ภาคเหนือตอนล่าง</asp:ListItem>
117.                            <asp:ListItem>โครงการคลินิคเทคโนโลยี</asp:ListItem>
118.                            <asp:ListItem>สำนักงานคณะกรรมการข้อมูลข่าวสารของราชการ สำนักงานปลัดสำนักนายกรัฐมนตรี</asp:ListItem>
119.                            <asp:ListItem>งานตีพิมพ์เผยแพร่</asp:ListItem>
120.                            <asp:ListItem>สกอ+สกว ทุนพัฒนาศักยภาพในการทำงานวิจัยของอาจารย์รุ่นใหม่โครงการความร่วมมือระหว่างสำนักงานคณะกรรมการการอุดมศึกษา (สกอ.) กับสำนักงานกองทุนสนับสนุนการวิจัย (สกว.) ประจำปี 2551</asp:ListItem>
121.                            <asp:ListItem>สำนักงานกองทุนสนับสนุนการวิจัยทุนวิจัยมหาบัณฑิต สกว.(สกว.-สสว)</asp:ListItem>
122.                            <asp:ListItem>สำนักงานคณะกรรมการวิจัยแห่งชาติ(วช.)</asp:ListItem>
123.                            <asp:ListItem>สำนักงานกองทุนสนับสนุนการวิจัย (สกว)</asp:ListItem>
124.                            <asp:ListItem>สำนักงานเทศบาลเมืองพะเยา</asp:ListItem>
125.                            <asp:ListItem>กองทุนเงินนอกงบประมาณ มหาวิทยาลัยนเรศวร พะเยา</asp:ListItem>
126.                            <asp:ListItem>กองทุนสนับสนุนการวิจัย(สกว.)</asp:ListItem>
127.                            <asp:ListItem>ทุนการวิจัย พัฒนาและวิศวกรรม ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ สำนักงานพัฒนาวิทยาศาสตร์และเทคโนโลยีแห่งชาติ</asp:ListItem>
128.                            <asp:ListItem>ทุนเครือข่ายการวิจัยภาคเหนือตอนล่าง</asp:ListItem>
129.                            <asp:ListItem>สำนักงานปลัดสำนักนายกรัฐมนตรี โดยสำนักงานคณะกรรมการข้อมูลข่าวสาร</asp:ListItem>
130.                            <asp:ListItem>สถาบันไฟฟ้าและอิเล็กทรอนิกส์(อุตสาหกรรมพัฒนามูลนิธิ)</asp:ListItem>
131.                            <asp:ListItem>สถาบันเพื่อการบริหารทรัพยากรธรรมชาติและสิ่งแวดล้อม</asp:ListItem>
132.                            <asp:ListItem>สำนักงานปลัดกระทรวงทรัพยากรธรรมชาติและสิ่งแวดล้อม</asp:ListItem>
133.                            <asp:ListItem>การกีฬาแห่งประเทศไทย (กกท.)</asp:ListItem>
134.                            <asp:ListItem>IRPUS สกว.</asp:ListItem>
135.                            <asp:ListItem>โครงการเครือข่ายสวทช. ภาคเหนือ</asp:ListItem>
136.                            <asp:ListItem>องค์การบริหารส่วนตำบล 44 ที่</asp:ListItem>
137.                            <asp:ListItem>ทุนวิจัยพัฒนาและวิศวกรรม โครงการเครือข่าย สวทช. ภาคเหนือ</asp:ListItem>
138.                            <asp:ListItem>สถาบันวิจัยวิทยาศาสตร์และเทคโนโลยีแห่งประเทศไทย(วว.)</asp:ListItem>
139.                            <asp:ListItem>โครงการให้ทุนสนับสนุนโครงงานอุตสาหกรรมสำหรับนักศึกษาปริญญาตรี (IRPUS) สกว.</asp:ListItem>
140.                            <asp:ListItem>องค์การกระจายเสียงและแพร่ภาพสาธารณะแห่งประเทศไทย(สสท)</asp:ListItem>
141.                            <asp:ListItem>สถาบันคุ้มครองผู้บริโภคในกิจการโทรคมนาคม สนง.คณะกรรมการกิจการโทรคมนาคมแห่งชาติ</asp:ListItem>
142.                            <asp:ListItem>ศูนย์เทคโนโลยีโลหะและวัสดุแห่งชาติ(MTEC)</asp:ListItem>
143.                            <asp:ListItem>กระทรวงวิทยาศาสตร์และเทคโนโลยี</asp:ListItem>
144.                            <asp:ListItem>ศูนย์วิจัยร่วมเฉพาะทางด้านส่วนประกอบฮาร์ดดิสก์ไดรฟ์ (I/UCRC in HDD  Component) คณะวิศวกรรมศาสตร์ ม.ขอนแก่น</asp:ListItem>
145.                            <asp:ListItem>สนง.นโยบายและแผนพลังงาน กระทรวงพลังงาน</asp:ListItem>
146.                            <asp:ListItem>สำนักงานนโยบายและแผนพลังงาน(สนพ.)</asp:ListItem>
147.                            <asp:ListItem>สำนักงานทรัพยากรธรรมชาติสิ่งแวดล้อม</asp:ListItem>
148.                            <asp:ListItem>โครงการส่งเสริมการวิจัยสำนักงานคณะกรรมการการอุดมศึกษา</asp:ListItem>
149.                            <asp:ListItem>สำนักงานคณะกรรมการการอุดมศึกษา (สกอ.)</asp:ListItem>
150.                            <asp:ListItem>ศูนย์ส่งเสริมอุตสาหกรรมภาค 1</asp:ListItem>
151.                            <asp:ListItem>สำนักงานพัฒนาวิทยาศาสตร์และเทคโนโลยีแห่งชาติ</asp:ListItem>
152.                            <asp:ListItem>ศูนย์วิจัยและฝึกอบรมนิเวศวิทยาอุตสาหกรรม</asp:ListItem>
153.                            <asp:ListItem>อุทยานวิทยาศาสตร์ภาคเหนือ(อวน.)สถาบันวิจัยวิทยาศาสตร์และเทคโนโลยีแห่งประเทศไทย (วว.)</asp:ListItem>
154.                            <asp:ListItem>สำนักงานพัฒนาวิทยาศาสตร์และเทคโนโลยีแห่งชาติ (สวทช.)</asp:ListItem>
155.                            <asp:ListItem>อื่นๆ</asp:ListItem>
156.                        </asp:DropDownList>
157.                    </EditItemTemplate>
158.                    <ItemTemplate>
159.                        <asp:Label ID="Label3" runat="server" Text='<%# Bind("SourceFunds") %>'></asp:Label>
160.                    </ItemTemplate>
161.                    <HeaderStyle ForeColor="White" Wrap="False" />
162.                    <ItemStyle HorizontalAlign="Center" />
163.                </asp:TemplateField>
164.                <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
165.            </Columns>
166.            <FooterStyle BackColor="#C6C3C6" ForeColor="Black" />
167.            <HeaderStyle BackColor="#4A3C8C" Font-Bold="True" ForeColor="#E7E7FF" />
168.            <PagerStyle BackColor="#C6C3C6" ForeColor="Black" HorizontalAlign="Center" />
169.            <RowStyle BackColor="#DEDFDE" ForeColor="Black" />
170.            <SelectedRowStyle BackColor="#9471DE" Font-Bold="True" ForeColor="White" />
171.            <SortedAscendingCellStyle BackColor="#F1F1F1" />
172.            <SortedAscendingHeaderStyle BackColor="#594B9C" />
173.            <SortedDescendingCellStyle BackColor="#CAC9C9" />
174.            <SortedDescendingHeaderStyle BackColor="#33276A" />
175.        </asp:GridView>


Code (ASP)
01.<asp:SqlDataSource ID="SqlDataSource1" runat="server"
02.            ConnectionString="<%$ ConnectionStrings:researchDBConnectionString %>"
03.            DeleteCommand="DELETE FROM [researchs] WHERE [Id] = @Id"
04.            InsertCommand="INSERT INTO [researchs] ([FiscalYear], [ProjectName], [ResearchersName], [Faculty], [Budget], [SourceFunds]) VALUES (@FiscalYear, @ProjectName, @ResearchersName, @Faculty, @Budget, @SourceFunds)"
05.            SelectCommand="SELECT * FROM [researchs]"
06.            UpdateCommand="UPDATE [researchs] SET [FiscalYear] = @FiscalYear, [ProjectName] = @ProjectName, [ResearchersName] = @ResearchersName, [Faculty] = @Faculty, [Budget] = @Budget, [SourceFunds] = @SourceFunds WHERE [Id] = @Id">
07.            <DeleteParameters>
08.                <asp:Parameter Name="Id" Type="Int32" />
09.            </DeleteParameters>
10.            <InsertParameters>
11.                <asp:Parameter Name="FiscalYear" Type="Int16" />
12.                <asp:Parameter Name="ProjectName" Type="String" />
13.                <asp:Parameter Name="ResearchersName" Type="String" />
14.                <asp:Parameter Name="Faculty" Type="String" />
15.                <asp:Parameter Name="Budget" Type="Int32" />
16.                <asp:Parameter Name="SourceFunds" Type="String" />
17.            </InsertParameters>
18.            <UpdateParameters>
19.                <asp:Parameter Name="FiscalYear" Type="Int16" />
20.                <asp:Parameter Name="ProjectName" Type="String" />
21.                <asp:Parameter Name="ResearchersName" Type="String" />
22.                <asp:Parameter Name="Faculty" Type="String" />
23.                <asp:Parameter Name="Budget" Type="Int32" />
24.                <asp:Parameter Name="SourceFunds" Type="String" />
25.                <asp:Parameter Name="Id" Type="Int32" />
26.            </UpdateParameters>
27.        </asp:SqlDataSource>


ส่วนนี้ code ของปุ่ม ค้นหา
Code (VB.NET)
01.Protected Sub btnSearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSearch.Click
02. 
03.       If radId.Checked = True Then
04.           SqlDataSource1.SelectCommand = "select * from researchs where Id like '" & txtSearch.Text & "%'"
05.           SqlDataSource1.DataBind()
06.       End If
07. 
08.       If radFis.Checked = True Then
09.           SqlDataSource1.SelectCommand = "select * from researchs where FiscalYear like '" & txtSearch.Text & "%'"
10.           SqlDataSource1.DataBind()
11.       End If
12. 
13.       If radPro.Checked = True Then
14.           SqlDataSource1.SelectCommand = "select * from researchs where ProjectName like '" & txtSearch.Text & "%'"
15.           SqlDataSource1.DataBind()
16.       End If
17. 
18.       If radRes.Checked = True Then
19.           SqlDataSource1.SelectCommand = "select * from researchs where ResearchersName like '" & txtSearch.Text & "%'"
20.           SqlDataSource1.DataBind()
21.       End If
22. 
23.       If radFac.Checked = True Then
24.           SqlDataSource1.SelectCommand = "select * from researchs where Faculty like '" & txtSearch.Text & "%'"
25.           SqlDataSource1.DataBind()
26.       End If
27. 
28.       If radBud.Checked = True Then
29.           SqlDataSource1.SelectCommand = "select * from researchs where Budget like '" & txtSearch.Text & "%'"
30.           SqlDataSource1.DataBind()
31.       End If
32. 
33.       If radSou.Checked = True Then
34.           SqlDataSource1.SelectCommand = "select * from researchs where SourceFunds like '" & txtSearch.Text & "%'"
35.           SqlDataSource1.DataBind()
36.       End If




Tag : .NET, Ms SQL Server 2008, Web (ASP.NET), VB.NET









ประวัติการแก้ไข
2011-05-12 10:26:44
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-05-12 10:23:52 By : mamme View : 1380 Reply : 1
 

 

No. 1



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

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

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

ผมไม่ค่อยชอบวิธีการเขียนแบบนี้ซะเท่าไหร่ เพระา Debug หาข้อผิดพลาดยากครับ ลองเขียนเป็นแบบ Code Behide น่ะครับ

Go to : ASP.NET GridView Control - VS 2005,2008,2010 (FX 2.0,3.5,4.0)






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-05-12 12:19:12 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : EDIT ข้อมูลใน Gridview แล้ว แสดงผลผิดพลาด ไม่ตรงกับ Index เลือกไว้
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 02
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 อัตราราคา คลิกที่นี่