PagerSettings.NextPageImageUrl Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta l'URL di un'immagine da visualizzare per il pulsante di collegamento pagina successiva.
public:
property System::String ^ NextPageImageUrl { System::String ^ get(); void set(System::String ^ value); };
public string NextPageImageUrl { get; set; }
member this.NextPageImageUrl : string with get, set
Public Property NextPageImageUrl As String
Valore della proprietà
URL di un'immagine da visualizzare per il pulsante di collegamento alla pagina successiva. Il valore predefinito è una stringa vuota (""), che indica che la proprietà NextPageImageUrl non è impostata.
Esempio
Nell'esempio di codice seguente viene illustrato come usare la NextPageImageUrl proprietà per visualizzare un'immagine per il pulsante di pagina successiva nella riga del pager di un GridView controllo.
<%@ 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>
<%@ Page language="VB" %>
<!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>
Commenti
Quando la proprietà è impostata sul NumericFirstLast valore oNextPrevious, utilizzare la NextPageImageUrlMode proprietà per specificare l'URL di un'immagine da visualizzare per il pulsante di pagina successiva.
Nota
In alternativa, è possibile visualizzare semplicemente il testo per il pulsante di pagina successiva impostando la proprietà anziché la NextPageTextNextPageImageUrl proprietà. Se le NextPageImageUrl proprietà e NextPageText sono entrambe impostate, l'immagine viene visualizzata con la NextPageText proprietà che funge da testo alternativo per l'immagine. Nei browser che supportano le descrizioni comandi, questo testo viene visualizzato anche come descrizione comando per il pulsante corrispondente.
Il valore di questa proprietà viene archiviato nello stato di visualizzazione.