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.
[green]// C#
// variable declarations[/green]
protected System.Web.UI.HtmlControls.HtmlInputHidden paramID;
protected System.Web.UI.WebControls.DataGrid dgExistingPolls;
[green]// checking null[/green]
if (!(DBNull.Value.Equals(memberRecord["LastLogin"])))
base.LastLogin = Convert.ToDateTime(memberRecord["LastLogin"]);
[green]// getting a combo value[/green]
int points = Convert.ToInt32(((DropDownList)e.Item.FindControl("cboPoints")).SelectedItem.Value);