diff --git a/.idea/config/applicationhost.config b/.idea/config/applicationhost.config index 15916dc..f5fa50f 100644 --- a/.idea/config/applicationhost.config +++ b/.idea/config/applicationhost.config @@ -155,7 +155,7 @@ - + diff --git a/FWA_MAIN/FWA_MAIN.csproj b/FWA_MAIN/FWA_MAIN.csproj index 9b94b10..8d4c557 100644 --- a/FWA_MAIN/FWA_MAIN.csproj +++ b/FWA_MAIN/FWA_MAIN.csproj @@ -181,6 +181,20 @@ physician.aspx + + ASPXCodeBehind + preNew.aspx + + + preNew.aspx + + + ASPXCodeBehind + Prescription.aspx + + + Prescription.aspx + ASPXCodeBehind diff --git a/FWA_MAIN/Prescription.aspx b/FWA_MAIN/Prescription.aspx new file mode 100644 index 0000000..437c6db --- /dev/null +++ b/FWA_MAIN/Prescription.aspx @@ -0,0 +1,161 @@ +<%@ Page Title="Prescription" Language="C#" MasterPageFile="main.master" CodeBehind="Prescription.aspx.cs" Inherits="FWA_MAIN.Prescription" %> + + + + +

+ Prescriptions +

+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+ + + +
+
+ + +
+ + + + + + + + + +
\ No newline at end of file diff --git a/FWA_MAIN/Prescription.aspx.cs b/FWA_MAIN/Prescription.aspx.cs new file mode 100644 index 0000000..6e946a7 --- /dev/null +++ b/FWA_MAIN/Prescription.aspx.cs @@ -0,0 +1,26 @@ +using System; +using System.Web.UI; + +namespace FWA_MAIN +{ + public partial class Prescription : Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void btnPreSearch_OnClick(object sender, EventArgs e) + { + throw new NotImplementedException(); + } + + + protected void btnNew_OnClick(object sender, EventArgs e) + { + + Response.Redirect("preNew.aspx"); + + } + } +} \ No newline at end of file diff --git a/FWA_MAIN/Prescription.aspx.designer.cs b/FWA_MAIN/Prescription.aspx.designer.cs new file mode 100644 index 0000000..bb17373 --- /dev/null +++ b/FWA_MAIN/Prescription.aspx.designer.cs @@ -0,0 +1,112 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FWA_MAIN +{ + + + public partial class Prescription + { + + /// + /// txtRxNum control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtRxNum; + + /// + /// txtPhysID control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPhysID; + + /// + /// txtPatID control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPatID; + + /// + /// txtNumRefill control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtNumRefill; + + /// + /// txtPastRefill control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPastRefill; + + /// + /// txtStart control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtStart; + + /// + /// txtPreEnd control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPreEnd; + + /// + /// btnPatSearch control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btnPatSearch; + + /// + /// gvPatient control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.GridView gvPatient; + + /// + /// Master property. + /// + /// + /// Auto-generated property. + /// + public new FWA_MAIN.main Master + { + get + { + return ((FWA_MAIN.main)(base.Master)); + } + } + } +} diff --git a/FWA_MAIN/main.aspx.cs b/FWA_MAIN/main.aspx.cs index 7920655..7d7a651 100644 --- a/FWA_MAIN/main.aspx.cs +++ b/FWA_MAIN/main.aspx.cs @@ -56,7 +56,7 @@ namespace FWA_MAIN protected void btnPrescription_OnClick(object sender, EventArgs e) { - throw new NotImplementedException(); + Response.Redirect("Prescription.aspx"); } } } \ No newline at end of file diff --git a/FWA_MAIN/physNew.aspx b/FWA_MAIN/physNew.aspx new file mode 100644 index 0000000..43c6287 --- /dev/null +++ b/FWA_MAIN/physNew.aspx @@ -0,0 +1,2 @@ +<%@ Page Title="Title" Language="C#" MasterPageFile="MasterPage" CodeBehind="physNew.aspx.cs" Inherits="FWA_MAIN.physNew" %> + diff --git a/FWA_MAIN/physNew.aspx.cs b/FWA_MAIN/physNew.aspx.cs new file mode 100644 index 0000000..bb6bf73 --- /dev/null +++ b/FWA_MAIN/physNew.aspx.cs @@ -0,0 +1,13 @@ +using System; +using System.Web.UI; + +namespace FWA_MAIN +{ + public partial class physNew : Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/FWA_MAIN/physNew.aspx.designer.cs b/FWA_MAIN/physNew.aspx.designer.cs new file mode 100644 index 0000000..04106b8 --- /dev/null +++ b/FWA_MAIN/physNew.aspx.designer.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FWA_MAIN +{ + + + public partial class physNew + { + } +} diff --git a/FWA_MAIN/preNew.aspx b/FWA_MAIN/preNew.aspx new file mode 100644 index 0000000..c989a64 --- /dev/null +++ b/FWA_MAIN/preNew.aspx @@ -0,0 +1,42 @@ +<%@ Page Title="New Prescription" Language="C#" MasterPageFile="main.master" CodeBehind="preNew.aspx.cs" Inherits="FWA_MAIN.preNew" %> + + + + + +

New Prescription

+
+
+
+

+

+

+

+

+

+

+

+ +
+
+

+

+

+

+

+

+

+

+ +
+
+ + +
+ +
+
+
+
+
+
\ No newline at end of file diff --git a/FWA_MAIN/preNew.aspx.cs b/FWA_MAIN/preNew.aspx.cs new file mode 100644 index 0000000..3ebd8c1 --- /dev/null +++ b/FWA_MAIN/preNew.aspx.cs @@ -0,0 +1,18 @@ +using System; +using System.Web.UI; + +namespace FWA_MAIN +{ + public partial class preNew : Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void btnCancelPre_OnClick(object sender, EventArgs e) + { + throw new NotImplementedException(); + } + } +} \ No newline at end of file diff --git a/FWA_MAIN/preNew.aspx.designer.cs b/FWA_MAIN/preNew.aspx.designer.cs new file mode 100644 index 0000000..7678379 --- /dev/null +++ b/FWA_MAIN/preNew.aspx.designer.cs @@ -0,0 +1,121 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FWA_MAIN +{ + + + public partial class preNew + { + + /// + /// txtRxNum control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtRxNum; + + /// + /// txtNumRefill control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtNumRefill; + + /// + /// txtPastRefill control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPastRefill; + + /// + /// txtPhysID control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPhysID; + + /// + /// txtMedID control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtMedID; + + /// + /// txtPatID control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPatID; + + /// + /// txtPreStart control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPreStart; + + /// + /// txtPreEnd control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.TextBox txtPreEnd; + + /// + /// btnSavePat control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btnSavePat; + + /// + /// btnCancelPat control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Button btnCancelPat; + + /// + /// Master property. + /// + /// + /// Auto-generated property. + /// + public new FWA_MAIN.main Master + { + get + { + return ((FWA_MAIN.main)(base.Master)); + } + } + } +}