R
refresh
Hi there!
I have a datagrid with some textbox controls on it. First, i set those
textboxes readonly. I want when the user click on a specific button,
those textboxes became editable.
I try
((TextBox)myGrid.Items[e.Item.ItemIndex].FindControl("txtName")).ReadOnly
= false;
but it's not work.
Can you help me solve that??? Thank you!
P/S: I'm new to ASP.NET
I have a datagrid with some textbox controls on it. First, i set those
textboxes readonly. I want when the user click on a specific button,
those textboxes became editable.
I try
((TextBox)myGrid.Items[e.Item.ItemIndex].FindControl("txtName")).ReadOnly
= false;
but it's not work.
Can you help me solve that??? Thank you!
P/S: I'm new to ASP.NET