corrected connection string to connect to FinalProjectOfficialPharmacy instead of College2

This commit is contained in:
EggMan20339 2024-03-28 07:48:01 -04:00
parent dda2a32318
commit 751b9cb1f9
9 changed files with 22 additions and 4 deletions

View File

@ -14,7 +14,7 @@
</defaultDocument>
</system.webServer>
<connectionStrings>
<add name="ConnString" connectionString="Server=sql.eggtech.net;Database=College2;User Id=admin;Password=delirium-purveyor-overall-backboned-approval-amino;" providerName="System.Data.SqlClient"/>
<add name="ConnString" connectionString="Server=sql.eggtech.net;Database=FinalProjectOfficialPharmacy;User Id=admin;Password=delirium-purveyor-overall-backboned-approval-amino;" providerName="System.Data.SqlClient"/>
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0"/>

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
eab5c64490f1516c4c7800d3645306c9150717193916dbcf89f9f4d324c5b102
a5116abbacc7a6ecc26eaf26c72d12adb7e0416a1b3d3cb4f7efcb9f903c1aaa

Binary file not shown.

Binary file not shown.

View File

@ -3,7 +3,6 @@
<asp:Content runat="server" ContentPlaceHolderID="cph1">
<link type="text/css" href="main.css"/>
//Test
<h1 style="text-align: center; font-size: 44px">
Patients
</h1>
@ -38,7 +37,7 @@
<br/>
</div>
<br/>
<asp:Button runat="server" ID="btnPatSearch" Text="Search" CssClass="btnPatSearch"/>
<asp:Button runat="server" ID="btnPatSearch" Text="Search" CssClass="btnPatSearch" OnClick="btnPatSearch_OnClick"/>
</div>

View File

@ -16,5 +16,10 @@ namespace FWA_MAIN
Response.Redirect("patNew.aspx");
}
protected void btnPatSearch_OnClick(object sender, EventArgs e)
{
}
}
}

View File

@ -58,5 +58,19 @@ namespace FWA_MAIN
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.GridView gvPatient;
/// <summary>
/// Master property.
/// </summary>
/// <remarks>
/// Auto-generated property.
/// </remarks>
public new FWA_MAIN.main Master
{
get
{
return ((FWA_MAIN.main)(base.Master));
}
}
}
}