innonet
Posts: 55
|
| Posted: 04/14/2011, 10:21 AM |
|
I am working on an ASP.net C# INMOTION project and have to incorporate a Photo Slideshow. Members have the possibility to upload images into a SQL SERVER table called IMAGES with the following fields:
ImageNo
UserID
ImageName
On their member profile page I would like to retrieve these images based on their UserID and display them in a Java or Ajax Slideshow.
I don't need the uploading portion, just the Slideshow Part.
Could someone please help me or do that for me ? I am willing to pay good $$$ as I need that super urgent.
Please let me know via PM.
|
 |
 |
Waspman
Posts: 948
|
| Posted: 04/14/2011, 11:29 AM |
|
jquery is how i'd do it.
_________________
http://www.waspmedia.co.uk |
 |
 |
innonet
Posts: 55
|
| Posted: 04/14/2011, 11:32 AM |
|
Well, all I need is a working release. If you think it will work with jquery, then so be it. Remember, I am going to PAY for the work.
|
 |
 |
Waspman
Posts: 948
|
| Posted: 04/14/2011, 12:07 PM |
|
It's that easy you could have it built before you'd written the cheque haha
_________________
http://www.waspmedia.co.uk |
 |
 |
innonet
Posts: 55
|
| Posted: 04/14/2011, 12:56 PM |
|
Well, if it is that easy then please do it, provide the project file and get paid. I would really need it urgently.
You can either use your own free java plugin, or use tiny slideshow which is also free. Important is only that it is incorporated in ASP.net C# Inmotion.
|
 |
 |
Waspman
Posts: 948
|
| Posted: 04/14/2011, 1:59 PM |
|
Sorry man, PHP for me and I'm too busy:)
_________________
http://www.waspmedia.co.uk |
 |
 |
damian
Posts: 838
|
| Posted: 04/14/2011, 2:11 PM |
|
i dont know the slightest thing about asp - but this is all done in the html once you use asp to bring up the thumbnails from the db... http://leandrovieira.com/projects/jquery/lightbox/
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/15/2011, 12:11 PM |
|
WOW, is there really nobody out there who can help ???????????
|
 |
 |
datadoit
|
| Posted: 04/15/2011, 2:01 PM |
|
Well, about 95% of CodeCharge users are on PHP. So if you have a user
base of probably less than a hundred folks worldwide, that leaves you
maybe 5 folks in the world that even work in CodeCharge and
..Net/C#/Inmotion. Subtract yourself, and you're down to 4.
|
|
|
 |
damian
Posts: 838
|
| Posted: 04/15/2011, 2:46 PM |
|
thats perhaps a tad harsh on the 100 users... perhaps 100 users on the forums...
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
damian
Posts: 838
|
| Posted: 04/15/2011, 2:47 PM |
|
in the time it took you to write and follow thru this thread you could have implemented this lightbox.... http://leandrovieira.com/projects/jquery/lightbox/
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/15/2011, 4:26 PM |
|
Damian, in the time you excited me with your comment you could have sent me the ccs project file. You would then understand that it is not easy to dynamically retrieve the images from the database and display them in a slideshow in Asp.net.
|
 |
 |
damian
Posts: 838
|
| Posted: 04/15/2011, 8:10 PM |
|
in your header add the following lines:
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.lightbox-0.4.js"></script
<link rel="stylesheet" type="text/css" href="css/jquery.lightbox-0.4.css" media="screen" />
use ccs to pull the appropriate images from the db based on CCGetUserID() or however you are tracking who the images belong to. arrange the thumbs nicely or if you only want to display the one image initially you need to set the rest of the images to display with a width="1px" or some similar way.
just after your <begin row> tags add the following line:
<div id="gallery">
Just before your <end row> tag close the div layer
make sure you copy all the appropriate files (from the download link: http://leandrovieira.com/download/7/) to the paths you reference in first section above.
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/18/2011, 7:39 AM |
|
I have tried that, and it is not working if I want to retrieve the images dynamically from the SQL Server Database.
Could anybody please help. I am willing to pay $100 for that.
|
 |
 |
morowind
Posts: 46
|
| Posted: 04/18/2011, 2:54 PM |
|
how do you register image in database ?
give me the table structure.
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/18/2011, 2:57 PM |
|
Each user can upload up to 10 images directly to the server.
|
 |
 |
damian
Posts: 838
|
| Posted: 04/18/2011, 6:38 PM |
|
please attach a blank copy of your database.
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/18/2011, 6:57 PM |
|
It is even simpler:
SQL Server Database with ONE Table called IMAGES and three fields:
ImageNo (Primary Key)
UserID (Integer) to identify the user
ImageName (Name of the Image)
|
 |
 |
damian
Posts: 838
|
| Posted: 04/19/2011, 1:06 AM |
|
Quote innonet:On their member profile page I would like to retrieve these images based on their UserID and display them in a Java or Ajax Slideshow.
Quote :SQL Server Database with ONE Table called IMAGES and three fields:
ImageNo (Primary Key)
UserID (Integer) to identify the user
ImageName (Name of the Image)
how can you display the images only for that user when you have no user table?
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/19/2011, 6:45 AM |
|
Well, the entire project has more than 250 tables. And of course there is a User Table. The user is identified through the field UserID in the table Images (UserID = X).
|
 |
 |
damian
Posts: 838
|
| Posted: 04/19/2011, 7:28 AM |
|
Quote innonet:It is even simpler:
SQL Server Database with ONE Table called IMAGES and three fields:
ImageNo (Primary Key)
UserID (Integer) to identify the user
ImageName (Name of the Image)
why do you make something so simple so hard? two people have asked for datanase structure. thats two ppl who are offering to help. you post this back and then after more questions we find there is not one table but 250 tables.
anyway you write a sql query (or use the VQB) to
select ImageName from Images where UserID = myUserID()
and you set sql parameter
myUserID = CCGetUserID()
you display these in a grid formatted anyway you want and you set the size to some appropriate thumbnail size. you wrap it up in the lightbox codes described earlier and you are done.
you probably also want to display a single default image if the user has uploded no images.
_________________
if you found this post useful take the time to help someone else.... :)
|
 |
 |
innonet
Posts: 55
|
| Posted: 04/20/2011, 8:37 AM |
|
Well, this was extremely painful, but we were able to resolve it with Tiny Slideshow. Damian, thank you for your inputs and your help.
Please let me know if someone is interested in getting the Project Files.
|
 |
 |
Pato
Posts: 3
|
| Posted: 05/16/2011, 11:25 PM |
|
Quote innonet:
Well, this was extremely painful, but we were able to resolve it with Tiny Slideshow. Damian, thank you for your inputs and your help.
Please let me know if someone is interested in getting the Project Files.
@innonet, this is exactly what am looking for. Could be kind enough to send me the files?
I am working with a table storing properties and another one storing property images group with property_id. I want retreive the images according to the property selected.
Thanks.
_________________
... all things are down twice, once in the mind, once in the real world. |
 |
 |
Pato
Posts: 3
|
| Posted: 05/16/2011, 11:26 PM |
|
Quote innonet:
Well, this was extremely painful, but we were able to resolve it with Tiny Slideshow. Damian, thank you for your inputs and your help.
Please let me know if someone is interested in getting the Project Files.
@innonet, this is exactly what am looking for. Could you be kind enough to send me the files?
I am working with a table storing properties and another one storing property images group with property_id. I want retreive the images according to the property selected.
Thanks.
_________________
... all things are down twice, once in the mind, once in the real world. |
 |
 |