13 lines
672 B
Plaintext
13 lines
672 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/base_page.master" AutoEventWireup="true" CodeFile="listar.aspx.cs" Inherits="listar" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="header" runat="Server">
|
|
<title>Listar Participantes</title>
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="content" runat="Server">
|
|
<h1>Participantes</h1>
|
|
<asp:GridView ID="participantes_grid" CssClass="table table-borderless table-striped table-hover" HeaderStyle-CssClass="thead-dark" OnRowDataBound="ParticipantesRowDataBound" runat="server"/>
|
|
</asp:Content>
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="script" runat="Server">
|
|
</asp:Content>
|
|
|