Me Again,
Since I could get this to work (
Is it possible to change the Textbox control to a dropdownlist for a single row inside a datagrid?
If e.Item.DataItem("Field_ID") = 6 Then
Dim DLIST As New DropDownList
DLIST.ID = "DList1"
DLIST.Items.Add("0")
DLIST.Items.Add("25")
DLIST.Items.Add("50")
DLIST.Items.Add("75")
e.Item.Cells(1).Controls(0)= DLIST
end if
Since I could get this to work (
Is it possible to change the Textbox control to a dropdownlist for a single row inside a datagrid?
If e.Item.DataItem("Field_ID") = 6 Then
Dim DLIST As New DropDownList
DLIST.ID = "DList1"
DLIST.Items.Add("0")
DLIST.Items.Add("25")
DLIST.Items.Add("50")
DLIST.Items.Add("75")
e.Item.Cells(1).Controls(0)= DLIST
end if