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

HOME > .NET Framework > Forum > ช่วยดูโค้ดให้หน่อยค่ะ detailView อยาก edit แบบอื่นที่ไม่ใช่ textbox



 

ช่วยดูโค้ดให้หน่อยค่ะ detailView อยาก edit แบบอื่นที่ไม่ใช่ textbox

 



Topic : 047186



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



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




จากรูปนะคะ อยากให้ ตรงส่วน detailveiw พอกด edit แล้ว สามารถแก้ไขข้อมูลได้
ซึ่ง เราทำได้แล้วค่ะ แต่ติดอยู่ที่ว่าเวลาแก้ไขข้อมูล มันเป็น textbox ไม่ทราบว่าถ้าจะเปลี่ยนเป็น DropDownList
หรือ listbox เวลาแก้ไข้ข้อมูล เช่น จังหวัดให้เลือกเอา จะได้ไม่ต้องพิมพ์ ต้องแก้ไขโค้ดตรงไหนคะ

Code (ASP)



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







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-08-17 16:17:33 By : HaZePinK View : 5202 Reply : 27
 

 

No. 1



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



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


นี่โค้ดค่ะ

Code (VB.NET)
Dim Service As New WebService1
    Dim ConnStr As String = "server=(local);database=police;uid=police;password=police"
    Dim Conn As New SqlConnection(ConnStr)
    Dim strPeID As String = ""
    Dim Sql As String
    'Dim Sql As String = "SELECT * FROM TblPersonel"
    Dim Cmd As SqlCommand
    'Dim Idx As String = Request.QueryString("id")


    Dim MyDa As New SqlDataAdapter(Sql, Conn)
    Dim Da As New SqlDataAdapter
    Dim Ds As New DataSet



    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        'Dim strConnString As String
        ' strConnString = "SELECT * FROM TblPersonel"

        Conn.Open()

        If Not Page.IsPostBack Then
            GridViewBindData()

        End If


    End Sub



    Protected Sub GridViewBindData()
        Sql = "SELECT * FROM TblPersonel"
        Dim dtReader As SqlDataReader
        Cmd = New SqlCommand(Sql, Conn)
        dtReader = Cmd.ExecuteReader()

        '*** BindData to GridView ***'
        GridView1.DataSource = dtReader
        GridView1.DataBind()
        dtReader.Close()
        dtReader = Nothing
    End Sub






    Protected Sub DetailsViewBindData()

        Sql = "SELECT * FROM TblPersonel WHERE Pe_Id = '" & strPeID & "' "
        Dim dtReader As SqlDataReader
        Cmd = New SqlCommand(Sql, Conn)

        dtReader = Cmd.ExecuteReader()

        '*** BindData to DetailsView ***'
        DetailsView1.DataSource = dtReader
        DetailsView1.DataBind()

        dtReader.Close()
        dtReader = Nothing

    End Sub

    Protected Sub Page_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Unload
        Conn.Close()
        Conn = Nothing
    End Sub

    Private Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles GridView1.RowEditing
        GridView1.Visible = False
        strPeID = GridView1.DataKeys(e.NewEditIndex).Value.ToString
        DetailsView1.Visible = True
        DetailsViewBindData()
    End Sub




    Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles GridView1.SelectedIndexChanged

    End Sub



    Private Sub DetailsView1_ModeChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewModeEventArgs) Handles DetailsView1.ModeChanging
        Select Case e.NewMode
            Case DetailsViewMode.Edit
                Dim lblPeID As Label = CType(DetailsView1.FindControl("lblPeID"), Label)
                strPeID = lblPeID.Text
                DetailsView1.ChangeMode(DetailsViewMode.Edit)
                DetailsViewBindData()
            Case DetailsViewMode.ReadOnly
                DetailsView1.ChangeMode(DetailsViewMode.ReadOnly)
                DetailsView1.Visible = False
                GridView1.Visible = True
                ShowData()
        End Select

    End Sub


    Private Sub DetailsView1_ItemUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewUpdateEventArgs) Handles DetailsView1.ItemUpdating
        '*** Old PeID ***'
        Dim lblPeID As Label = CType(DetailsView1.FindControl("lblPeID"), Label)
        strPeID = lblPeID.Text
        '*** PersonelID ***'
        Dim txtPersonelID As TextBox = CType(DetailsView1.FindControl("txtEditPersonelID"), TextBox)
        '*** Name ***'
        Dim txtName As TextBox = CType(DetailsView1.FindControl("txtEditPeName"), TextBox)
        '*** Position ***'
        Dim txtPosition As TextBox = CType(DetailsView1.FindControl("txtEditPePosition"), TextBox)


        Sql = "UPDATE TblPersonel SET Pe_Id = '" & txtPersonelID.Text & "' " & _
        " ,Pe_name = '" & txtName.Text & "' " & _
        " ,Pe_Position = '" & txtPosition.Text & "' " & _
        " WHERE Pe_Id = '" & strPeID & "'"

        Cmd = New SqlCommand(Sql, Conn)
        Cmd.ExecuteNonQuery()


        DetailsView1.ChangeMode(DetailsViewMode.ReadOnly)
        DetailsView1.Visible = False
        GridView1.Visible = True
        GridViewBindData()

    End Sub







แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-17 16:18:54 By : HaZePinK
 


 

No. 2



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



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


ทำเป็น template field เอาค่ะ ซึ่งในนั้นจะมีต้องกำหนด edit template >> control ที่ปรากฏเมื่อเข้าสู่ mode edit
กับ item template >> control ใน mode view ปกติ
ซึ่งเราจะกำหนดที่ส่วนdesign หรือ aspx ค่ะ

Code (ASP)
<asp:DetailsView ID="DetailsView1" Runat="server"  DataSourceID="ObjectDataSource1"AutoGenerateRows="False" ForeColor="Black"  CellPadding="2" BorderColor="Tan" GridLines="None" BorderWidth="1px" BackColor="LightGoldenrodYellow">
   .....
   <Fields>
      <asp:BoundField HeaderText="ID" DataField="ID" SortExpression="ID"></asp:BoundField>
      <asp:BoundField HeaderText="Name" DataField="Name" SortExpression="Name"></asp:BoundField>
      <asp:BoundField HeaderText="LastName" DataField="LastName" SortExpression="LastName"></asp:BoundField>
      <asp:TemplateField SortExpression="State" HeaderText="State" >
         <EditItemTemplate>
            <asp:DropDownList DataTextField="State" DataValueField="State" ID="DropDownList2" Runat="server" SelectedValue='<%# Bind("State") %>' >
               <asp:ListItem>CA</asp:ListItem>
               <asp:ListItem>VT</asp:ListItem>
               <asp:ListItem>UT</asp:ListItem>
               <asp:ListItem>MD</asp:ListItem>
            </asp:DropDownList>
         </EditItemTemplate>
         <ItemTemplate >
            <asp:Label Runat="server" Text='<%# Bind("State") %>' ID="Label1"></asp:Label>
         </ItemTemplate>
      ...


ถ้าต้องการ fill item ของ dropdownlist แนะนำว่าให้ใช้ sqldatasource จะได้ง่ายไม่ต้องไปเขียนเพิ่มที่ code brhide ค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-17 16:56:22 By : blurEyes
 

 

No. 3



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



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


แล้วถ้า ใน detailView จะมีแก้ทั้งแบบ textbox แล้วก็ DropDownList
ถ้าจะให้ดึงมาจากคนละตารางกันอ่ะคะ แบบเฉพาะส่วนของDropDownList ดึงมาจากตารางอื่น
จะต้องทำยังไง เขียนโค้ดยังไงคะ

sqldatasource เนี่ย ดึงได้ทีนึงคือดึงทีละตารางแต่เลือได้ว่าเอาอะไรบ้าง?
สามารถดึงจาก 2 ตารางได้มั้ย

ขอบคุณค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-17 20:35:20 By : HaZePinK
 


 

No. 4



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



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


field ไหนจะใช้ textbox ก็ใช้ไปค่ะ
field ไหนจะใช้ dropdownlist ก้อใช้ไป
field ไหนจะใช้ checkbox ก้อใช้ไป

sqldatasource ใช้ดึงข้อมูลจาก sqlserver ซึงคุณไม่ได้บอกว่าใช้ฐานข้อมูลอะไรแต่ถ้าเป็น ,net
เราจะนิยมอยู่ 2 database คือ sqlserver หรือ access และตัว sqldatasource ก้อดึงข้อมูลจาก
query หากต้องการดึงข้อมูลมากกว่า 1 ตารางคุณก้อ join กันมาตามสมควรน่ะค่ะ
และจะสังเกตุว่าจะมีการใช้ <% Bind('Fieldname')%> นั่นเป็นส่วนที่กำหนดค่า field ของ table ที่คุณกำลังแก้ไขอยู่ค่ะ
ส่วนวิธีการการใช้ sqlDataSource ก้อไม่มีอะไรซับซ้อน ก้อลากมาวางที่ form แล้วกำหนด property select command
จากนั้นใน dropdownlist ก็ bind เข้ากับ datasource ตามปกติค่ะ

ถ้าอยากได้ตัวอย่างหรือ code เพิ่ม ให้พิมพ์คำว่า dropdownlist detailview ในช่องค้นหาอะค่ะที่พี่วินทำไว้ให้แล้ว
ที่บนสุดด้านขวา จะเห็น คำว่า อยากหาอะไรพิมพ์ตรงนี้ได้เลยจ้า ^_^ น่ะคะมีเยอะเลย




ประวัติการแก้ไข
2010-08-17 21:39:25
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-17 20:58:20 By : blurEyes
 


 

No. 5



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



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


ทำเป็น DropDownList ได้แล้วค่ะ
แต่พอกดedit ตรงที่ไป update sql ไม่ทราบว่าต้องเขียนโค้ดยังไงคะ
โค้ดของเก่าที่เป็น textbox เป็นแบบนี้

Code (VB.NET)
Sql = "UPDATE TblPersonel SET Pe_Id = '" & txtPersonelID.Text & "' " & _
" ,Pe_name = '" & txtName.Text & "' " & _
" ,Pe_Position = '" & txtPosition.Text & "' " & _
" WHERE Pe_Id = '" & strPeID & "'"




อีกคำถามคือ พอทำเป็นDropDownList ได้แล้ว
ทำยังไงให้เวลาที่เรากดedit ข้อมูลตรง DropDownList มันตรงกับข้อมูลใน Database
เพราะตอนนี้ พอกด Edit ข้อมูลในDropDownList ที่ดึงมา มันเป็นข้อมูลแรก อ่ะค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-17 23:14:26 By : HaZePinK
 


 

No. 6



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



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


ในกรณีของ ddl (dropdownlist) เราจะมักใช้ property SelectedValue ค่ะเทียบได้กับ property text ใน textbox เท่านั้นเอง
ส่วนเวลา เข้าสู่ edit mode แล้วให้ค่าของ selectedvalue ตรวกับฐานข้อมูลด้วย การ bind >> SelectedValue='<%# Bind("State") %>'
ค่ะ จากนั้น ddl จะจัดการเรียกข้อมูลมาเอง

พยายามเขียนให้จบที่ ASPX นะคะ จะได้ประหยัดเวลา เราไม่จำเป็นต้องเขียน code ให้มาก จะได้เอาเวลาไปทำอย่างอื่น
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-18 04:16:05 By : blurEyes
 


 

No. 7



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



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


ตอนนี้ทำให้update ลง database ได้แล้วค่ะ
แต่พอจะกด View อีกครั้ง มันerror แบบในรูปอ่ะค่ะ

รูป error
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-19 01:53:42 By : HaZePinK
 


 

No. 8



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

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

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

ASP.NET DetailsView Control
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-19 06:47:31 By : webmaster
 


 

No. 9



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


ว้าวๆๆๆๆๆ wm กับ avatar ใหม่ สุดยอดดดดดดดดดดด
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-19 09:50:58 By : tungman
 


 

No. 10



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



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


ยังแก้ปัญหานี้ไม่ได้เลยค่ะ จากรูปด้านบนที่ error
ตอนแรกอีดิทได้แล้วนะคะ แต่พอจะอีดิทอันอื่นต่อ
ก็error แบบในภาพ >,<
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-20 14:07:26 By : HaZePinK
 


 

No. 11



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



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


ตอนนี้ใช้ code อันไหนละคะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-20 14:45:52 By : blurEyes
 


 

No. 12



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



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


Code (VB.NET)
Imports System.Data
Imports System.Data.SqlClient

Partial Public Class WebForm3
    Inherits System.Web.UI.Page
    Dim Service As New WebService1
    Dim ConnStr As String = "server=(local);database=police;uid=police;password=police"
    Dim Conn As New SqlConnection(ConnStr)
    Dim strPeID As String = ""
    Dim Sql As String
    'Dim Sql As String = "SELECT * FROM TblPersonel"
    Dim Cmd As SqlCommand
    'Dim Idx As String = Request.QueryString("id")


    Dim MyDa As New SqlDataAdapter(Sql, Conn)
    Dim Da As New SqlDataAdapter
    Dim Ds As New DataSet


    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        'Dim strConnString As String
        ' strConnString = "SELECT * FROM TblPersonel"

        Conn.Open()

        If Not Page.IsPostBack Then
            GridViewBindData()

        End If


    End Sub



    Protected Sub GridViewBindData()
        Sql = "SELECT * FROM TblPersonel"
        Dim dtReader As SqlDataReader
        Cmd = New SqlCommand(Sql, Conn)
        dtReader = Cmd.ExecuteReader()

        '*** BindData to GridView ***'
        GridView1.DataSource = dtReader
        GridView1.DataBind()
        dtReader.Close()
        dtReader = Nothing
    End Sub
    Protected Sub DetailsViewBindData()

        Sql = "SELECT * FROM TblPersonel WHERE Pe_Id = '" & strPeID & "' "
        Dim dtReader As SqlDataReader
        Cmd = New SqlCommand(Sql, Conn)

        dtReader = Cmd.ExecuteReader()

        '*** BindData to DetailsView ***'
        DetailsView1.DataSource = dtReader
        DetailsView1.DataBind()


        dtReader.Close()
        dtReader = Nothing

    End Sub

    Protected Sub Page_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Unload
        Conn.Close()
        Conn = Nothing
    End Sub

    Private Sub GridView1_RowEditing(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles GridView1.RowEditing
        GridView1.Visible = False
        strPeID = GridView1.DataKeys(e.NewEditIndex).Value.ToString
        DetailsView1.Visible = True
        DetailsViewBindData()
    End Sub

    Private Sub DetailsView1_ModeChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewModeEventArgs) Handles DetailsView1.ModeChanging
        Select Case e.NewMode
            Case DetailsViewMode.Edit
                Dim lblPeID As Label = CType(DetailsView1.FindControl("lblPeID"), Label)
                strPeID = lblPeID.Text
                DetailsView1.ChangeMode(DetailsViewMode.Edit)
                DetailsViewBindData()
            Case DetailsViewMode.ReadOnly
                DetailsView1.ChangeMode(DetailsViewMode.ReadOnly)
                DetailsView1.Visible = False
                GridView1.Visible = True
                'ShowData()
        End Select

    End Sub


    Private Sub DetailsView1_ItemUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewUpdateEventArgs) Handles DetailsView1.ItemUpdating
        '*** Old PeID ***'
        Dim lblPeID As Label = CType(DetailsView1.FindControl("lblPeID"), Label)
        strPeID = lblPeID.Text
        '*** PersonelID ***'
        Dim txtPersonelID As TextBox = CType(DetailsView1.FindControl("txtEditPersonelID"), TextBox)
        '*** Name ***'
        Dim txtName As TextBox = CType(DetailsView1.FindControl("txtEditPeName"), TextBox)
        '*** Position ***'
        Dim Position As DropDownList = CType(DetailsView1.FindControl("txtEditPosition"), DropDownList)


        Sql = "UPDATE TblPersonel SET Pe_Id = '" & txtPersonelID.Text & "' " & _
        " ,Pe_name = '" & txtName.Text & "' " & _
        " ,Pe_Position = '" & Position.SelectedItem.Text & "' " & _
        " WHERE Pe_Id = '" & strPeID & "'"

        Cmd = New SqlCommand(Sql, Conn)
        Cmd.ExecuteNonQuery()


        DetailsView1.ChangeMode(DetailsViewMode.ReadOnly)
        DetailsView1.Visible = False
        GridView1.Visible = True
        GridViewBindData()





    End Sub


End Class

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-20 15:14:58 By : HaZePinK
 


 

No. 13



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



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


ใช้โค้ดข้างบนอ่ะค่ะ
ช่วยหน่อยนะคะ
ยังแก้ไม่ได้เลย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-21 23:33:30 By : HaZePinK
 


 

No. 14



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



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


ไม่อยากตั้งกระทู้ใหม่แต่ไม่มีคนตอบเลย T_T
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 00:56:22 By : HaZePinK
 


 

No. 15



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


ให้เริ่มจากตรงไหนครับ

- กด view ใน gridview แสดง detail ให้ detailview

- กด edit ใน detailview แก้ไขข้อมูลใน textbox, dropdownlist

- กด save บันทึกลง database
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 13:33:28 By : tungman
 


 

No. 16



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



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


- กด view ใน gridview แสดง detail ให้ detailview

- กด edit ใน detailview แก้ไขข้อมูลใน textbox, dropdownlist

- กด save บันทึกลง database

มัน save ได้แล้ว มันก็จะกลับมาที่ gridview ให้เรากด view เพื่อที่จะ edit ต่อ หรือทำอย่างอื่นต่อ

แต่พอเรากด view เพื่อจะ edit ต่อ

แล้วกด edit ใน detailview มันก็จะ error แบบในรูปอ่ะค่ะ

error
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 13:44:09 By : HaZePinK
 


 

No. 17



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


ลองเพิ่มใน DetailsView1_ItemUpdating ให้เวลา update แล้ว redirect กลับหน้าเดิมสิครับ

Code (VB.NET)
Private Sub DetailsView1_ItemUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewUpdateEventArgs) Handles DetailsView1.ItemUpdating
    ....
    ....
    ....
    ....
    ....
    ....

    Response.Redirect(.............)
End Sub

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 13:58:15 By : tungman
 


 

No. 18



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



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


เพิ่มแล้วค่ะ
คราวนี้กด edit แล้ว updateลง database ได้แล้ว จะ editกี่รอบก็ได้แล้วค่ะ
แต่ถ้า กด edit ไปแล้ว กด cancel เพื่อที่จะไปเลือก view แล้ว edit ตัวอื่น
จะ error เหมือนเดิมเลย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 14:04:57 By : HaZePinK
 


 

No. 19



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


แฮนเดิล event ตอน cancel หรือยังครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 14:12:34 By : tungman
 


 

No. 20



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



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


ยังไงหรอคะ แฮนเดิล event ตอน cancel
ต้องใช้เป็น event อะไรหรอคะ

T_T ยากจัง


ประวัติการแก้ไข
2010-08-23 14:36:56
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 14:30:44 By : HaZePinK
 


 

No. 21



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


ไม่มีหรอกครับ ผมมั่ว

ผมไม่รู้ว่ามัน postback ไปกี่หน ทำ event อะไรไปบ้าง

แต่ที่แน่ๆ มันจะโหลด viewstate แล้วมันหาไม่เจอก็เลย error

คือ การเขียน asp.net เราจำเป็นต้องรู้ page life cycle ด้วย

ว่า event ไหนทำอะไร ค่าไหนมีอายุถึงเมื่อไหร่เหมือนกันนะ

งั้นติดไว้ก่อน เดี๋ยวเย็นๆ ถ้าว่างๆ จะลองทำให้ดู

ปล. ผมจะใช้ ajax นะ เพราะดูแล้วของคุณ postback โหดน่าดู
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 14:39:15 By : tungman
 


 

No. 22



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



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


ค่ะ ขอบคุณมากค่ะ


ประวัติการแก้ไข
2010-08-23 14:47:07
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 14:46:27 By : HaZePinK
 


 

No. 23



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


1. เปิด web.config ไปที่ tag connectionStrings แล้ว add ConnectionString ตามด้านล่าง

Code (VB.NET)
 <connectionStrings>
    <add name="SqlConnectionString" connectionString="Data Source=(local);Initial Catalog=police;User Id=police;Password=police;" providerName="System.Data.SqlClient" />
 </connectionStrings>


ปล. เขียนโปรแกรมให้ตำรวจอยู่เหรอ โครงการ police หรือเปล่า
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 23:45:02 By : tungman
 


 

No. 24



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


2. คลิกขวาที่ folder app_code (ถ้าไม่มีให้คลิกขวาที่ชื่อโปรเจ็คแล้ว add asp.net folder) เลือก add new item...

สร้าง class ตั้งชื่อว่า ExampleData.vb แล้วก็อปโค้ดด้านล่างไปใส่

ExampleData.vb
Imports Microsoft.VisualBasic

Imports System.Data
Imports System.Data.SqlClient
Imports System.Web.Configuration

Public Class ExampleData
    Private sqlConnection As SqlConnection

    Public Sub New()
        Dim sqlConnectionString As String = WebConfigurationManager.ConnectionStrings("SqlConnectionString").ConnectionString
        sqlConnection = New SqlConnection(sqlConnectionString)

        If Not TableExist("ExampleData") Then
            CreateExampleData()
        End If

        If Not TableExist("DropDropListData") Then
            CreateDropDropListData()
        End If
    End Sub

    Public Function GetAllData() As DataTable
        Dim sqlCommandString As String = "Select [ExampleData].[ID], [ExampleData].[Name], [ExampleData].[PositionID], [DropDropListData].[PositionName] From [ExampleData] Inner Join [DropDropListData] On ([ExampleData].[PositionID] = [DropDropListData].[PositionID])"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)

        Dim Dt As New DataTable()
        Dim dataAdapter As New SqlDataAdapter()
        dataAdapter.SelectCommand = sqlCommand
        dataAdapter.Fill(Dt)

        Return Dt
    End Function

    Public Function GetData(ByVal ID As Integer) As DataTable
        Dim sqlCommandString As String = "Select [ExampleData].[ID], [ExampleData].[Name], [ExampleData].[PositionID], [DropDropListData].[PositionName] From [ExampleData] Inner Join [DropDropListData] On ([ExampleData].[PositionID] = [DropDropListData].[PositionID]) Where [ExampleData].[ID]=@ID"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)
        sqlCommand.Parameters.AddWithValue("@ID", ID)

        Dim Dt As New DataTable()
        Dim dataAdapter As New SqlDataAdapter()
        dataAdapter.SelectCommand = sqlCommand
        dataAdapter.Fill(Dt)

        Return Dt
    End Function

    Public Function GetDropDownListData() As DataTable
        Dim sqlCommandString As String = "Select [PositionID], [PositionName] From [DropDropListData]"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)

        Dim Dt As New DataTable()
        Dim dataAdapter As New SqlDataAdapter()
        dataAdapter.SelectCommand = sqlCommand
        dataAdapter.Fill(Dt)

        Return Dt
    End Function

    Public Sub UpdateData(ByVal ID As Integer, ByVal Name As String, ByVal PositionID As Integer)
        Dim sqlCommandString As String = "Update [ExampleData] Set [Name]=@Name, [PositionID]=@PositionID Where [ID]=@ID"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)
        sqlCommand.Parameters.AddWithValue("@Name", Name)
        sqlCommand.Parameters.AddWithValue("@PositionID", PositionID)
        sqlCommand.Parameters.AddWithValue("@ID", ID)

        sqlConnection.Open()
        sqlCommand.ExecuteNonQuery()
        sqlConnection.Close()
    End Sub

    Private Function TableExist(ByVal TableName As String) As Boolean
        Dim sqlCommandString As String = String.Format("If Object_ID('{0}', 'U') Is Not Null Select 'true' Else Select 'false'", TableName)
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)

        sqlConnection.Open()
        Dim haveTable As Boolean = Convert.ToBoolean(sqlCommand.ExecuteScalar())
        sqlConnection.Close()

        Return haveTable
    End Function

    Private Sub CreateExampleData()
        Dim sqlCommandString As String = "Create Table [ExampleData] ([ID] int Identity(1,1) Primary Key Clustered, [Name] nvarchar(50), [PositionID] int)"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)

        sqlConnection.Open()
        sqlCommand.ExecuteNonQuery()
        sqlConnection.Close()

        FillExampleData()
    End Sub

    Private Sub FillExampleData()
        Dim Dt As New DataTable()
        Dt.Columns.Add(New DataColumn("Name", GetType(String)))
        Dt.Columns.Add(New DataColumn("PositionID", GetType(Integer)))

        For i As Integer = 0 To 9
            Dim Dr As DataRow = Dt.NewRow()
            Dr("Name") = String.Format("Tungman{0}", (i + 1).ToString())
            Dr("PositionID") = 1
            Dt.Rows.Add(Dr)
        Next

        Dim sqlCommandString As String = "Insert Into [ExampleData] ([Name], [PositionID]) Values (@Name, @PositionID)"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)
        sqlCommand.Parameters.Add("@Name", SqlDbType.NVarChar, 50, "Name")
        sqlCommand.Parameters.Add("@PositionID", SqlDbType.Int, 4, "PositionID")

        Dim dataAdapter As New SqlDataAdapter()
        dataAdapter.InsertCommand = sqlCommand
        dataAdapter.Update(Dt)
    End Sub

    Private Sub CreateDropDropListData()
        Dim sqlCommandString As String = "Create Table [DropDropListData] ([PositionID] int Identity(1,1) Primary Key Clustered, [PositionName] nvarchar(50))"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)

        sqlConnection.Open()
        sqlCommand.ExecuteNonQuery()
        sqlConnection.Close()

        FillDropDropListData()
    End Sub

    Private Sub FillDropDropListData()
        Dim Dt As New DataTable()
        Dt.Columns.Add(New DataColumn("PositionName", GetType(String)))

        For i As Integer = 0 To 2
            Dim Dr As DataRow = Dt.NewRow()
            Dr("PositionName") = String.Format("Position{0}", (i + 1).ToString())
            Dt.Rows.Add(Dr)
        Next

        Dim sqlCommandString As String = "Insert Into [DropDropListData] ([PositionName]) Values (@PositionName)"
        Dim sqlCommand As New SqlCommand(sqlCommandString, sqlConnection)
        sqlCommand.Parameters.Add("@PositionName", SqlDbType.NVarChar, 50, "PositionName")

        Dim dataAdapter As New SqlDataAdapter()
        dataAdapter.InsertCommand = sqlCommand
        dataAdapter.Update(Dt)
    End Sub
End Class


class นี้ใช้สำหรับติดต่อฐานข้อมูล (query, update) โดยมันจะสร้าง table ให้ใหม่สอง table

คือ ExampleData กับ DropDownListData

1
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 23:48:56 By : tungman
 


 

No. 25



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


3. คลิกขวาที่ชื่อโปรเจ็คแล้ว add new item.. เลือก webform ตั้งชื่อว่า GridViewDetailView.aspx

แล้วก็อบโค้ดด้านล่างไปวาง

GridViewDetailView.aspx
<%@ Page Language="VB" AutoEventWireup="true" CodeFile="GridViewDetailView.aspx.vb" Inherits="GridViewDetailView" EnableEventValidation="false" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>GridView &amp; DetailView</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="DetailsView1" EventName="ItemUpdating" />
            </Triggers>
            <ContentTemplate>
                <asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="false">
                    <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
                    <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
                    <SelectedRowStyle BackColor="#D1DDF1" ForeColor="#333333" />
                    <Columns>
                        <asp:BoundField HeaderText="รหัสบุคคลากร" DataField="ID" />
                        <asp:BoundField HeaderText="ชื่อ-สกุล" DataField="Name" />
                        <asp:BoundField HeaderText="ตำแหน่ง" DataField="PositionName" />
                    </Columns>
                </asp:GridView>            
            </ContentTemplate>
        </asp:UpdatePanel>
        <br />
        <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="GridView1" EventName="SelectedIndexChanged" />
                <asp:AsyncPostBackTrigger ControlID="DetailsView1" EventName="ItemUpdating" />
                <asp:AsyncPostBackTrigger ControlID="DetailsView1" EventName="ModeChanging" />
            </Triggers>
            <ContentTemplate>
                <asp:DetailsView ID="DetailsView1" runat="server" Height="50px" Width="300px" 
                    CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateEditButton="true" AutoGenerateRows="false">
                    <AlternatingRowStyle BackColor="White" />
                    <CommandRowStyle BackColor="#D1DDF1" Font-Bold="True" />
                    <EditRowStyle BackColor="#2461BF" />
                    <FieldHeaderStyle BackColor="#DEE8F5" Font-Bold="True" />
                    <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
                    <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
                    <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
                    <RowStyle BackColor="#EFF3FB" />
                    <Fields>
                        <asp:BoundField HeaderText="รหัสบุคคลากร" DataField="ID" ReadOnly="true" />
                        <asp:TemplateField HeaderText="ชื่อ-สกุล">
                            <ItemTemplate>
                                <asp:Label ID="LabelName" runat="server" Text="Label"></asp:Label>
                            </ItemTemplate>
                            <EditItemTemplate>
                                <asp:TextBox ID="TextBoxName" runat="server"></asp:TextBox>
                            </EditItemTemplate>
                        </asp:TemplateField>
                        <asp:TemplateField HeaderText="ตำแหน่ง">
                            <ItemTemplate>
                                <asp:Label ID="LabelPosition" runat="server" Text="Label"></asp:Label>
                            </ItemTemplate>
                            <EditItemTemplate>
                                <asp:DropDownList ID="DropDownListPosition" runat="server">
                                </asp:DropDownList>
                            </EditItemTemplate>
                        </asp:TemplateField>
                    </Fields>
                </asp:DetailsView>
            </ContentTemplate>
        </asp:UpdatePanel>
    </div>
    </form>
</body>
</html>


GridViewDetailView.aspx.vb
Imports System.Data

Partial Class GridViewDetailView
    Inherits System.Web.UI.Page

    Protected Sub form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles form1.Load
        Dim data As New ExampleData()
        GridView1.DataSource = data.GetAllData()
        GridView1.DataKeyNames = New String() {"ID"}
        GridView1.DataBind()

        DetailsView1.DataKeyNames = New String() {"ID"}
    End Sub

    Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound
        If e.Row.RowType = DataControlRowType.DataRow Then
            e.Row.Attributes.Add("onclick", Page.ClientScript.GetPostBackEventReference(DirectCast(sender, GridView), String.Format("Select${0}", e.Row.RowIndex.ToString())))
            e.Row.Attributes.Add("onmouseover", "javascript:this.style.backgroundColor='#EFF3FB'; this.style.cursor='pointer'")
            e.Row.Attributes.Add("onmouseout", "javascript:this.style.backgroundColor='#FFFFFF';")
        End If
    End Sub

    Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.SelectedIndexChanged
        GridView1.SelectedRow.Attributes.Clear()

        If GridView1.SelectedIndex >= 0 Then
            Dim data As New ExampleData()
            DetailsView1.DataSource = data.GetData(GridView1.DataKeys(GridView1.SelectedIndex).Value)
            DetailsView1.DataBind()
        End If
    End Sub

    Protected Sub DetailsView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles DetailsView1.DataBound
        Dim Drow As DataRowView = DirectCast(DetailsView1.DataItem, DataRowView)

        Select Case DetailsView1.CurrentMode
            Case DetailsViewMode.ReadOnly
                DirectCast(DetailsView1.FindControl("LabelName"), Label).Text = Drow("Name")
                DirectCast(DetailsView1.FindControl("LabelPosition"), Label).Text = Drow("PositionName")
            Case (DetailsViewMode.Edit)
                Dim txt1 As TextBox = DirectCast(DetailsView1.FindControl("TextBoxName"), TextBox)
                txt1.Text = Drow("Name")

                Dim ddlData As New ExampleData()
                Dim ddl1 As DropDownList = DirectCast(DetailsView1.FindControl("DropDownListPosition"), DropDownList)
                Dim dt As DataTable = ddlData.GetDropDownListData()
                For Each dr As DataRow In dt.Rows
                    Dim lt As New ListItem()
                    lt.Text = dr("PositionName").ToString()
                    lt.Value = dr("PositionID").ToString()

                    If CInt(Drow("PositionID").ToString()) = CInt(dr("PositionID").ToString()) Then
                        lt.Selected = True
                    End If

                    ddl1.Items.Add(lt)
                Next
        End Select
    End Sub

    Protected Sub DetailsView1_ItemUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewUpdateEventArgs) Handles DetailsView1.ItemUpdating
        Dim id As Integer = CInt(DetailsView1.Rows(0).Cells(1).Text)
        Dim txt1 As TextBox = DirectCast(DetailsView1.FindControl("TextBoxName"), TextBox)
        Dim ddl1 As DropDownList = DirectCast(DetailsView1.FindControl("DropDownListPosition"), DropDownList)

        Dim data As New ExampleData()
        data.UpdateData(id, txt1.Text, CInt(ddl1.SelectedValue))

        DetailsView1.ChangeMode(DetailsViewMode.ReadOnly)
        DetailsView1.DataSource = data.GetData(GridView1.DataKeys(GridView1.SelectedIndex).Value)
        DetailsView1.DataBind()

        GridView1.DataSource = data.GetAllData()
        GridView1.DataBind()
    End Sub

    Protected Sub DetailsView1_ModeChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewModeEventArgs) Handles DetailsView1.ModeChanging
        Select Case e.NewMode
            Case (DetailsViewMode.Edit)
                DetailsView1.ChangeMode(DetailsViewMode.Edit)
            Case (DetailsViewMode.ReadOnly)
                DetailsView1.ChangeMode(DetailsViewMode.ReadOnly)
        End Select

        Dim data As New ExampleData()
        DetailsView1.DataSource = data.GetData(GridView1.DataKeys(GridView1.SelectedIndex).Value)
        DetailsView1.DataBind()
    End Sub
End Class

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 23:51:12 By : tungman
 


 

No. 26



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

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

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


4. เสร็จแล้วลองรันดู (วันหลังใครใช้ vb จะไม่เขียนให้แล้วนะ)

2

หุหุ ajax ล้วนๆ debug ยากฉิบหาย
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2010-08-23 23:54:46 By : tungman
 


 

No. 27



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



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


tungman ใจดีจริงๆ เขียนให้เลย 55+
พอดีได้เข้ามาอ่านค่ะ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-20 17:27:04 By : por_punggo
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยดูโค้ดให้หน่อยค่ะ detailView อยาก edit แบบอื่นที่ไม่ใช่ textbox
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ 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 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่