Hi
i am using grid bound columns and followed this procedure to retrive the values
but what happens is that when i edit and enter a value the item["Users"].text value is   why i am not getting the value what i have enterd to update?
pl help
i am using grid bound columns and followed this procedure to retrive the values
string strID = string.Empty;
string UnderLicenseeID = string.Empty;
string StrType = string.Empty;
string msg = string.Empty;
//RadTextBox Users = ((RadTextBox)e.Item.FindControl("txtUsers")).Text;
ViewState["bound"] = "1";
if(e.Item is GridDataItem)
{
GridDataItem Item = e.Item as GridDataItem;
if(ViewState["bound"].ToString() == "1")
{
foreach (GridDataItem item in RadGrid1.Items)
{
if(item["Users"].Text != null)
{
strID = item["ClientID"].Text;
UnderLicenseeID = item["UnderLicense"].Text;
StrType = item["Type"].Text;
msg = item["Name"].Text;
RadGrid2.Visible = false;
}
}
}
}
pl help