/// <summary>
    /// name:         butAdd_Click
    /// description:  button click method that inities the FillGridView method   
    /// </summary>
    protected void butAdd_Click(object sender, EventArgs e)
    {
        //First add the record with only text-type stuff, no image filenames
        this.AddNewRecord();

        //Get POI_ID for newly added record
        DA_POI poiDAObject = new DA_POI();
        int newPOI_ID = poiDAObject.GetNewlyAddedPOI_ID();
        Trace.Warn("newPOI_ID = " + newPOI_ID);

        //Display newly added record info
        //Note:  will have a link to the page that allows images to be added.
        hypAddImagePage.NavigateUrl = "POI_Images.aspx?qrypoiID=" + newPOI_ID;
    }
    /// <summary>
    /// name:         butAdd_Click
    /// description:  button click method that inities the FillGridView method
    /// </summary>
    protected void butAdd_Click(object sender, EventArgs e)
    {
        //First add the record with only text-type stuff, no image filenames
        this.AddNewRecord();

        //Get POI_ID for newly added record
        DA_POI poiDAObject = new DA_POI();
        int    newPOI_ID   = poiDAObject.GetNewlyAddedPOI_ID();

        Trace.Warn("newPOI_ID = " + newPOI_ID);

        //Display newly added record info
        //Note:  will have a link to the page that allows images to be added.
        hypAddImagePage.NavigateUrl = "POI_Images.aspx?qrypoiID=" + newPOI_ID;
    }