26 lines
518 B
C#
26 lines
518 B
C#
|
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");
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|