 |
|
ผมต้องการ Select จาก Datagrid ให้ Show ข้อมูลอีกหน้านึงอ่ะครับ |
|
 |
|
|
 |
 |
|
ผมต้องการ Select จาก Datagrid ให้ Show ข้อมูลอีกหน้านึงอ่ะครับ
คือผมใช้ Code แบบนี้ ออกครับ แต่มันเอา แถวแรกตลอด ใครพอมี Code อะไรช่วยทีครับ
Code (VB.NET)
Dim lblID, lbla, lblb, lblc, lbld, lble As Label
Dim i As Integer
Dim a, b, c, d, f As String
For i = 0 To DataGrid1.Items.Count - 1
lblID = DataGrid1.Items(i).FindControl("lblFiscal")
lbla = DataGrid1.Items(i).FindControl("lblACCode")
lblb = DataGrid1.Items(i).FindControl("lblCR")
lblc = DataGrid1.Items(i).FindControl("lblDept")
lbld = DataGrid1.Items(i).FindControl("lblLoc")
lble = DataGrid1.Items(i).FindControl("lblsubject")
Session("Fiscal") = lblID.Text
Session("AC") = lbla.Text
Session("CR") = lblb.Text
Session("Deptcd") = lblc.Text
Session("Loc") = lbld.Text
Session("Subject") = lble.Text
If e.CommandName = "Img" Then
printpic() 'ตรงนี้ไป print Report แบบรูปภาพอันนี้อีก Case นึงเดี๋ยวกระทู้หน้าแล้วกันครับเอาข้างล่างนี้ก่อน
ElseIf e.CommandName = "Select" Then
Response.Redirect("Show_Data_CMS.aspx")
End If
Next
Tag : .NET, Ms SQL Server 2005, Crystal Report, Web (ASP.NET), VS 2003 (.NET 1.1)
|
|
 |
 |
 |
 |
Date :
2010-08-18 09:38:19 |
By :
juka |
View :
1434 |
Reply :
5 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองใช้ Session กับ DataTable ครับ
Go to : ASP.NET - Session (DataSet and DataTable)
ตัวอย่างการสร้าง DataTable ครับ
Code (VB.NET)
Function DataTableRows() As DataTable
Dim dt As New DataTable
Dim dr As DataRow
'*** Column ***'
dt.Columns.Add("CustomerID")
dt.Columns.Add("Name")
dt.Columns.Add("Email")
dt.Columns.Add("CountryCode")
dt.Columns.Add("Budget")
dt.Columns.Add("Used")
'*** Rows ***'
dr = dt.NewRow
dr("CustomerID") = "C001"
dr("Name") = "Win Weerachai"
dr("Email") = "[email protected]"
dr("CountryCode") = "TH"
dr("Budget") = "1000000"
dr("Used") = "600000"
dt.Rows.Add(dr)
'*** Rows ***'
dr = dt.NewRow
dr("CustomerID") = "C002"
dr("Name") = "John Smith"
dr("Email") = "[email protected]"
dr("CountryCode") = "EN"
dr("Budget") = "2000000"
dr("Used") = "800000"
dt.Rows.Add(dr)
'*** Rows ***'
dr = dt.NewRow
dr("CustomerID") = "C003"
dr("Name") = "Jame Born"
dr("Email") = "[email protected]"
dr("CountryCode") = "US"
dr("Budget") = "3000000"
dr("Used") = "600000"
dt.Rows.Add(dr)
'*** Rows ***'
dr = dt.NewRow
dr("CustomerID") = "C004"
dr("Name") = "Chalee Angel"
dr("Email") = "[email protected]"
dr("CountryCode") = "US"
dr("Budget") = "4000000"
dr("Used") = "100000"
dt.Rows.Add(dr)
Return dt '*** Return DataTable ***'
End Function
ถ้าเข้าใจผิดก็ขออภัย ด้วยครับ
|
 |
 |
 |
 |
Date :
2010-08-18 11:48:27 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณ Mr.Win นะครับ แต่ที่ผมทำคือ ให้เรา Select ข้อมูล จาก Datagrid ครับ แล้วส่งไปอีกหน้านึงครับ
พอดีผมสร้าง Data Table แล้วครับ
ใครพอรู้ช่วยทีนะครับขอบคุณครับ อันนี้คือเต็มๆครับ
Code (VB.NET)
Private Sub DataGrid1_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles DataGrid1.ItemCommand
Dim lblID, lbla, lblb, lblc, lbld, lble As Label
Dim i As Integer
Dim a, b, c, d, f As String
For i = 0 To DataGrid1.Items.Count - 1
lblID = DataGrid1.Items(i).FindControl("lblFiscal")
lbla = DataGrid1.Items(i).FindControl("lblACCode")
lblb = DataGrid1.Items(i).FindControl("lblCR")
lblc = DataGrid1.Items(i).FindControl("lblDept")
lbld = DataGrid1.Items(i).FindControl("lblLoc")
lble = DataGrid1.Items(i).FindControl("lblsubject")
Session("Fiscal") = lblID.Text
Session("AC") = lbla.Text
Session("CR") = lblb.Text
Session("Deptcd") = lblc.Text
Session("Loc") = lbld.Text
Session("Subject") = lble.Text
If e.CommandName = "Img" Then
printpic()
ElseIf e.CommandName = "Select" Then
Response.Redirect("Show_Data_CMS.aspx")
End If
Next
End Sub
|
 |
 |
 |
 |
Date :
2010-08-18 13:04:25 |
By :
juka |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
select ที่คุณว่านี่ หมายถึงพอ click ที่แถวที่มีข้อมุลแล้ว
page จะนำเสนอข้อมูลรายละเอียดออกมาสินะคะ ถ้าใช่เราไม่จำเป็นต้องขนอะไรมากมายขนาดนั้นข้าม session ไปหรอกมั้งคะ
แต่แปะ id ของข้อมูลไปท้าย address แล้วไป select จากฐานข้อมูลก้อพอ แล้วไม่ต้องมาเขียน code behide ด้วยก้อได้
|
 |
 |
 |
 |
Date :
2010-08-18 13:16:21 |
By :
blurEyes |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณ Stupid gurl ครับ ตามที่คุณว่าใช่แล้วครับ แปะ ID ไปทำยังไงอ่ะครับ ส่วนที่อีกหน้าผมก็ Select จาก ฐานข้อมูลแล้วครับ
รบกวนขอ Code ทีครับ
|
 |
 |
 |
 |
Date :
2010-08-18 13:58:38 |
By :
juka |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|