GridViewRowEventArgs 클래스

정의

RowCreatedRowDataBound 이벤트에 대한 데이터를 제공합니다.

public ref class GridViewRowEventArgs : EventArgs
public class GridViewRowEventArgs : EventArgs
type GridViewRowEventArgs = class
    inherit EventArgs
Public Class GridViewRowEventArgs
Inherits EventArgs
상속
GridViewRowEventArgs

예제

다음 예제에서는 사용 하는 방법에 설명 합니다 GridViewRowEventArgs 개체 데이터에 바인딩되어 있는 행의 속성에 액세스 하는 이벤트 처리 메서드에 전달 합니다.


<%@ 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 CustomersGridView_RowDataBound(Object sender, GridViewRowEventArgs e)
  {
        
    if(e.Row.RowType == DataControlRowType.DataRow)
    {
      // Display the company name in italics.
      e.Row.Cells[1].Text = "<i>" + e.Row.Cells[1].Text + "</i>";
        
    }
    
  }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>GridView RowDataBound Example</title>
</head>
<body>
    <form id="form1" runat="server">
        
      <h3>GridView RowDataBound Example</h3>

      <asp:gridview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneratecolumns="true"
        allowpaging="true"
        onrowdatabound="CustomersGridView_RowDataBound" 
        runat="server">
      </asp:gridview>
            
      <!-- 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="CustomersSqlDataSource"  
        selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        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 CustomersGridView_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs)

    If e.Row.RowType = DataControlRowType.DataRow Then
    
      ' Display the company name in italics.
      e.Row.Cells(1).Text = "<i>" & e.Row.Cells(1).Text & "</i>"
        
    End If
    
  End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>GridView RowDataBound Example</title>
</head>
<body>
    <form id="form1" runat="server">
        
      <h3>GridView RowDataBound Example</h3>

      <asp:gridview id="CustomersGridView" 
        datasourceid="CustomersSqlDataSource" 
        autogeneratecolumns="true"
        allowpaging="true"
        onrowdatabound="CustomersGridView_RowDataBound" 
        runat="server">
      </asp:gridview>
            
      <!-- 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="CustomersSqlDataSource"  
        selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
        connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>"
        runat="server">
      </asp:sqldatasource>
            
            
    </form>
  </body>
</html>

설명

전에 GridView 컨트롤을 렌더링을 GridViewRow 컨트롤의 각 행에 대 한 개체를 만들어야 합니다. 합니다 RowCreated 이벤트가 발생 될 때마다 행에 GridView 컨트롤이 만들어집니다. 이 옵션을 사용 하면이 이벤트가 발생할 때마다 행을 사용자 지정 콘텐츠를 추가 하는 등 사용자 지정 루틴을 수행 하는 이벤트 처리 메서드를 제공할 수 있습니다.

컨트롤의 각 행을 하기 전에 데이터 원본에서 레코드를 연결 해야 하는 마찬가지로 GridView 컨트롤을 렌더링할 수 있습니다. RowDataBound 이벤트는 데이터 행 (나타내는 GridViewRow 개체) 데이터에 바인딩되는 GridView 제어 합니다. 이 옵션을 사용 하면이 이벤트가 발생할 때마다 해당 행에 바인딩된 데이터의 값을 수정 하는 등 사용자 지정 루틴을 수행 하는 이벤트 처리 메서드를 제공할 수 있습니다.

GridViewRowEventArgs 개체 이벤트를 발생 시킨 행의 속성에 액세스할 수 있는 이벤트 처리 메서드에 전달 됩니다. 행의 특정 셀에 액세스 하려면 사용 하 여는 Cells 의 속성을 GridViewRow 에 포함 된 개체는 Row 속성. 사용 하 여 만들고 있는 행 형식 (머리글 행, 데이터 행 및 등)을 확인할 수도 있습니다는 RowType 의 속성을 GridViewRow 개체.

이벤트를 처리 하는 방법에 대 한 자세한 내용은 참조 하세요. 이벤트 처리 및 발생합니다.

인스턴스의 초기 속성 값의 목록을 GridViewRowEventArgs, 참조는 GridViewRowEventArgs 생성자입니다.

생성자

GridViewRowEventArgs(GridViewRow)

GridViewRowEventArgs 클래스의 새 인스턴스를 초기화합니다.

속성

Row

만들고 있거나 데이터 바인딩된 행을 가져옵니다.

메서드

Equals(Object)

지정된 개체가 현재 개체와 같은지 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 작동합니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type을 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object의 단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상

추가 정보