DetailsView.FooterText 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DetailsView 컨트롤의 바닥글 행에 표시할 텍스트를 가져오거나 설정합니다.
public:
virtual property System::String ^ FooterText { System::String ^ get(); void set(System::String ^ value); };
public virtual string FooterText { get; set; }
member this.FooterText : string with get, set
Public Overridable Property FooterText As String
속성 값
바닥글 행에 표시할 텍스트입니다. 기본값은 빈 문자열("")로, 이 속성이 설정되어 있지 않음을 나타냅니다.
예제
다음 코드 예제를 사용 FooterText 하는 방법에 설명 합니다 바닥글 행에 표시할 텍스트를 지정 하는 속성입니다.
<%@ 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>DetailsView FooterText Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView FooterText Example</h3>
<asp:detailsview id="CustomerDetailView"
datasourceid="DetailsViewSource"
datakeynames="CustomerID"
autogeneraterows="true"
allowpaging="true"
footertext="Confidential"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White"/>
<footerstyle forecolor="Red"
backcolor="LightBlue"
font-names="Arial"
font-size="10"
font-bold="true"/>
</asp:detailsview>
<!-- 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="DetailsViewSource" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] From
[Customers]">
</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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>DetailsView FooterText Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>DetailsView FooterText Example</h3>
<asp:detailsview id="CustomerDetailView"
datasourceid="DetailsViewSource"
datakeynames="CustomerID"
autogeneraterows="true"
allowpaging="true"
footertext="Confidential"
runat="server">
<headerstyle backcolor="Navy"
forecolor="White"/>
<footerstyle forecolor="Red"
backcolor="LightBlue"
font-names="Arial"
font-size="10"
font-bold="true"/>
</asp:detailsview>
<!-- 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="DetailsViewSource" runat="server"
ConnectionString=
"<%$ ConnectionStrings:NorthWindConnectionString%>"
InsertCommand="INSERT INTO [Customers]([CustomerID],
[CompanyName], [Address], [City], [PostalCode], [Country])
VALUES (@CustomerID, @CompanyName, @Address, @City,
@PostalCode, @Country)"
SelectCommand="Select [CustomerID], [CompanyName],
[Address], [City], [PostalCode], [Country] From
[Customers]">
</asp:SqlDataSource>
</form>
</body>
</html>
설명
바닥글 행은 또는 FooterTemplate 속성이 DetailsView 설정된 경우 FooterText 컨트롤의 맨 아래에 표시됩니다. 사용 된 FooterText 바닥글 행에 표시할 텍스트를 지정 하는 속성입니다. 바닥글 행의 스타일을 제어하려면 속성을 사용합니다 FooterStyle . 또는 이 속성 대신 속성을 설정 FooterTemplate 하여 바닥글 행에 대한 사용자 지정 UI(사용자 지정 사용자 인터페이스)를 정의할 수 있습니다.
참고
모두를 FooterText 및 FooterTemplate 속성을 설정 합니다 FooterTemplate 속성이 우선 합니다.
값 FooterText 은 뷰 상태에 저장됩니다.
이 속성의 값으로 설정 된 경우 디자이너 도구를 사용 하 여 리소스 파일에 자동으로 저장 될 수 있습니다. 자세한 내용은 LocalizableAttribute 하 고 전역화 및 지역화합니다.
적용 대상
추가 정보
.NET