protected void orgDemo_EntityMove(object sender, WebOrgChart.MoveEventArgs e)
{
DataTable dt = ActiveOrgChart_LocalHelper.Data;
DataRow[] dr = dt.Select("PersonID=" + e.SourceIdentity.ToString());
if (dr.Length > 0) dr[0]["ParentPersonID"] = e.DestinationIdentity;
BindOrgChart();
}