Link to home
Start Free TrialLog in
Avatar of WorknHardr
WorknHardr

asked on

MVC 4 Entity & Lightbox Image Viewer?

I'm looking for a jquery plugin like Lightbox to display images from the Entity database.  It seems that many image gallery plugins use disk based image storage. Help!
Avatar of leakim971
leakim971
Flag of Guadeloupe image

jQuery is run on the browser
Database run on the server
So there's NO jQuery plugin displaying image from a Database

You need :
- get data from the SQL Server
- encode the data to build a base64 encoded image
- embed the image base64 encoded in your slider template
Avatar of WorknHardr
WorknHardr

ASKER

Are saying that my only option is returning the Entity model to the View and use a foreach to display each image.
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thx, that heads me in the right direction...