SortDirection 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
항목의 목록을 정렬할 방향을 지정합니다.
public enum class SortDirection
public enum SortDirection
type SortDirection =
Public Enum SortDirection
- 상속
필드
Ascending | 0 | 오름차순으로 정렬합니다. 예를 들어, A에서 Z로 정렬합니다. |
Descending | 1 | 내림차순으로 정렬합니다. 예를 들어, Z에서 A로 정렬합니다. |
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 SortDirection 방향을 결정 하는 열거형을 GridView 컨트롤에 항목이 표시 되 합니다. SortDirection 의 속성을 GridView 정렬 방향을 결정 하는 값에 대 한 컨트롤을 테스트 합니다.
<%@ 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>
설명
SortDirection 열거형 항목 정렬 되는 방향을 나타내는 데 사용 됩니다. 속성에서 일반적으로 사용 됩니다 (같은 SortDirection 의 속성을 GridView 클래스) 항목 컨트롤에 표시 되는 순서를 나타냅니다.