0
The examples I saw on the net did not work, or were very personalized. I just want a simple table, with 4 columns that will be filled with data from a comic. The same will stay within a simple modal:
<div class="modal fade open" id="modalVersao" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" >
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">
<asp:Label ID="Label3" runat="server" Text="Gerenciar Versões"></asp:Label></h4>
</div>
<div class="modal-body">
<!-- Quero o GRID aqui -->
</div>
<div class="modal-footer">
//Botoes
</div>
You cannot use a Datagridview and set your data as DATASOURCE ?
– PauloHDSousa