/// <summary>
/// Event handler for the Load event of the page
/// </summary>
private void Page_Load ( object sender, System.EventArgs e )
{
// Local Variables
AppConfigData acd = null;
// Begin
acd = new AppConfigData();
acd.Read();
this.lblConnectionString.Text = acd.DatabaseConnectionString;
this.lblCultureInfo.Text = acd.CultureInfo;
this.lblImagesPath.Text = acd.ImagesFilePath;
}// end Page_Load