public void BindPath()
    {
        try
        {
            string FName = Path.GetFileName(Request.Path);

            if (FName != null)
            {
                Lbl_Path.Text = LG.GetPath(FName);
            }
        }
        catch (Exception Ex)
        {
            ExceptionLogging.SendErrorToText(Ex);
        }
    }