2
Answers

How to Slide the content in MVC through Jquery

Arun Kumar

Arun Kumar

9y
460
1
How to Make a Slide Show with next and previous button through Jquery where data comes from Database in MVC. Data comes from database is are containing image and Text both. So, Please help?
Answers (2)
0
Arun Kumar

Arun Kumar

NA 5 1.4k 9y
Please Provide me code
0
Saineshwar Bageri

Saineshwar Bageri

NA 20.1k 11.2m 9y
Get data from Database and Create mark up in your Controller and then use
View Bag for displaying data.
 
 Keeping Markup in ViewBag
 
ViewBag.HtmlOutput =GenerateHomePage(); 
 
On View Displaying Data
 
@Html.Raw(ViewBag.HtmlOutput) 
 
Mark as answer if i have resolved issue