diff --git a/.idea/config/applicationhost.config b/.idea/config/applicationhost.config index 15916dc..976a66d 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 45f31d6..65e8855 100644 --- a/FWA_MAIN/FWA_MAIN.csproj +++ b/FWA_MAIN/FWA_MAIN.csproj @@ -180,6 +180,20 @@ physician.aspx + + ASPXCodeBehind + preNew.aspx + + + preNew.aspx + + + ASPXCodeBehind + Prescription.aspx + + + Prescription.aspx + ASPXCodeBehind @@ -213,6 +227,8 @@ + + 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/bin/FWA_MAIN.dll b/FWA_MAIN/bin/FWA_MAIN.dll index 144fa3c..972cfaa 100644 Binary files a/FWA_MAIN/bin/FWA_MAIN.dll and b/FWA_MAIN/bin/FWA_MAIN.dll differ diff --git a/FWA_MAIN/bin/FWA_MAIN.dll.config b/FWA_MAIN/bin/FWA_MAIN.dll.config index 0bb3f02..b80eae9 100644 --- a/FWA_MAIN/bin/FWA_MAIN.dll.config +++ b/FWA_MAIN/bin/FWA_MAIN.dll.config @@ -14,7 +14,7 @@ - + diff --git a/FWA_MAIN/bin/FWA_MAIN.pdb b/FWA_MAIN/bin/FWA_MAIN.pdb index b8db672..4ff3a48 100644 Binary files a/FWA_MAIN/bin/FWA_MAIN.pdb and b/FWA_MAIN/bin/FWA_MAIN.pdb differ diff --git a/FWA_MAIN/main.aspx.cs b/FWA_MAIN/main.aspx.cs index 995544a..b2711bd 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/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache index 3bde82b..0b111af 100644 Binary files a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache and b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache differ diff --git a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.CoreCompileInputs.cache b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.CoreCompileInputs.cache index f56f353..6595962 100644 --- a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.CoreCompileInputs.cache +++ b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -a5116abbacc7a6ecc26eaf26c72d12adb7e0416a1b3d3cb4f7efcb9f903c1aaa +ab1bc8104cb8104dc2ecf430987dabcec481406328930e77a1b01d525b8d0746 diff --git a/FWA_MAIN/obj/Debug/FWA_MAIN.dll b/FWA_MAIN/obj/Debug/FWA_MAIN.dll index 144fa3c..972cfaa 100644 Binary files a/FWA_MAIN/obj/Debug/FWA_MAIN.dll and b/FWA_MAIN/obj/Debug/FWA_MAIN.dll differ diff --git a/FWA_MAIN/obj/Debug/FWA_MAIN.pdb b/FWA_MAIN/obj/Debug/FWA_MAIN.pdb index b8db672..4ff3a48 100644 Binary files a/FWA_MAIN/obj/Debug/FWA_MAIN.pdb and b/FWA_MAIN/obj/Debug/FWA_MAIN.pdb differ 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)); + } + } + } +}