CNSA-216-FP/FWA_MAIN/patient.aspx.cs

25 lines
460 B
C#
Raw Normal View History

2024-03-20 10:04:27 -07:00
using System;
using System.Web.UI;
namespace FWA_MAIN
{
public partial class patient : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnNew_OnClick(object sender, EventArgs e)
{
Response.Redirect("patNew.aspx");
}
protected void btnPatSearch_OnClick(object sender, EventArgs e)
{
}
2024-03-20 10:04:27 -07:00
}
}