ASP.Net/Data Binding/DataBind Method — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 11:52, 26 мая 2010

DataBind() function

<%@ Page Language="vb" %>
<html>
   <head>
      <title>DataBind method example</title>
      <script runat="server">
         Dim Color As System.Drawing.Color = System.Drawing.Color.Red
         Sub Page_Load()
            Message.Text = "ForeColor is: " & Color.Name
            DataBind()
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" ForeColor="<%# Color %>" runat="server"/>
</body>
</html>