diff --git a/.idea/config/applicationhost.config b/.idea/config/applicationhost.config index f5fa50f..15916dc 100644 --- a/.idea/config/applicationhost.config +++ b/.idea/config/applicationhost.config @@ -155,7 +155,7 @@ - + diff --git a/FWA_MAIN/bin/FWA_MAIN.dll b/FWA_MAIN/bin/FWA_MAIN.dll index 54adca1..c577a94 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.pdb b/FWA_MAIN/bin/FWA_MAIN.pdb index 23f316c..8d1482c 100644 Binary files a/FWA_MAIN/bin/FWA_MAIN.pdb and b/FWA_MAIN/bin/FWA_MAIN.pdb differ diff --git a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.AssemblyReference.cache index 187d440..406c024 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 d8b3066..4555ae6 100644 --- a/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.CoreCompileInputs.cache +++ b/FWA_MAIN/obj/Debug/FWA_MAIN.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -5b828ddd595982ac7c99d94544530dbfda605a4e26706582ffd171296255f6b4 +35e3f318d70032ecddcf1f126a0f5fadbfc716462983ce624410e76af3e3df7d diff --git a/FWA_MAIN/obj/Debug/FWA_MAIN.dll b/FWA_MAIN/obj/Debug/FWA_MAIN.dll index 54adca1..c577a94 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 23f316c..8d1482c 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/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.dll b/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.dll index 8049917..c577a94 100644 Binary files a/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.dll and b/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.dll differ diff --git a/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.pdb b/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.pdb index 435b83b..8d1482c 100644 Binary files a/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.pdb and b/FWA_MAIN/obj/Debug/Package/PackageTmp/bin/FWA_MAIN.pdb differ diff --git a/FWA_MAIN/physEdit.aspx.cs b/FWA_MAIN/physEdit.aspx.cs index 920d546..e2979f0 100644 --- a/FWA_MAIN/physEdit.aspx.cs +++ b/FWA_MAIN/physEdit.aspx.cs @@ -28,18 +28,18 @@ namespace FWA_MAIN var ds = new DataSet(); ds = PharmacyDataTier.PhysicianInfoSearch(physID); - txtPhysID.Text = ds.Tables[0].Rows[0]["Physician_id"].ToString(); - txtFNAME.Text = ds.Tables[0].Rows[0]["FirstName"].ToString(); - txtLNAME.Text = ds.Tables[0].Rows[0]["LastName"].ToString(); - txtMidInit.Text = ds.Tables[0].Rows[0]["MiddleIntials"].ToString(); - txtZip.Text = ds.Tables[0].Rows[0]["Zip"].ToString(); - txtCity.Text = ds.Tables[0].Rows[0]["City"].ToString(); - txtState.Text = ds.Tables[0].Rows[0]["UsState"].ToString(); - DateTime date = DateTime.Parse(ds.Tables[0].Rows[0]["DOB"].ToString()); - txtDOB.Text = date.ToString("d"); - txtPhone.Text = ds.Tables[0].Rows[0]["PhoneNumber"].ToString(); - txtGender.Text = ds.Tables[0].Rows[0]["Gender"].ToString(); - txtSpecialty.Text = ds.Tables[0].Rows[0]["Specialty"].ToString(); + txtPhysID.Text = ds.Tables[0].Rows[0]["Physician_id"].ToString().Trim(); + txtFNAME.Text = ds.Tables[0].Rows[0]["FirstName"].ToString().Trim(); + txtLNAME.Text = ds.Tables[0].Rows[0]["LastName"].ToString().Trim(); + txtMidInit.Text = ds.Tables[0].Rows[0]["MiddleIntials"].ToString().Trim(); + txtZip.Text = ds.Tables[0].Rows[0]["Zip"].ToString().Trim(); + txtCity.Text = ds.Tables[0].Rows[0]["City"].ToString().Trim(); + txtState.Text = ds.Tables[0].Rows[0]["UsState"].ToString().Trim(); + DateTime date = DateTime.Parse(ds.Tables[0].Rows[0]["DOB"].ToString().Trim()); + txtDOB.Text = date.ToString("d").Trim(); + txtPhone.Text = ds.Tables[0].Rows[0]["PhoneNumber"].ToString().Trim(); + txtGender.Text = ds.Tables[0].Rows[0]["Gender"].ToString().Trim(); + txtSpecialty.Text = ds.Tables[0].Rows[0]["Specialty"].ToString().Trim(); } diff --git a/FWA_MAIN/physician.aspx b/FWA_MAIN/physician.aspx index 047cf2d..23184c9 100644 --- a/FWA_MAIN/physician.aspx +++ b/FWA_MAIN/physician.aspx @@ -2,6 +2,18 @@ + + +

Physicians