PagerSettings.LastPageImageUrl Property
Gets or sets the URL to an image to display for the last-page button.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.StringThe URL to an image to display for the last-page button. The default is an empty string (""), which indicates that the LastPageImageUrl is not set.
When the Mode property is set to the NextPreviousFirstLast or NumericFirstLast value, use the LastPageImageUrl property to specify the URL to an image to display for the last-page button.
Note |
|---|
As an alternative, you can simply display text for the last-page button by setting the LastPageText property instead of the LastPageImageUrl property. If the LastPageImageUrl and LastPageText properties are both set, the image is displayed with the LastPageText property acting as the alternate text for the image. On browsers that support ToolTips, this text is also displayed as a ToolTip for the corresponding button. |
The value of this property is stored in view state.
The following code example demonstrates how to use the LastPageImageUrl property to display an image for the last-page button in the pager row of a GridView control.
<%@ Page language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>PagerSetting Example</title> </head> <body> <form id="form1" runat="server"> <h3>PagerSetting Example</h3> <asp:gridview id="CustomerGridView" datasourceid="CustomerDataSource" autogeneratecolumns="true" datakeynames="CustomerID" allowpaging="true" runat="server"> <pagersettings mode="NextPreviousFirstLast" firstpageimageurl="~/Images/FirstPage.jpg" firstpagetext="First Page" lastpageimageurl="~/Images/LastPage.jpg" lastpagetext="Last Page" nextpageimageurl="~/Images/NextPage.jpg" nextpagetext="Next Page" previouspageimageurl="~/Images/PreviousPage.jpg" previouspagetext="Previous Page" position="Bottom"/> </asp:gridview> <br/> <asp:label id="MessageLabel" forecolor="Red" runat="server"/> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomerDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
Available since 2.0
