using System.Collections;     // Kod niezbdny dla obiektu Hashtable.

protected void Page_Load(object sender, EventArgs e)
{
   if (!IsPostBack)
   {
      string strTest;
      strTest = ((Hashtable)ConfigurationManager.
         GetSection("altDB"))["Test"].ToString();
      lblTest.Text = strTest;

      lblContent.Text = ((Hashtable)ConfigurationManager.
         GetSection("altDB"))["Content"].ToString();
   }
}
