DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Reduce Frontend Complexity in ASP.NET Razor Pages Using HTMX
  • Why Tailwind CSS Can Be Used Instead of Bootstrap CSS
  • GDPR Compliance With .NET: Securing Data the Right Way
  • How to Enhance the Performance of .NET Core Applications for Large Responses

Trending

  • The ORM Is Over: AI-Written SQL Is the New Data Access Layer
  • Zone-Free Angular: Unlocking High-Performance Change Detection With Signals and Modern Reactivity
  • Evaluating SOC Effectiveness Using Detection Coverage and Response Metrics
  • You Don't Get to Retrofit Trust: Why API Security Must Be Designed In, Not Bolted On
  1. DZone
  2. Coding
  3. Frameworks
  4. Responsive Bootstrap GridView in ASP.NET

Responsive Bootstrap GridView in ASP.NET

A straightforward tutorial to make a responsive UI for your ASP.NET application.

By 
Sanjay Kumar user avatar
Sanjay Kumar
·
Nov. 02, 15 · Tutorial
Likes (5)
Comment
Save
Tweet
Share
106.5K Views

Join the DZone community and get the full member experience.

Join For Free

The GridView control of Bootstrap provides responsive design quickly and easily.

So, let's start with the following procedure.

  • Package Manager Console
  • PM > Install-Package Twitter.Bootstrap.Bootswatch.Cosmo

  • Grid view Control and Data Binding
  • HeaderStyle-CssClass=" " ItemStyle-CssClass=" "

  • Bootstrap Responsive Classes
  • Table table-striped table-bordered table-hover







    Create a new project using "File" -> "New" -> "Project..." then select Web then select "ASP.Net Web Forms Application". Name it “GridviewResponsive".



    For the new ASP.NET Project select Empty template then select the Web Forms checkbox then click OK.
















    In the Design Source write the code as in the following.

    Default.aspx

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="GridviewResponsive.Default" %>  
    
    <!DOCTYPE html>  
    
    <html xmlns="http://www.w3.org/1999/xhtml">  
    <head>  
        <title>Responsive GridView in ASP.NET</title>  
        <meta charset="utf-8" />  
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />  
        <link href="Content/bootstrap.cosmo.min.css" rel="stylesheet" />  
        <link href="Content/StyleSheet.css" rel="stylesheet" />  
    
    </head>  
    <body>  
        <form id="form1" runat="server">  
            <br />  
            <div id="mainContainer" class="container">  
                <div class="shadowBox">  
                    <div class="page-container">  
                        <div class="container">  
                            <div class="jumbotron">  
                                <p class="text-danger">Responsive GridView in ASP.NET </p>  
                                <span class="text-info">Desktop Tablet Phone Different layout </span>  
                            </div>  
                            <div class="row">  
                                <div class="col-lg-12 ">  
                                    <div class="table-responsive">  
                                        <asp:GridView ID="grdCustomer" runat="server" Width="100%" CssClass="table table-striped table-bordered table-hover" AutoGenerateColumns="False" DataKeyNames="CustomerID" EmptyDataText="There are no data records to display.">  
                                            <Columns>  
                                                <asp:BoundField DataField="CustomerID" HeaderText="CustomerID" ReadOnly="True" SortExpression="CustomerID" />  
                                                <asp:BoundField DataField="CompanyName" HeaderText="CompanyName" SortExpression="CompanyName" HeaderStyle-CssClass="visible-lg" ItemStyle-CssClass="visible-lg" />  
                                                <asp:BoundField DataField="ContactName" HeaderText="ContactName" SortExpression="ContactName" ItemStyle-CssClass="visible-xs" HeaderStyle-CssClass="visible-xs" />  
                                                <asp:BoundField DataField="ContactTitle" HeaderText="ContactTitle" SortExpression="ContactTitle" HeaderStyle-CssClass="visible-md" ItemStyle-CssClass="visible-md" />  
                                                <asp:BoundField DataField="Address" HeaderText="Address" SortExpression="Address" ItemStyle-CssClass="hidden-xs" HeaderStyle-CssClass="hidden-xs" />  
                                                <asp:BoundField DataField="City" HeaderText="City" SortExpression="City" ItemStyle-CssClass="hidden-xs" HeaderStyle-CssClass="hidden-xs" />  
                                                <asp:BoundField DataField="Region" HeaderText="Region" SortExpression="Region" HeaderStyle-CssClass="visible-md" ItemStyle-CssClass="visible-md" />  
                                                <asp:BoundField DataField="PostalCode" HeaderText="PostalCode" SortExpression="PostalCode" HeaderStyle-CssClass="visible-lg" ItemStyle-CssClass="visible-lg" />  
                                                <asp:BoundField DataField="Country" HeaderText="Country" SortExpression="Country" HeaderStyle-CssClass="visible-md" ItemStyle-CssClass="visible-md" />  
                                                <asp:BoundField DataField="Phone" HeaderText="Phone" SortExpression="Phone" HeaderStyle-CssClass="visible-lg" ItemStyle-CssClass="visible-lg" />  
                                            </Columns>  
                                        </asp:GridView>  
                                    </div>  
                                </div>  
                            </div>  
                        </div>  
                    </div>  
                </div>  
            </div>  
        </form>  
    </body>  
    </html>  

    Write this code.

    Default.aspx.cs

    
    using System;  
    using System.Collections.Generic;  
    using System.Linq;  
    using System.Web;  
    using System.Web.UI;  
    using System.Web.UI.WebControls;  
    
    namespace GridviewResponsive  
    {  
          public partial class Default : System.Web.UI.Page  
          {  
                NorthwindDataContext dc = new NorthwindDataContext();  
                protected void Page_Load(object sender, EventArgs e)  
                {  
                      var qry = from s in dc.Customers  
                      select s;  
                      grdCustomer.DataSource = qry;  
                      grdCustomer.DataBind();  
                }  
          }  
    }  

    Now run the page, it will look like the following Desktop layout.


    Now run the page, it will look like the following Tablet layout.


    Now run the page, it will look like the following Phone layout.















    I hope this article is useful. If you have any other questions then please provide your comments below.

    ASP.NET Bootstrap (front-end framework)

    Published at DZone with permission of Sanjay Kumar. See the original article here.

    Opinions expressed by DZone contributors are their own.

    Related

    • Reduce Frontend Complexity in ASP.NET Razor Pages Using HTMX
    • Why Tailwind CSS Can Be Used Instead of Bootstrap CSS
    • GDPR Compliance With .NET: Securing Data the Right Way
    • How to Enhance the Performance of .NET Core Applications for Large Responses

    Partner Resources

    ×

    Comments

    The likes didn't load as expected. Please refresh the page and try again.

    • RSS
    • X
    • Facebook

    ABOUT US

    • About DZone
    • Support and feedback
    • Community research

    ADVERTISE

    • Advertise with DZone

    CONTRIBUTE ON DZONE

    • Article Submission Guidelines
    • Become a Contributor
    • Core Program
    • Visit the Writers' Zone

    LEGAL

    • Terms of Service
    • Privacy Policy

    CONTACT US

    • 3343 Perimeter Hill Drive
    • Suite 215
    • Nashville, TN 37211
    • [email protected]

    Let's be friends:

    • RSS
    • X
    • Facebook