คือ ทำ Form ไว้หน้าแรก จากนั้นกด ปุ่มค้นหาข้อมูล จากนั้นจะปรากฏ หน้าต่างสำหรับค้นหาข้อมูล เมื่อกดค้นหาแล้ว ข้อมูลจะปรากฏใน Gridview จากนั้น ให้เราเลือก record ที่ต้องการ เมื่อกด ok แล้วให้ค่าใน record ที่ต้องการนั้น ส่งไปยังหน้าแรกที่เป็น form นะครับ ไม่รู้ว่าจะเขียนยังไง เพิ่งหัดทำนะครับ
ไม่ยากเลยครับ ใช้การส่งไปกับ Link ครับ ตอนที่ RowDataBound ครับ
Code (VB.NET)
Private Sub myGridView_RowDataBound(sender As Object, e As GridViewRowEventArgs)
'*** Hyperlink ***'
Dim hplEdit As Hyperlink = CType(e.Item.FindControl("hplEdit"),Hyperlink)
IF Not IsNothing(hplEdit) Then
hplEdit.Text = "Edit"
hplEdit.NavigateUrl = "WebPage.aspx?CustomerID=" & e.Item.DataItem("CustomerID")
End IF