mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-07 03:16:41 +00:00
27 lines
462 B
Markdown
27 lines
462 B
Markdown
|
# Page.aspx.cs
|
||
|
|
||
|
```cs
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using System.Web.UI;
|
||
|
using System.Web.UI.WebControls;
|
||
|
|
||
|
namespace Project
|
||
|
{
|
||
|
public partial class Default : System.Web.UI.Page
|
||
|
{
|
||
|
protected void Page_Load(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
protected void Control_Event(object sender, EventAtgs e)
|
||
|
{
|
||
|
// actions on event trigger
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
```
|