CNSA-216-Personal/CH78/Display.aspx.cs

23 lines
471 B
C#
Raw Normal View History

2024-03-20 11:09:42 -07:00
using System;
using System.Web.UI;
namespace CH78
{
public partial class Display : Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnCancelStu_OnClick(object sender, EventArgs e)
{
throw new NotImplementedException();
}
protected void btnGoStu_OnClick(object sender, EventArgs e)
{
throw new NotImplementedException();
}
}
}