2024-03-20 14:09:42 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Web.UI;
|
2024-03-20 15:33:54 -04:00
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
2024-03-20 14:09:42 -04:00
|
|
|
|
|
|
|
|
|
namespace CH78
|
|
|
|
|
{
|
|
|
|
|
public partial class Display : Page
|
|
|
|
|
{
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-03-20 15:33:54 -04:00
|
|
|
|
string studentID = "";
|
|
|
|
|
string gender;
|
2024-03-20 14:09:42 -04:00
|
|
|
|
|
2024-03-20 15:33:54 -04:00
|
|
|
|
if (!IsPostBack)
|
|
|
|
|
{
|
|
|
|
|
// retrieve the querystring
|
|
|
|
|
if (String.IsNullOrEmpty(Request.QueryString["ID"]))
|
|
|
|
|
{
|
|
|
|
|
// not the right entry point
|
|
|
|
|
Response.Redirect("Home.aspx");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (Request.QueryString["ID"].Trim().ToUpper() == "NEW")
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (Request.QueryString["type"].Trim().ToUpper() == "VIEW") // display
|
|
|
|
|
{
|
|
|
|
|
GetStudent(Request.QueryString["ID"].Trim(), Request.QueryString["type"].Trim().ToUpper());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (Request.QueryString["type"].Trim().ToUpper() == "EDIT") // edit
|
|
|
|
|
{
|
|
|
|
|
GetStudent(Request.QueryString["ID"].Trim(), Request.QueryString["type"].Trim().ToUpper());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else // anything else
|
|
|
|
|
{
|
|
|
|
|
Response.Redirect("Home.aspx");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void GetStudent(string studentid, string type)
|
|
|
|
|
{
|
|
|
|
|
// the right record
|
2024-03-21 14:09:34 -04:00
|
|
|
|
|
2024-03-20 15:33:54 -04:00
|
|
|
|
DataSet ds = new DataSet();
|
|
|
|
|
string gender;
|
|
|
|
|
ds = StudentDataTier.SearchStudents("","",studentid);
|
|
|
|
|
if (ds.Tables[0].Rows.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
txtStuID.Text = ds.Tables[0].Rows[0]["student_id"].ToString();
|
|
|
|
|
txtFNAME.Text = ds.Tables[0].Rows[0]["fname"].ToString();
|
|
|
|
|
txtLNAME.Text = ds.Tables[0].Rows[0]["lname"].ToString();
|
2024-03-21 19:26:58 -04:00
|
|
|
|
txtMidInit.Text = ds.Tables[0].Rows[0]["midinit"].ToString();
|
|
|
|
|
txtDOB.Text = ds.Tables[0].Rows[0]["DOB"].ToString();
|
|
|
|
|
txtActBal.Text = ds.Tables[0].Rows[0]["ACCT_BAL"].ToString();
|
|
|
|
|
txtMajor.Text = ds.Tables[0].Rows[0]["MAJOR"].ToString();
|
|
|
|
|
txtCellPhone.Text = ds.Tables[0].Rows[0]["CELL_PHONE"].ToString();
|
|
|
|
|
txtAdr1.Text = ds.Tables[0].Rows[0]["ADDRESS_ONE"].ToString();
|
|
|
|
|
txtCity.Text = ds.Tables[0].Rows[0]["CITY"].ToString();
|
|
|
|
|
txtZip.Text = ds.Tables[0].Rows[0]["ZIP"].ToString();
|
|
|
|
|
txtCreds.Text = ds.Tables[0].Rows[0]["TOTALCREDITS"].ToString();
|
2024-03-20 15:33:54 -04:00
|
|
|
|
// TODO complete other fields
|
|
|
|
|
|
2024-03-21 14:09:34 -04:00
|
|
|
|
gender = ds.Tables[0].Rows[0]["GENDER"].ToString().Trim();
|
|
|
|
|
// if (gender.ToUpper() == "F")
|
|
|
|
|
// {
|
|
|
|
|
// txtGender.SelectedItem.Text = "FEMALE";
|
|
|
|
|
// }
|
|
|
|
|
// else
|
|
|
|
|
// {
|
|
|
|
|
// txtGender.SelectedItem.Text = "MALE";
|
|
|
|
|
// }
|
2024-03-20 15:33:54 -04:00
|
|
|
|
|
|
|
|
|
txtGender.Enabled = false;
|
|
|
|
|
//mysalary = Decimal.Parse(ds.Tables[0].Rows[0]["salary"])
|
|
|
|
|
//txtSalary.Text = mysalary.ToString("C")
|
|
|
|
|
//txtSalary.Enabled = False
|
|
|
|
|
|
|
|
|
|
txtState.DataSource = StudentDataTier.GetStates();
|
2024-03-21 14:09:34 -04:00
|
|
|
|
txtState.DataTextField = "Name";
|
|
|
|
|
txtState.DataValueField = "StateID";
|
|
|
|
|
txtState.SelectedValue = "1";
|
2024-03-20 15:33:54 -04:00
|
|
|
|
txtState.DataBind();
|
|
|
|
|
|
2024-03-21 19:26:58 -04:00
|
|
|
|
txtGender.DataSource = StudentDataTier.GetGenders();
|
|
|
|
|
txtGender.DataTextField = "CommonName";
|
|
|
|
|
txtGender.DataValueField = "Gender_ID";
|
|
|
|
|
txtGender.SelectedValue = "0";
|
|
|
|
|
txtGender.DataBind();
|
|
|
|
|
|
2024-03-21 14:09:34 -04:00
|
|
|
|
// txtState.SelectedValue = ds.Tables[0].Rows[0]["state"].ToString();
|
2024-03-20 15:33:54 -04:00
|
|
|
|
if (type.ToUpper() == "VIEW")
|
|
|
|
|
{
|
|
|
|
|
txtStuID.Enabled = false;
|
|
|
|
|
txtFNAME.Enabled = false;
|
|
|
|
|
txtLNAME.Enabled = false;
|
|
|
|
|
btnGoStu.Visible = false;
|
|
|
|
|
btnCancelStu.Visible = false;
|
|
|
|
|
}
|
|
|
|
|
else if (type.ToUpper() == "EDIT")
|
|
|
|
|
{
|
|
|
|
|
txtStuID.Enabled = false;
|
|
|
|
|
btnGoStu.Visible = true;
|
|
|
|
|
btnCancelStu.Visible = true;
|
|
|
|
|
btnGoStu.Text = "UPDATE";
|
|
|
|
|
btnCancelStu.Text = "REFRESH";
|
|
|
|
|
btnGoStu.ForeColor = Color.Red;
|
|
|
|
|
btnCancelStu.ForeColor = Color.Blue;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-20 14:09:42 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void btnCancelStu_OnClick(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void btnGoStu_OnClick(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|