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

18 lines
334 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 patNew : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnCancelPat_OnClick(object sender, EventArgs e)
{
Response.Redirect("patient.aspx");
}
}
}