-
Notifications
You must be signed in to change notification settings - Fork 2
/
Blood.aspx.cs
74 lines (70 loc) · 2.27 KB
/
Blood.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Serving_Hands
{
public partial class Blood : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GetCategoriesId();
GetOrganizationName();
}
}
Models.ClearTextBox tx = new Models.ClearTextBox();
Models.Blood bl = new Models.Blood();
private void GetOrganizationName()
{
DropDownList2.Items.Clear();
foreach (var item in bl.GetOrganization())
{
DropDownList2.Items.Add(Convert.ToString(item.organization));
}
}
private void GetCategoriesId()
{
DropDownList3.Items.Clear();
foreach (var item in bl.GetIds())
{
DropDownList3.Items.Add(Convert.ToString(item.bid));
}
}
protected void Button1_Click(object sender, EventArgs e)
{
bl.BloodGroup = DropDownList1.Text;
bl.organization = DropDownList2.Text;
bl.date = TextBox1.Text;
bl.Add(bl);
tx.ClearTextbox(TextBox1);
}
protected void Button2_Click(object sender, EventArgs e)
{
bl.bid = Convert.ToInt32(DropDownList3.Text);
bl.Delete(bl);
tx.ClearTextbox(TextBox1);
}
protected void Button3_Click(object sender, EventArgs e)
{
bl.bid = Convert.ToInt32(DropDownList3.Text);
bl.BloodGroup = DropDownList1.Text;
bl.organization = DropDownList2.Text;
bl.date = TextBox1.Text;
bl.Update(bl);
tx.ClearTextbox(TextBox1);
}
protected void Button4_Click(object sender, EventArgs e)
{
Models.Blood b = new Models.Blood();
b.bid = Convert.ToInt32(DropDownList3.Text);
b.Search(b);
DropDownList1.Text = b.BloodGroup;
DropDownList2.Text = b.organization;
TextBox1.Text = b.date;
}
}
}