DataList 事件大全

第一个示例:

<%@ Page Language="C#" AutoEventWireup="True" %> <%@ Import Namespace="System.Data" %>

DataList Edit Example

Click Edit to edit the values of the item.

Items Item: <%# DataBinder.Eval(Container.DataItem, "Item") %>
Quantity: <%# DataBinder.Eval(Container.DataItem, "Qty") %>
Price: <%# DataBinder.Eval(Container.DataItem, "Price", "{0:c}") %>
Item:
Quantity:
Price:

 

第二个示例:

<%@ Page Language="C#" AutoEventWireup="True" %> <%@ Import Namespace="System.Data" %>

DataList Edit Example

Click Edit to edit the values of the item.

Items Item: <%# DataBinder.Eval(Container.DataItem, "Item") %>
Quantity: <%# DataBinder.Eval(Container.DataItem, "Qty") %>
Price: <%# DataBinder.Eval(Container.DataItem, "Price", "{0:c}") %>
Item:
Quantity:
Price:

你可能感兴趣的:(C#编程)