To Examples
ClickCounter4 Example, source code file Default.aspx
<%@ Page Language="C#" %> <%-- ClickCounter3 Example --%> <%-- Count the number of times that the Click Me button --%> <%-- is clicked. --%>
ClickCounter3 Example
ClickCounter3 Example
ClickCounter4 Example, source code file Default.aspx.cs
using System; ///
/// ClickCounter4 Example /// Count the number of times that the Enter key on the /// keyboard is pressed. Upload DLL file to server. ///
namespace ClickCounter4 { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void btnClickMe_Click(object sender, EventArgs e) { int n = int.Parse(txtNumClicks.Text); n++; txtNumClicks.Text = n.ToString(); } } }
ClickCounter4 Example, source code file Default.aspx.designer.cs
//------------------------------------------------------------------------------ //
// This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. //
//------------------------------------------------------------------------------ namespace ClickCounter4 { public partial class _Default { ///
/// form1 control. ///
///
/// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. ///
protected global::System.Web.UI.HtmlControls.HtmlForm form1; ///
/// txtNumClicks control. ///
///
/// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. ///
protected global::System.Web.UI.WebControls.TextBox txtNumClicks; ///
/// btnClickMe control. ///
///
/// Auto-generated field. /// To modify move field declaration from designer file to code-behind file. ///
protected global::System.Web.UI.WebControls.Button btnClickMe; } }