ImageButton.ImageButton Constructor
.NET Framework 3.0
Initializes a new instance of the ImageButton class.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following example demonstrates how to create and initialize a new instance of the ImageButton class.
void Page_Load(Object sender, EventArgs e)
{
ImageButton img_button = new ImageButton();
} //Page_Load
function Page_Load(sender : Object, e : EventArgs){ var img_button : ImageButton = new ImageButton() }
Community Additions
ADD
Show: