HTML Button, Select and InputBox in code behind (C#) : TextBox « Asp Control « ASP.Net






HTML Button, Select and InputBox in code behind (C#)

<%@ Page Language="C#" 
         Inherits="Page2"
         Src="Page2.cs" AutoEventWireUp="false" %>

<html>

<body>
  <form runat=server>
    <h3>Enter name: 
        <input type=text id=_name runat=server/></h3>
    <h3>Personality: 
        <select id=_personality runat=server /></h3>
   <input type=button id=_enterButton 
             value="Enter" runat=server/>
    <p runat=server id=_messageParagraph />
  </form>
</body>
</html>


<%--
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;

public class Page2 : Page
{
  protected HtmlSelect         _personality;
  protected HtmlInputText      _name;
  protected HtmlInputButton    _enterButton;
  protected HtmlGenericControl _messageParagraph;

  override protected void OnInit(EventArgs e)
  {
  // Wire up handler to ServerClick event of button
  _enterButton.ServerClick += new EventHandler(OnEnter);
  }

  override protected void OnLoad(EventArgs e)
  {
  // On initial access, populate select with items
  if (!IsPostBack)
  {
    _personality.Items.Add(new ListItem("extraverted"));
    _personality.Items.Add(new ListItem("introverted"));
    _personality.Items.Add(new ListItem("in-between"));
  }
  }

  protected void OnEnter(object src, EventArgs e)
  {
  // When the user presses enter, print a message
  string msg = string.Format("Hi {0}, you selected {1}",
                _name.Value, _personality.Value);
  _messageParagraph.InnerText = msg;
  }
}



--%>
           
       








Related examples in the same category

1.asp:TextBox: format (VB.net)
2.asp:TextBox: AccessKey (VB.net)
3.asp:TextBox: BorderStyle (VB.net)
4.Single Line asp:TextBox (VB.net)
5.Multiline asp:TextBox (VB.net)
6.MaxLength for asp:textbox (VB.net)
7.TabIndex for asp:textbox (VB.net)
8.asp:textbox: back ground color (VB.net)
9.asp:textbox: wrap (VB.net)
10.BackColor, ForeColor, BorderColor, AccessKey, Columns for asp:textbox (VB.net)
11.Convert value from asp:TextBox to upper case (VB.net)
12.Control asp:TextBox visibility (VB.net)
13.Get Text Box input and check if it is an Odd Number (VB.net)
14.On text changed in asp:TextBox (VB.net)
15.Watch TextBox, CheckBox and radiobutton auto post back action (C#)
16.asp: textbox on text changed event (C#)
17.Validate textbox value manually (C#)
18.Is asp:textbox empty (C#)
19.Get value from TextBox (C#)
20.Pre fill the asp textbox control (C#)
21.TextMode: SingleLine, Password and MultiLine
22.Set TextBox focus
23.Triggering an event when a TextBox change occurs (VB)
24.Triggering an event when a TextBox change occurs (C#)
25.Set AutoCompleteType
26.Set MaxLength, Columns
27.Rows, TextMode, Wrap
28.TextMode=Password
29.Create URL from textbox input