0

次のような条件に基づいて、ページの読み込み時にイベントのバブリング/伝播を防ぐことができるかどうかを知りたいです:

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);
    }
}

これは可能ですか?

4

5 に答える 5