-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathBill.aspx.cs
More file actions
76 lines (68 loc) · 2.26 KB
/
Bill.aspx.cs
File metadata and controls
76 lines (68 loc) · 2.26 KB
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
75
76
using System;
using System.Data;
using System.Web.UI;
using DBProject.DAL;
namespace doctor
{
public partial class bill : Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
try
{
int did = (int)Session["idoriginal"];
myDAL objmyDAL = new myDAL();
DataTable dt = new DataTable();
int found = objmyDAL.generate_bill_DAL(did, ref dt);
if (found != 1 || dt.Rows.Count == 0)
{
Label1.Text = "Error generating bill";
Response.Write("<script>alert('There was some error generating the bill.');</script>");
}
else
{
Label1.Text = dt.Rows[0][0].ToString();
}
}
catch (Exception ex)
{
Response.Write($"<script>alert('Error: {ex.Message}');</script>");
}
}
}
public void bill_paid(object sender, EventArgs e)
{
try
{
int did = (int)Session["idoriginal"];
int appoint = (int)Session["appointid"];
myDAL objmyDAL = new myDAL();
objmyDAL.paid_bill_DAL(did, appoint);
Response.BufferOutput = false;
Response.Redirect("patienthistory.aspx");
}
catch (Exception ex)
{
Response.Write($"<script>alert('Error: {ex.Message}');</script>");
}
}
public void bill_Unpaid(object sender, EventArgs e)
{
try
{
int did = (int)Session["idoriginal"];
int appoint = (int)Session["appointid"];
myDAL objmyDAL = new myDAL();
objmyDAL.Unpaid_bill_DAL(did, appoint);
Response.BufferOutput = false;
Response.Redirect("patienthistory.aspx");
}
catch (Exception ex)
{
Response.Write($"<script>alert('Error: {ex.Message}');</script>");
}
}
}
}