using System;

namespace ExWeb
{
    public partial class Mod_Search : Mod
    {
        public static string Help_Description =
            "Suche im Web unter Benutzung der Google-Suchmaschine";

        public static string[][] Help_Attributes = new string[][]
        {
            // Attribut, Wert, DefaultWert, Optional, Hilfe
        };
        protected void Page_LoadComplete(object sender, EventArgs e)
        {
            SetPanelLayout(this.Controls);
        }
        protected new void Page_Load(object sender, EventArgs e)
        {
            Page.LoadComplete += new EventHandler(Page_LoadComplete);
        }
    }
}