C# Different XML Extraction Techniques
http://developer.yahoo.com/dotnet/howto-xml_cs.html
When user clicks GridViewRow Edit, depending on the data in the GridViewRow, enable/disable column(s) Protected Sub GridView1_RowDataBound(ByVal sender As System.Object, ByVal e As System.Web.UI.WebControls.G... Handles GridView1.RowDataBound If e.Row.RowType = DataControlRowType.DataRow Then Dim Offline_MediaId As Integer = Integer.Parse(e.Row.Cells(1... If Offline_MediaId > 4 Then 'Dim textBox As TextBox = CType(e.Row.FindControl("tx... TextBox) 'textBox.Enabled ......