17 lines
398 B
C#
17 lines
398 B
C#
using System;
|
|
|
|
namespace MoonProTablet
|
|
{
|
|
public partial class Dichiarazioni : BasePage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
cmp_dichiarInsert.eh_newVal += cmp_dichiarInsert_eh_newVal;
|
|
}
|
|
|
|
private void cmp_dichiarInsert_eh_newVal(object sender, EventArgs e)
|
|
{
|
|
cmp_dichiarList.doUpdate();
|
|
}
|
|
}
|
|
} |