Pre fill the asp textbox control (C#) : TextBox « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Asp Control » TextBox 
Pre fill the asp textbox control (C#)

<%@ Page Language="C#" Debug="true" %>
<script runat="server">

    void Page_Load()
    {
        if (Page.IsPostBack) {
            DateTime MyDate;
            MyDate = Convert.ToDateTime(txtInput.Text);
            lblOut.Text = Convert.ToString(MyDate);
        }
    }

</script>
<html>
<head>
<title>Creating Variables Example</title>
</head>
<body>
    <form runat="server">
    Please enter a date, such as 10/31/2006
    <asp:TextBox runat="server" ID="txtInput">10/31/2006</asp:TextBox><br/>
    <asp:Button runat="server" Text="Button"></asp:Button><br/>
    Date is: 
    <asp:Label runat="server" ID="lblOut"/><br/>
    </form>
</body>
</html>
           
       
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. HTML Button, Select and InputBox in code behind (C#)
17. asp: textbox on text changed event (C#)
18. Validate textbox value manually (C#)
19. Is asp:textbox empty (C#)
20. Get value from TextBox (C#)
w_ww___.__j___a_v___a___2_s__.__c_o_m | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.