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

26 lines
518 B
C#
Raw Normal View History

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");
}
}
}