コード例 #1
0
    protected void btnOK_Click(object sender, EventArgs e)
    {
        clsStaffData AStaff     = new clsStaffData();
        string       FirstName  = txtFirstName.Text;
        string       LastName   = txtLastName.Text;
        string       Department = txtDepartment.Text;
        string       StaffID    = txtStaffID.Text;
        string       JoinDate   = txtJoinDate.Text;
        string       Error      = "";

        Error = AStaff.Valid(FirstName, LastName, Department, StaffID, JoinDate);
        if (Error == "")
        {
            AStaff.FirstName  = FirstName;
            AStaff.LastName   = LastName;
            AStaff.Department = Department;
            AStaff.StaffID    = StaffID;
            AStaff.JoinDate   = Convert.ToDateTime(JoinDate);
            clsStaffDataCollection StaffList = new clsStaffDataCollection();
            StaffList.ThisStaff = AStaff;
            StaffList.Add();
            Response.Write("StaffList.aspx");
        }
        else
        {
            lblError.Text = Error;
        }
    }
コード例 #2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        //create a new instance of the class
        clsStaffData AStaff = new clsStaffData();

        AStaff = (clsStaffData)Session["AStaff"];
        Response.Write(AStaff.FirstName);
    }
コード例 #3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        //create a new instance of clStaffData
        clsStaffData AnFirstName = new clsStaffData();

        //get the data from the session object
        AnFirstName = (clsStaffData)Session["AnFirstName"];
        //display the staff data for this entity
        Response.Write(AnFirstName.FirstName);
    }
コード例 #4
0
    protected void btnFind_Click(object sender, EventArgs e)
    {
        clsStaffData AStaff = new clsStaffData();
        Int32        StaffID;
        Boolean      Found = false;

        StaffID = Convert.ToInt32(txtStaffID.Text);
        Found   = AStaff.Find(StaffID);
        if (Found == true)
        {
            txtStaffID.Text    = AStaff.StaffID;
            txtFirstName.Text  = AStaff.FirstName;
            txtLastName.Text   = AStaff.LastName;
            txtDepartment.Text = AStaff.Department;
            txtJoinDate.Text   = AStaff.JoinDate;
        }
    }