using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Text;
using System.IO;
namespace PCMS
{
///
/// Summary description for WebForm1.
///
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.HyperLink HyperLink1;
protected System.Web.UI.WebControls.HyperLink HyperLink2;
protected System.Web.UI.WebControls.LinkButton LinkButton1;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.HyperLink HyperLink4;
protected System.Web.UI.WebControls.Label Label2;
protected System.Web.UI.WebControls.HyperLink HyperLink3;
private void Page_Load(object sender, System.EventArgs e)
{
StringBuilder pcmsNotes=new StringBuilder();
pcmsNotes.Append("PCMS or Personal Contact Management System is easy to use address ");
pcmsNotes.Append("book.It brings home all the features of a conventional address book.");
pcmsNotes.Append("Other than being extremly easy to use, the most important advantage ");
pcmsNotes.Append("of the PCMS is that its platform independed and fact that it can be ");
pcmsNotes.Append("accessed from remote location using any web browser.");
Label2.Text=pcmsNotes.ToString();
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}