protected void uiGridViewLinks_RowCommand(object sender, GridViewCommandEventArgs e)
 {
     if (e.CommandName == "EditLink")
     {
         ImportantLinks objData = new ImportantLinks();
         objData.LoadByPrimaryKey(Convert.ToInt32(e.CommandArgument.ToString()));
         CurrentLink = objData;
         uiTextBoxArTitle.Text = objData.LinkName;
         uiTextBoxURL.Text = objData.LinkURL;
         uiPanelViewAllPages.Visible = false;
         uiPanelEdit.Visible = true;
     }
     else if (e.CommandName == "DeleteLink")
     {
         ImportantLinks objData = new ImportantLinks();
         objData.LoadByPrimaryKey(Convert.ToInt32(e.CommandArgument.ToString()));
         objData.MarkAsDeleted();
         objData.Save();
         BindData();
     }
 }