Hi,
I am using asp.net 2.0.
Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.ItemCommand
If e.CommandName = "RowClick" Then
Dim item As GridDataItem = e.Item
selUserid = item("UserId").Text
TxtName.Text = item("Name").Text
TxtUserName.Text = item("UserName").Text
TxtEmail.Text = item("Email").Text
TxtPassword.Text = item("Password").Text
TxtPhone.Text = item("UserPhone").Text
cmbCity.Text = item("PosId").Text
End If
End Sub
The password textbox is in password mode, but by clicking on grid all the textboxes are filled with values except password textbox.
Can any body help me out.
Thanks in advance
I am using asp.net 2.0.
Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.ItemCommand
If e.CommandName = "RowClick" Then
Dim item As GridDataItem = e.Item
selUserid = item("UserId").Text
TxtName.Text = item("Name").Text
TxtUserName.Text = item("UserName").Text
TxtEmail.Text = item("Email").Text
TxtPassword.Text = item("Password").Text
TxtPhone.Text = item("UserPhone").Text
cmbCity.Text = item("PosId").Text
End If
End Sub
The password textbox is in password mode, but by clicking on grid all the textboxes are filled with values except password textbox.
Can any body help me out.
Thanks in advance