/// Register form.
/// Methods created or modified:
/// - Page_Load
/// - OnClick
/// Copyright (c) 2002 Alexis Grandemange
/// Mail: alexis.grandemange@pagebox.net
/// This program is free software; you can redistribute it and/or
/// modify it under the terms of the GNU Lesser General Public
/// License as published by the Free Software Foundation; version
/// 2.1 of the License.
/// This library is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU Lesser General Public License for more details.
/// A copy of the GNU Lesser General Public License lesser.txt should be
/// included in the distribution.
///
public class Register : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox tbName;
protected System.Web.UI.WebControls.TextBox tbMail;
protected System.Web.UI.WebControls.Button btnRegister;
protected System.Web.UI.WebControls.TextBox tbAddress;
protected System.Web.UI.WebControls.TextBox tbCity;
protected System.Web.UI.WebControls.TextBox tbZip;
protected System.Web.UI.WebControls.TextBox tbRegion;
protected System.Web.UI.WebControls.TextBox tbLatitude;
protected System.Web.UI.WebControls.TextBox tbLongitude;
protected System.Web.UI.WebControls.DropDownList ddState;
protected System.Web.UI.WebControls.DropDownList ddCountry;
protected System.Web.UI.WebControls.Label lblStatus;
public Register()
{
Page.Init += new System.EventHandler(Page_Init);
}
///