SortDirection Enumeración
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Especifica la dirección en la que se ordena una lista de elementos.
public enum class SortDirection
public enum SortDirection
type SortDirection =
Public Enum SortDirection
- Herencia
Campos
Ascending | 0 | Ordena de menor a mayor. Por ejemplo, de la A a la Z. |
Descending | 1 | Ordena de mayor a menor. Por ejemplo, de la Z a la A. |
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar la SortDirection enumeración para determinar la dirección en la que el GridView control muestra sus elementos. La SortDirection propiedad del GridView control se prueba para su valor para determinar la dirección de ordenación.
<%@ Page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void AuthorsGridView_Sorted(Object sender, EventArgs e)
{
// Display the sort direction.
if(AuthorsGridView.SortDirection == SortDirection.Ascending)
{
Message.Text = "Sorting in ascending order.";
}
else
{
Message.Text = "Sorting in descending order.";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>SortDirection Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>SortDirection Example</h3>
<asp:label id="Message"
forecolor="Red"
runat="server"/>
<br/><br/>
<asp:gridview id="AuthorsGridView"
datasourceid="AuthorsSqlDataSource"
allowsorting="true"
onsorted="AuthorsGridView_Sorted"
runat="server"/>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Pubs sample database. -->
<asp:sqldatasource id="AuthorsSqlDataSource"
selectcommand="SELECT [au_id], [au_lname], [au_fname], [address], [city], [state], [zip], [contract] FROM [authors]"
updatecommand="UPDATE authors SET au_lname=@au_lname, au_fname=@au_fname, address=@address, city=@city, state=@state, zip=@zip, contract=@contract WHERE (authors.au_id = @au_id)"
connectionstring="server=localhost;database=pubs;integrated security=SSPI"
runat="server">
</asp:sqldatasource>
</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">
<script runat="server">
Sub AuthorsGridView_Sorted(ByVal sender As Object, ByVal e As EventArgs)
' Display the sort direction.
If AuthorsGridView.SortDirection = SortDirection.Ascending Then
Message.Text = "Sorting in ascending order."
Else
Message.Text = "Sorting in descending order."
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>SortDirection Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>SortDirection Example</h3>
<asp:label id="Message"
forecolor="Red"
runat="server"/>
<br/><br/>
<asp:gridview id="AuthorsGridView"
datasourceid="AuthorsSqlDataSource"
allowsorting="true"
onsorted="AuthorsGridView_Sorted"
runat="server"/>
<!-- This example uses Microsoft SQL Server and connects -->
<!-- to the Pubs sample database. -->
<asp:sqldatasource id="AuthorsSqlDataSource"
selectcommand="SELECT [au_id], [au_lname], [au_fname], [address], [city], [state], [zip], [contract] FROM [authors]"
updatecommand="UPDATE authors SET au_lname=@au_lname, au_fname=@au_fname, address=@address, city=@city, state=@state, zip=@zip, contract=@contract WHERE (authors.au_id = @au_id)"
connectionstring="server=localhost;database=pubs;integrated security=SSPI"
runat="server">
</asp:sqldatasource>
</form>
</body>
</html>
Comentarios
La SortDirection enumeración se usa para representar la dirección en la que se ordenan los elementos. Normalmente se usa mediante propiedades (como la SortDirection propiedad de la GridView clase) para indicar el orden en el que se muestran los elementos en un control.