ASP.NET Design Template with Bootstrap

Gani_tpt 1,506 Reputation points
2023-03-29T06:04:25.7566667+00:00

I am developing many web application using ASP.NET.

For that, i used Ajax,CSS,HTML,etc.

We were not used in depth Bootstrap and other technologies with ASP.NET.

I have the requirement and want to develop .NET Web application with Rich and user friendly design template using BootStrap and Angular JS.

for engineering domain, where we could find the rich Bootstrap design and template ..

pls. help me to how to design the rich template like bootstrap in ASP.NET

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,162 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,254 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. betalyte 0 Reputation points
    2023-03-29T14:46:52.08+00:00

    Hi,

    You can add Bootstrap to your ASP.NET Core project by using LibMan: In VS this is done by right-clicking on your Project, select Add > Client-Side Library > Search for 'twitter-bootstrap'. You then add the stylesheet references as well as the script-tag.

    Alternatively, you can install the NuGet package:

    PM> Install-Package bootstrap
    

    Of course you can also just include it directly in your HTML by using the jsDelivr CDN:

    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-aFq/bzH65dt+w6FI2ooMVUpc+21e0SRygnTpmBvdBgSdnuTN7QbdgL+OapgHtvPp" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/js/bootstrap.bundle.min.js" integrity="sha384-qKXV1j0HvMUeCBQ+QVp7JcfGl760yU08IQ+GpUo5hlbpg51QRiuqHAJz8+BrxE/N" crossorigin="anonymous"></script>
    
    
    0 comments No comments

  2. Bruce (SqlWork.com) 55,686 Reputation points
    2023-03-29T15:14:56.5066667+00:00

    If you are going to use bootstrap with angular, then you probably want an angular lib to replace the bootstrap components which depends on jquery. Also angular component are easier to code with.

    I use react and react-bootstrap, but you probably want something like this

    https://ng-bootstrap.github.io/#/home

    0 comments No comments