Markup
<ext:Button ID="Button1" runat="server" Icon="ShapeSquare" Text="Submit" OnClick="GreetingBtn_Click" >
</ext:Button>
Codebehind
public void GreetingBtn_Click(Object sender, EventArgs e)
{
Response.Redirect("www.google.lk");
}
In this scenario, I would like to be able to execute the ASP.net event handler on the Ext.net button click. How to achieve this functionality?
From examples:
Markup
Code behind