ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









IPostBackEventHandler

System.Web.UI (system.web.dll)interface

This interface allows a control to raise events in response to a
postback operation. This interface is commonly used for button
controls like System.Web.UI.WebControls.Button and
System.Web.UI.WebControls.ImageButton. It can be
used instead of, or in conjunction with, the
IPostBackDataHandler interface. The distinction is
that the RaisePostBackEvent( ) method is always
called when a postback event occurs. The
IPostBackDataHandler.RaisePostDataChangedEvent( )
method is called only if the control's state has
changed, and is thus more suited for a
"Change" event than a
"Click" event.

public interface 

IPostBackEventHandler {
// Public Instance Methods
public void

RaisePostBackEvent (string

eventArgument );
}



Implemented By


Multiple types

Passed To


Page.{RaisePostBackEvent( ),
RegisterRequiresRaiseEvent( )}


/ 873