Torna al Thread

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <link href="css/bootstrap.min.css" rel="stylesheet" /> <script src="js/jquery.min.js"></script> <link href="css/jquery.dataTables.min.css" rel="stylesheet" /> <script src="js/jquery.dataTables.min.js"></script> <script src="js/bootstrap.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $('#example').dataTable({ "language": { "sEmptyTable": "Nessun dato presente nella tabella", "sInfo": "Vista da _START_ a _END_ di _TOTAL_ elementi", "sInfoEmpty": "Vista da 0 a 0 di 0 elementi", "sInfoFiltered": "(filtrati da _MAX_ elementi totali)", "sInfoPostFix": "", "sInfoThousands": ",", "sLengthMenu": "Visualizza _MENU_ elementi", "sLoadingRecords": "Caricamento...", "sProcessing": "Elaborazione...", "sSearch": "Cerca:", "sZeroRecords": "La ricerca non ha portato alcun risultato.", "oPaginate": { "sFirst": "Inizio", "sPrevious": "Precedente", "sNext": "Successivo", "sLast": "Fine" }, "oAria": { "sSortAscending": ": attiva per ordinare la colonna in ordine crescente", "sSortDescending": ": attiva per ordinare la colonna in ordine decrescente" } } }); }); </script> </head> <body style="font-size: 140%;margin:20px auto"> <form id="form1" runat="server"> <asp:GridView ID="example" runat="server" class="table table-striped table-bordered" cellspacing="0" width="100%" DataSourceID="SqlDataSource1" AutoGenerateColumns="False"> <Columns> <asp:BoundField DataField="codcli" HeaderText="codcli" SortExpression="codcli" /> <asp:BoundField DataField="ragsoc" HeaderText="ragsoc" SortExpression="ragsoc" /> <asp:BoundField DataField="prov" HeaderText="prov" SortExpression="prov" /> ... </Columns> </asp:GridView> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT ..."> </asp:SqlDataSource> </form> </body> </html>
Copyright © dotNetHell.it 2002-2025
Running on Windows Server 2008 R2 Standard, SQL Server 2012 & ASP.NET 3.5