次のような条件に基づいて、ページの読み込み時にイベントのバブリング/伝播を防ぐことができるかどうかを知りたいです:
protected override void OnLoad(EventArgs e)
{
// If the user press F5 from the browser
if (IsRefresh)
{
// Here I want to stop propagation/bubbling the events like OnClick of a submit button but without using the button object (I want it generic)
}
else
{
base.OnLoad(e);
}
}
これは可能ですか?