 |
|
ขอความช่วยเหลือค่ะ เพิ่งเริ่มเขียนอะค่ะ แล้วเกิด error แบบนี้(มีรูปค่ะ)ไม่ทราบว่าควรแก้ยังไงคะ |
|
 |
|
|
 |
 |
|
สู้ๆค่ะ หนูก็เพิ่มเริ่มเขียน เป็นกำลังใจให้นะคะ
|
 |
 |
 |
 |
Date :
2011-05-24 13:03:22 |
By :
แค่เด็กตัวเล๊กๆคนนึง |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้ทำการ debug ได้ผลลัพธ์ตามรูปค่ะ

ในส่วนของบรรทัด
Code (VB.NET)
Dim Data As String = GridView3.DataKeys(currentRowIndex).Value
ขึ้นDebug
ตามรูปเลยค่ะ
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index

ขอบคุณมากๆอีกครั้งนะคะ นั่งงมมา 3 วันแล้วค่ะ 
|
 |
 |
 |
 |
Date :
2011-05-24 13:44:57 |
By :
Berrykitty |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เหมือนกับว่า Agrument ที่ส่งมาจะ ไม่มีใน Datakey ของตัว Gridview นะครับ
|
 |
 |
 |
 |
Date :
2011-05-24 13:54:05 |
By :
13crowns |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

นี่คือตัวอย่าง ตารางที่ต้อง Select data มาจาก gridview อะค่ะ
มันจะมี key 3 ตัว อยู่ในตารางเดียวกัน
|
 |
 |
 |
 |
Date :
2011-05-24 14:37:17 |
By :
Berrykitty |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code นะคะ ตารางข้างบนเป็นแค่ตัวอย่างที่ทำให้เห็นภาพนะคะ
ข้อมูลจริงๆ Select มาจาก SQL sever 2005 ค่ะ
Code Select จาก gridview ลงใน textbox ค่ะ
Code (VB.NET)
Protected Sub Row_Select3(ByVal sender As Object, ByVal e As GridViewCommandEventArgs) Handles GridView3.RowCommand
Dim conse3 As New SqlConnection(ConfigurationManager.ConnectionStrings("LN").ConnectionString)
Dim cmdse3 As New SqlCommand("Select ttimfc010601.t_mser,ttimfc010601.t_mitm FROM ttimfc010601 WHERE ttimfc010601.t_mitm and ttimfc010601.t_mser and ttimfc010601.t_pdno=@se ", conse3)
cmdse3.CommandType = CommandType.Text
Dim currentCommand3 As String = e.CommandName
Dim currentRowIndex As Integer = Int32.Parse(e.CommandArgument)
Dim Data As String = GridView3.DataKeys(currentRowIndex).Value
cmdse3.Parameters.Add("@se", SqlDbType.Char).Value = Data
Dim dase As New SqlDataAdapter(cmdse3)
Dim dsse As New DataSet
Dim drse As DataRow
dase.Fill(dsse)
For Each drse In dsse.Tables(0).Rows
Me.TextBox24.Text = ""
Me.TextBox24.Text &= (drse("t_mser"))
Next
conse3.Close()
Me.GridView3.Visible = False
Me.TextBox26.Visible = False
End Sub
Code search ค่ะ
Code (VB.NET)
Sub serial2()
Dim conea As New SqlConnection(ConfigurationManager.ConnectionStrings("LN").ConnectionString)
Dim cmdea As New SqlCommand("Select ttimfc010601.t_mser,ttimfc010601.t_mitm FROM ttimfc010601 WHERE ttimfc010601.t_mitm like '%" & Me.TextBox26.Text & "%'", conea)
cmdea.CommandType = CommandType.Text
Dim da As New SqlDataAdapter(cmdea)
Dim ds As New DataSet
da.Fill(ds, "ser1")
Me.GridView3.DataSource = ds.Tables("ser1")
Me.GridView3.DataBind()
conea.Close()
End Sub
|
 |
 |
 |
 |
Date :
2011-05-24 15:49:20 |
By :
Berrykitty |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ตอนนี้แก้ได้แล้วค่ะ คุณmr.win ขอบคุณมากเลยนะคะ พอดีว่าลืมใส่ datakey name อะค่ะ สงสัยมึนไปหน่อย
|
 |
 |
 |
 |
Date :
2011-05-24 16:17:52 |
By :
Berrykitty |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|