Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private void DataGrid1_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
if( e.CommandName == "Select")
{
// call the routine here
}
}
.....
if( e.CommandName == "Select")
{
// call the routine here
string userName =((Label)e.Item.FindControl("idUser")).Text;
// some calculations with userName
}