日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十

系統(tǒng) 2372 0

Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化


介紹


我們可以通過控制HeaderStyle, RowStyle, AlternatingRowStyle和其他一些屬性來改變GridView, DetailsView, 和 FormView的樣式,比如cssClass, Font, BorderWidth, BorderStyle, Bar, Width, Height等

一般,自定義格式化與我們所要顯示的數(shù)據(jù)的值有關(guān)系。例如, 為了吸引用戶注意那些庫存為空的產(chǎn)品,我們可以將庫存對(duì)應(yīng)的字段UnitsInStock 和UnitsOnOrder為0的數(shù)據(jù)背景色設(shè)為黃色. 為了高亮化那些貴的產(chǎn)品,則將UnitsInStock 高于$75.00的數(shù)據(jù)字體設(shè)置為粗體

GridView, DetailsView, FormView的格式自定義可以有多種方法, 在本文中我們將用DataBound 和 RowDataBound兩種事件來完成, 在下一篇里我們將嘗試用alternative的方式 在GridView控件中使用TemplateField

使用DetailsView 控件的 DataBound 事件當(dāng)綁定數(shù)據(jù)到DetailsView控件, 不管是從數(shù)據(jù)控件或編碼填充數(shù)據(jù)到DataSource屬性并調(diào)用其DataBind()方法。以下幾種事件將觸發(fā)

1.DataBinding事件觸發(fā)


2.數(shù)據(jù)綁定到數(shù)據(jù)綁定控件

3.DataBound事件觸發(fā)

一般在1,2,3之后數(shù)據(jù)將會(huì)通過事件立即填充數(shù)據(jù)控件,我們還可以自定義事件處理來確定數(shù)據(jù)是否已經(jīng)被填充到控件中并按照我們的需要調(diào)整顯示格式。我們可以來做個(gè)例子.我們將創(chuàng)建一個(gè)DetailsView來列出一個(gè)產(chǎn)品的一般信息,并且當(dāng)UnitPrice超過 $75.00 時(shí)用粗體,italic字體來顯示UnitPrice的值

Step 1: 在DetailsView中顯示產(chǎn)品信息


在CustomFormatting文件夾下新建一個(gè)CustomColors.aspx頁面,從工具箱中拖出一個(gè)DetailsView控件到頁面中,設(shè)置ID為ExpensiveProductsPriceInBoldItalic綁定到一個(gè)新的數(shù)據(jù)源中,并配置此數(shù)據(jù)源到業(yè)務(wù)對(duì)象ProductsBLL類中的GetProducts()方法,這個(gè)的詳細(xì)實(shí)現(xiàn)步驟已經(jīng)在前面詳細(xì)介紹過了,這里就忽略了

當(dāng)您綁定ObjectDataSource到DetailsView時(shí),我們可以修改一下字段列表,我選擇移除了ProductID, SupplierID, CategoryID, UnitsInStock, UnitsOnOrder, ReorderLevel和那些不被綁定的字段,他們將不會(huì)顯示在DetailsView列表中,而那些留下來的我們可以重命名他們,還可以修改他們的顯示格式. 我還清空了DetailsView的Height和Width屬性,這樣當(dāng)顯示的只有一條數(shù)據(jù)時(shí)不會(huì)出現(xiàn)樣式的混亂。當(dāng)然我們面對(duì)的數(shù)據(jù)絕不只有一條這么少,顯示怎么辦呢?我們可以檢查DetailsView的智能感知中檢查Enable Paging checkbox是否被勾選上, 這樣我們可以分頁查看所有的數(shù)據(jù)了

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化
圖一: 在DetailsView的值能感知中檢查Enable Paging屬性是否被勾選上

在經(jīng)過這些改變后, DetailsView的代碼更改為

<asp:DetailsView ID="DetailsView1" runat="server" AllowPaging="True" AutoGenerateRows="False" DataKeyNames="ProductID" DataSourceID="ObjectDataSource1" EnableViewState="False">

<Fields>

<asp:BoundField DataField="ProductName" HeaderText="Product" SortExpression="ProductName"

/>

<asp:BoundField DataField="CategoryName" HeaderText="Category" ReadOnly="True"

SortExpression="CategoryName" />

<asp:BoundField DataField="SupplierName" HeaderText="Supplier" ReadOnly="True"

SortExpression="SupplierName" />

<asp:BoundField DataField="QuantityPerUnit" HeaderText="Qty/Unit"

SortExpression="QuantityPerUnit" />

<asp:BoundField DataField="UnitPrice" DataFormatString="{0:c}" HeaderText="Price"

HtmlEncode="False" SortExpression="UnitPrice" />

</Fields>

</asp:DetailsView>

您這時(shí)可以按F5執(zhí)行看看

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化

圖二: DetailsView控件一次顯示一個(gè)數(shù)據(jù)

Step 2: 在DataBound事件中編碼確定數(shù)據(jù)的值


為了將那些UnitPrice高于$75.00的產(chǎn)品用粗體,italic字體顯示出來,我們首先需要編碼確定UnitPrice的值,對(duì)于DetailsView我們可以通過DataBound事件完成. 我們選擇DetailsView并查看屬性視圖(F4位快捷鍵), 如果沒有顯示,則選擇 View(視圖)Property Window(屬性窗口), 在確保您選擇了DetailsView的情況下雙擊DataBound事件或者輸入您要?jiǎng)?chuàng)建的事件名

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化
圖三: 為DataBound事件創(chuàng)建一個(gè)事件處理

代碼中將會(huì)自動(dòng)生成以下代碼

protected void ExpensiveProductsPriceInBoldItalic_DataBound(object sender, EventArgs e)

{

}

我們可以通過DataItem屬性來設(shè)置DetailsView的綁定項(xiàng)(一些強(qiáng)類型的數(shù)據(jù)行(DataRow)組成的強(qiáng)類型的數(shù)據(jù)表(DataTable)), 當(dāng)數(shù)據(jù)表(DataTable)綁定到DetailsView時(shí),數(shù)據(jù)表的第一行將被自動(dòng)綁定到DetailsView的DataItem屬性,而DataItem屬性中包含有DataRowView (Object類型),我們可以通過DataRowView來訪問一個(gè)ProductsRow 的DataRow實(shí)例,還可以檢測(cè)Object的值來確定ProductsRow實(shí)例是否存在

下面的代碼描述如何確定UnitPrice是否綁定到DetailsView并且高于$75.00

protected void ExpensiveProductsPriceInBoldItalic_DataBound(object sender, EventArgs e)

{

// Get the ProductsRow object from the DataItem property...

Northwind.ProductsRow product = (Northwind.ProductsRow)((System.Data.DataRowView)

ExpensiveProductsPriceInBoldItalic.DataItem).Row;

if (!product.IsUnitPriceNull() && product.UnitPrice > 75m)

{

// TODO: Make the UnitPrice text bold and italic

}

}

注意: 當(dāng)UnitPrice在數(shù)據(jù)庫的值為空,我們?cè)诮壎ǖ絇roductsRow’s UnitPrice屬性之前檢查確定他是否為空,這很重要因?yàn)槲覀兛梢酝ㄟ^檢查這個(gè)屬性來拋出一個(gè)強(qiáng)類型的異常 StrongTypingException exception.

Step 3: 在DetailsView中格式化 UnitPrice


到這個(gè)時(shí)候我們已經(jīng)知道即將綁定的UnitPrice是否高于$75.00,現(xiàn)在我們來看看怎么通過編碼調(diào)整UnitPrice的格式,我們可以通過修改DetailsViewID.Rows[index];修改一行數(shù)據(jù),而且我們可以通過訪問DetailsViewID.Rows[index].Cells[index]來訪問某一單元格,這樣我們可以通過修改與格式相關(guān)的屬性來格式化這一單元格

訪問某一行需要得到某行的索引,索引從0開始, UnitPrice 在 DetailsView中是第15行, 假設(shè)他在第四行那么我們可以通過ExpensiveProductsPriceInBoldItalic.Rows[4]來訪問. 這時(shí)我們可以通過下面的代碼將這一行顯示為粗體,italic 字體

ExpensiveProductsPriceInBoldItalic.Rows[4].Font.Bold = true;

ExpensiveProductsPriceInBoldItalic.Rows[4].Font.Italic = true;

然而,這樣將會(huì)格式化Label和值,如果我們只想將值格式話,而且我們需要將格式應(yīng)用到當(dāng)前行的第二格,請(qǐng)看下面的代碼

ExpensiveProductsPriceInBoldItalic.Rows[4].Cells[1].Font.Bold = true;

ExpensiveProductsPriceInBoldItalic.Rows[4].Cells[1].Font.Italic = true;

我們還可以通過StyleSheet 來顯示標(biāo)記和樣式相關(guān)信息,而不是用確定的某一行某一列來設(shè)置格式,我們用CSS來控制格式,打開Styles.css 文件,添加一個(gè)新的Class命名為ExpensivePriceEmphasis按照下面的代碼CSS

.ExpensivePriceEmphasis

{

font-weight: bold;

font-style: italic;

}

然后再DataBound事件中,設(shè)置單元的CssClass為ExpensivePriceEmphasis,在DataBound事件處理中添加

當(dāng)查看Chai(費(fèi)用低于$75.00),價(jià)格將會(huì)用正常格式顯示 圖4),但是當(dāng)查看Mishi Kobe Niku,(價(jià)格為$97.00)則會(huì)用我們?cè)O(shè)置的格式顯示(圖5)

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化

圖4: 價(jià)格低于$75.00將會(huì)用正常格式顯示

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化

圖5: 價(jià)格高于$75.00將會(huì)用 粗體, Italic 字體顯示

使用FormView控件的 DataBound 事件綁定到FormView數(shù)據(jù)的步驟和DetailsView的步驟類似都要?jiǎng)?chuàng)建一個(gè)DataBound事件處理, 聲明綁定到控件的DataItem類型屬性, 然后執(zhí)行綁定。然而,他們更新的方式不同

FormView不包括任何綁定列也不包含行的集合, 取而代之的是他由一系列包含若干靜態(tài)HTML, Web控件,綁定表達(dá)式的模板組合。調(diào)整 FormView的外觀涉及到調(diào)整一個(gè)或多個(gè)FormView的模板

讓我們像前一個(gè)例子那樣用FormView列出產(chǎn)品項(xiàng),但是這次我們僅僅用紅色字體顯示units小于等于10的產(chǎn)品的name和units

Step 1: 在FormView中顯示產(chǎn)品信息


添加一個(gè)FormView到CustomColors.aspx中,設(shè)置其ID為LowStockedProductsInRed,像前一個(gè)步驟一樣綁定數(shù)據(jù)到ObjectDataSource中, 這將在FormView中創(chuàng)建ItemTemplate, EditItemTemplate, 和InsertItemTemplate .

移除EditItemTemplate和InsertItemTemplate 并在 ItemTemplate 中僅包含ProductName 和UnitsInStock 項(xiàng), 在智能感知中檢查Allow Paging(分頁)標(biāo)記是否被選上

在這些操作后FormView的代碼大概會(huì)成這樣

<asp:FormView ID="LowStockedProductsInRed" runat="server" DataKeyNames="ProductID"

DataSourceID="ObjectDataSource1" AllowPaging="True" EnableViewState="False">

<ItemTemplate>

<b>Product:</b>

<asp:Label ID="ProductNameLabel" runat="server" Text='<%# Bind("ProductName") %>'>

</asp:Label><br />

<b>Units In Stock:</b>

<asp:Label ID="UnitsInStockLabel" runat="server" Text='<%# Bind("UnitsInStock") %>'>

</asp:Label>

</ItemTemplate>

</asp:FormView>

注意ItemTemplate 包含的代碼:

· 靜態(tài)HTML – “Product:” 和 “Units In Stock:” 包含 <br /> 和 <b> 元素.

· Web 控件– 兩個(gè)Label控件, ProductNameLabel 和UnitsInStockLabel.

· 綁定表達(dá)式 –<%# Bind("ProductName") %> 和<%# Bind("UnitsInStock") %> 表達(dá)式, 綁定值到Label的Text屬性上

Step 2: 在 DataBound 事件處理中編碼確定數(shù)據(jù)的值


當(dāng)FormView的標(biāo)記完成后,下一步就是確定UnitsInStock的值是否小于等于10,這里和在DetailView中類似,先創(chuàng)建DataBound事件

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化
圖6: 創(chuàng)建 DataBound 事件處理

在事件中聲明FormView的DataItem屬性到ProductsRow實(shí)例中,確定UnitsInPrice的值并將對(duì)應(yīng)的值用紅色字體顯示

protected void LowStockedProductsInRed_DataBound(object sender, EventArgs e)

{

// Get the ProductsRow object from the DataItem property...

Northwind.ProductsRow product = (Northwind.ProductsRow)((System.Data.DataRowView)

LowStockedProductsInRed.DataItem).Row;

if (!product.IsUnitsInStockNull() && product.UnitsInStock <= 10)

{

// TODO: Make the UnitsInStockLabel’s text red

}

}

Step 3:在FormView 的ItemTemplate中格式化UnitsInStockLabel Label


最后一步就是要在ItemTemplate中設(shè)置UnitsInStockLabel的樣式為紅色字體,在ItemTempelete中查找控件可以使用FindControl(“controlID”)方法

WebControlType someName = (WebControlType)FormViewID.FindControl("controlID");

對(duì)于我們這個(gè)例子我們可以用如下代碼來查找該Label控件

Label unitsInStock = (Label)LowStockedProductsInRed.FindControl("UnitsInStockLabel");

當(dāng)我們找到這個(gè)控件時(shí)則可以修改其對(duì)應(yīng)的style屬性,在style.css中已經(jīng)有一個(gè)寫好的LowUnitsInStockEmphasis的cSS Class ,我們通過下面的代碼將cSS Class設(shè)置到對(duì)應(yīng)的屬性

protected void LowStockedProductsInRed_DataBound(object sender, EventArgs e)

{

// Get the ProductsRow object from the DataItem property...

Northwind.ProductsRow product = (Northwind.ProductsRow)((System.Data.DataRowView)

LowStockedProductsInRed.DataItem).Row;

if (!product.IsUnitsInStockNull() && product.UnitsInStock <= 10)

{

Label unitsInStock = (Label)LowStockedProductsInRed.FindControl("UnitsInStockLabel");

if (unitsInStock != null)

{

unitsInStock.CssClass = "LowUnitsInStockEmphasis";

}

}

}

注意: 這種方式在FormView和GridView中也可以通過設(shè)置TemplateFields來達(dá)到同樣的效果,我們將在下一篇中討論TemplateFields.圖7顯示FormView在當(dāng)UnitsInStock大于10的情況,圖8則顯示小于等于10的情況

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化

圖7 : 在高于10的情況下,沒有值被格式化

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化
圖8:小于等于10時(shí),值用紅色字體顯示


用GridView的 RowDataBound 事件自定義格式化


前面我們討論了在FormView和DetailsView中實(shí)現(xiàn)數(shù)據(jù)綁定的步驟,現(xiàn)在讓我們回顧下

DataBinding事件觸發(fā)
數(shù)據(jù)綁定到數(shù)據(jù)綁定控件
DataBound事件觸發(fā)
對(duì)于FormView和DetailsView有效因?yàn)橹恍枰@示一個(gè)數(shù)據(jù),而在GridView中,則要顯示所有數(shù)據(jù),相對(duì)于前面三個(gè)步驟,步驟二有些不同

在步驟二中,GridView 列出所有的數(shù)據(jù),對(duì)于某一個(gè)記錄將創(chuàng)建一個(gè)GridViewRow 實(shí)例并綁定,對(duì)于每個(gè)添加到GridView 中的 GridViewRow兩個(gè)事件將會(huì)觸發(fā):

· RowCreated – 當(dāng)GridViewRow被創(chuàng)建時(shí)觸發(fā)

· RowDataBound – 當(dāng)前記錄綁定到GridViewRow時(shí)觸發(fā).

對(duì)于GridView,請(qǐng)使用下面的步驟

DataBinding事件觸發(fā)
數(shù)據(jù)綁定到數(shù)據(jù)綁定控件
對(duì)于每一行數(shù)據(jù)..

a. 創(chuàng)建GridViewRow

b. 觸發(fā) RowCreated 事件

c. 綁定數(shù)據(jù)到GridViewRow

d. 觸發(fā)RowDataBound事件

e. 添加GridViewRow到Rows 集合

DataBound事件觸發(fā)

為了自定義格式化GridView單獨(dú)記錄,我們需要為RowDataBound事件創(chuàng)建事件處理,讓我們添加一個(gè)GridView到CustomColors.aspx中,并顯示name, category, 和 price,用黃色背景高亮那些價(jià)格小于$10.00的產(chǎn)品

Step 1:在GridView中顯示產(chǎn)品信息


添加一個(gè)GridView到FormView的下方,設(shè)置ID為HighlightCheapProducts.我們之前已經(jīng)設(shè)置了一個(gè)ObjectDataSource來獲取產(chǎn)品數(shù)據(jù),現(xiàn)在我們綁定GridView到ObjectDataSource. 之后,編輯GridView的綁定列包含產(chǎn)品的name.categorie,price屬性。完成之后GridView的代碼將會(huì)是:

<asp:GridView ID="HighlightCheapProducts" runat="server" AutoGenerateColumns="False"

DataKeyNames="ProductID" DataSourceID="ObjectDataSource1" EnableViewState="False">

<Columns>

<asp:BoundField DataField="ProductName" HeaderText="Product" SortExpression="ProductName"

/>

<asp:BoundField DataField="CategoryName" HeaderText="Category" ReadOnly="True"

SortExpression="CategoryName" />

<asp:BoundField DataField="UnitPrice" DataFormatString="{0:c}" HeaderText="Price"

HtmlEncode="False" SortExpression="UnitPrice" />

</Columns>

</asp:GridView>

圖九顯示瀏覽器查看的結(jié)果

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化

圖9: GridView顯示產(chǎn)品的name, category, price

Step 2:在RowDataBound的事件處理中編碼確定數(shù)據(jù)對(duì)應(yīng)的值


當(dāng)ProductsDataTable綁定到GridView,GridView將會(huì)產(chǎn)生若干個(gè)ProductsRow。GridViewRow的DataItem屬性將會(huì)生成一個(gè)實(shí)際的ProductRow。在GridView的 RowDataBound事件發(fā)生之后,為了確定UnitsInStock的值,我們需要?jiǎng)?chuàng)建RowDataBound的事件處理,在其中我們可以確定UnitsInStock的值并做相應(yīng)的格式化EventHandler的創(chuàng)建過程和前面兩個(gè)一樣

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化
圖10: 創(chuàng)建GridView的RowDataBound事件的事件處理

在后臺(tái)代碼里將會(huì)自動(dòng)生成如下代碼

protected void HighlightCheapProducts_RowDataBound(object sender, GridViewRowEventArgs e)

{

}

當(dāng)RowDataBound事件觸發(fā),第二個(gè)參數(shù)GridViewRowEventArgs中包含了對(duì)GridViewRow的引用,我們用如下的代碼來訪問GridViewRow中的ProductsRow

protected void HighlightCheapProducts_RowDataBound(object sender, GridViewRowEventArgs e)

{ // Get the ProductsRow object from the DataItem property...

Northwind.ProductsRow product = (Northwind.ProductsRow)((System.Data.DataRowView)

e.Row.DataItem).Row;

if (!product.IsUnitPriceNull() && product.UnitPrice < 10m)

{

// TODO: Highlight the row yellow...

}

}

當(dāng)運(yùn)用RowDataBound事件處理時(shí),GridView由各種類型不同的行組成,而事件發(fā)生針對(duì)所有的行類型, GridViewRow的類型可以由RowType屬性決定,可以是以下類型中的一種

· DataRow – GridView的DataSource中的一條記錄

· EmptyDataRow – GridView的DataSource顯示出來的某一行為空

· Footer – 底部行; 顯示由GridView的ShowFooter屬性決定

· Header – 頭部行; 顯示由GridView的ShowHeader屬性決定

· Pager – GridView的分頁,這一行顯示分頁的標(biāo)記

· Separator – 對(duì)于GridView不可用,但是對(duì)于DataList和Reapter的RowType屬性卻很有用,我們將在將來的文章中討論他們

當(dāng)上面四種(DataRow, Pager Rows Footer, Header)都不合適對(duì)應(yīng)值時(shí),將返回一個(gè)空的數(shù)據(jù)項(xiàng), 所以我們需要在代碼中檢查GridViewRow的RowType屬性來確定:

protected void HighlightCheapProducts_RowDataBound(object sender, GridViewRowEventArgs e)

{

// Make sure we are working with a DataRow

if (e.Row.RowType == DataControlRowType.DataRow)

{

// Get the ProductsRow object from the DataItem property...

Northwind.ProductsRow product = (Northwind.ProductsRow)((System.Data.DataRowView)

e.Row.DataItem).Row;

if (!product.IsUnitPriceNull() && product.UnitPrice < 10m)

{

// TODO: Highlight row yellow...

}

}

}

Step 3:用黃色高亮那些UnitPrice小于$10.00的行


我們需要訪問GridViewID.Rows[index]來訪問index對(duì)應(yīng)的那一行,GridViewID.Rows[index].Cells[index]來訪問某一單元格.然而當(dāng)RowDataBound事件觸發(fā)時(shí),GridViewRow卻沒有添加到Rows集合中, 因此我們不能在RowDataBound事件處理中通過當(dāng)前GridViewRow實(shí)例

取而代之,我們可以通過e.Row來訪問。為了高亮某一行我們用下面的代碼

e.Row.BackColor = System.Drawing.Color.Yellow;

我們還可以通過cSSClass取得同樣的效果(推薦)

protected void HighlightCheapProducts_RowDataBound(object sender, GridViewRowEventArgs e)

{

// Make sure we are working with a DataRow

if (e.Row.RowType == DataControlRowType.DataRow)

{

// Get the ProductsRow object from the DataItem property...

Northwind.ProductsRow product = (Northwind.ProductsRow)((System.Data.DataRowView)

e.Row.DataItem).Row;

if (!product.IsUnitPriceNull() && product.UnitPrice < 10m)

{

e.Row.CssClass = "AffordablePriceEmphasis";

}

}

}

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化

圖 11: 所需要的行用高亮黃色顯示


總結(jié)


在本篇中我們演示了基于數(shù)據(jù)綁定來自定義格式化GridView, DetailsView, FormView的方法。為了完成這些,我們創(chuàng)建DataBound或者RowDataBound事件,為了訪問DetailsView或FormView的數(shù)據(jù)綁定,我們可以通過DataItem屬性。對(duì)于GridView,每個(gè)GridViewRow實(shí)例的DataItem屬性包含了綁定的數(shù)據(jù)(在RowDataBound事件處理中可用)

為了調(diào)整格式,我們可能需要訪問某一特定的行,在GridView和DetailsView中我們可以通過索引訪問,而在FormView中我們則需要用FindControl("controlID"),同時(shí)FindControl("controlID")通常都可以訪問Web控件Tempelete中的某個(gè)控件.在下一篇中我們將討論如何在GridView和DetailsView使用Tempeletes, 還將討論另外一些自定義格式化的方法

祝編程快樂!

作者簡介

Scott Mitchell,著有六本ASP/ASP.NET方面的書,是4GuysFromRolla.com的創(chuàng)始人,自1998年以來一直應(yīng)用 微軟Web技術(shù)。Scott是個(gè)獨(dú)立的技術(shù)咨詢顧問,培訓(xùn)師,作家,最近完成了將由Sams出版社出版的新作,24小時(shí)內(nèi)精通ASP.NET 2.0。他的聯(lián)系電郵為 mitchell@4guysfromrolla.com ,也可以通過他的博客 http://scottonwriting.net/ 與他聯(lián)系。

譯]Scott Mitchell 的ASP.NET 2.0數(shù)據(jù)教程之十一: 基于數(shù)據(jù)的自定義格式化


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 昌乐县| 鄂尔多斯市| 新巴尔虎右旗| 古丈县| 龙井市| 广汉市| 慈溪市| 惠州市| 徐闻县| 禄丰县| 廉江市| 钦州市| 株洲市| 栾川县| 陈巴尔虎旗| 通化市| 桃园县| 电白县| 陕西省| 赤水市| 彰武县| 甘泉县| 仙居县| 富裕县| 津市市| 车致| 桐庐县| 宜君县| 时尚| 额济纳旗| 博爱县| 鹤峰县| 昭通市| 晋中市| 原平市| 安徽省| 迁西县| 盐亭县| 寿宁县| 杭锦旗| 石柱|