Implement image Switching Based on the Bootstrap framework,

Source: Internet
Author: User

Implement image Switching Based on the Bootstrap framework,

Prepare an image and add the relevant records to the database table:

Create a stored procedure and obtain all records:

Deploy the Bootstrap environment in the ASP. net mvc project ......

Then create a model:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Insus.NET.Models{ public class Slider {  public byte Slider_nbr { get; set; }  public byte Sequence { get; set; }  public string Title { get; set; }  public string ImageUrl { get; set; }     public string Description { get; set; } }}

Create another Entity:

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Insus.NET.Models;using System.Data;using Insus.NET.ExtendMethods;using Insus.NET.DataBases;namespace Insus.NET.Entities{ public class SliderEntity {  BizSP sp = new BizSP();  public IEnumerable<Slider> Sliders()  {   sp.ConnectionString = DB.ConnectionString;   sp.Parameters = null;   sp.ProcedureName = "usp_Slider_GetAll";   DataTable dt = sp.ExecuteDataSet().Tables[0];   return dt.ToList<Slider>();  } }}

Set the image switching speed:

View:

<div class="tp-wrapper"> <div id="imgcarousel" class="carousel slide" data-ride="carousel">  <ol class="carousel-indicators">   @foreach (var item in (new SliderEntity()).Sliders())   {    <li data-target="#imgcarousel" data-slide-to="@item.Sequence" class="@(item.Sequence == 0 ? "active" : "")"></li>   }  </ol>  <div class="carousel-inner">   @foreach (var item in (new SliderEntity()).Sliders())   {    <div class="@(item.Sequence == 0 ? "item active" : "item")">          <div class="carousel-caption">      

Demo:

The above section describes how to implement image Switching Based on the Bootstrap framework. I hope it will help you. If you have any questions, please leave a message and I will reply to you in a timely manner. Thank you very much for your support for the help House website!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.