/// Display Application details (location).
/// Method modified: Page_Load.
/// 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 ApplicationDetails : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox tbAddress;
protected System.Web.UI.WebControls.TextBox tbCity;
protected System.Web.UI.WebControls.TextBox tbState;
protected System.Web.UI.WebControls.TextBox tbZip;
protected System.Web.UI.WebControls.TextBox tbCountry;
protected System.Web.UI.WebControls.TextBox tbRegion;
protected System.Web.UI.WebControls.TextBox tbLatitude;
protected System.Web.UI.WebControls.Label lblStatus;
protected System.Web.UI.WebControls.HyperLink hlurl;
protected System.Web.UI.WebControls.HyperLink hlUrl;
protected System.Web.UI.WebControls.TextBox tbLongitude;
public ApplicationDetails()
{
Page.Init += new System.EventHandler(Page_Init);
}
///