Development ASP.Net Tutorial

To use it, you add special data binding expressions into your .aspx files. 
These expressions have the following format:
<%# expression_goes_here %>
File: Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="SimpleDataBinding" %>



    Simple Data Binding


    
    

      
      There were <%# myValue %> transactions today.
      I see that you are using <%# Request.Browser.Browser %>.
      
    

    


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class SimpleDataBinding : System.Web.UI.Page
{
    protected int myValue;
    protected void Page_Load(object sender, EventArgs e)
    {
        myValue = 10;
        // convert all the data binding expressions on the page.
        this.DataBind();
    }
}