Click here to Skip to main content
15,915,869 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to capture webcam videos using C# and ASP.NET Pin
vinay_sinha20-Aug-12 23:30
vinay_sinha20-Aug-12 23:30 
QuestionPage.ResolveUrl and reverse proxy Pin
Sebastiaan Meijerink20-Aug-12 22:21
professionalSebastiaan Meijerink20-Aug-12 22:21 
Questionexecute a certain task every one hour in server Pin
Farhad Eft20-Aug-12 13:01
Farhad Eft20-Aug-12 13:01 
AnswerRe: execute a certain task every one hour in server Pin
fjdiewornncalwe20-Aug-12 16:08
professionalfjdiewornncalwe20-Aug-12 16:08 
GeneralRe: execute a certain task every one hour in server Pin
Farhad Eft20-Aug-12 22:08
Farhad Eft20-Aug-12 22:08 
AnswerRe: execute a certain task every one hour in server Pin
Rahul Rajat Singh20-Aug-12 17:55
professionalRahul Rajat Singh20-Aug-12 17:55 
GeneralRe: execute a certain task every one hour in server Pin
Farhad Eft20-Aug-12 22:08
Farhad Eft20-Aug-12 22:08 
AnswerRe: execute a certain task every one hour in server Pin
Rahul Rajat Singh20-Aug-12 22:27
professionalRahul Rajat Singh20-Aug-12 22:27 
SuggestionRe: execute a certain task every one hour in server Pin
Karthik J, Coimbatore20-Aug-12 23:25
Karthik J, Coimbatore20-Aug-12 23:25 
AnswerRe: execute a certain task every one hour in server Pin
David Mujica21-Aug-12 2:03
David Mujica21-Aug-12 2:03 
AnswerRe: execute a certain task every one hour in server Pin
Sandip.Nascar22-Aug-12 10:57
Sandip.Nascar22-Aug-12 10:57 
AnswerRe: execute a certain task every one hour in server Pin
Vijay Selvaraj27-Aug-12 0:13
Vijay Selvaraj27-Aug-12 0:13 
Questionconfigure IIS 7 to run with current user account Pin
indian14320-Aug-12 10:38
indian14320-Aug-12 10:38 
Questionimage control from Image Pin
Jassim Rahma20-Aug-12 8:56
Jassim Rahma20-Aug-12 8:56 
AnswerRe: image control from Image Pin
Wes Aday20-Aug-12 9:21
professionalWes Aday20-Aug-12 9:21 
GeneralRe: image control from Image Pin
Jassim Rahma20-Aug-12 9:34
Jassim Rahma20-Aug-12 9:34 
QuestionInteractive Chart - Write Back to Database Pin
Member 936975420-Aug-12 7:56
Member 936975420-Aug-12 7:56 
Questionget all image file names from a folder in Jquery Pin
ashjassi19-Aug-12 20:18
ashjassi19-Aug-12 20:18 
AnswerRe: get all image file names from a folder in Jquery Pin
jiacode19-Aug-12 20:28
jiacode19-Aug-12 20:28 
AnswerRe: get all image file names from a folder in Jquery Pin
Keith Barrow20-Aug-12 2:55
professionalKeith Barrow20-Aug-12 2:55 
I don't know who downvoted this, but I have voted you back up. Whoever it was their rep was small, so my upvote will more than counter.

First, jquery alone can't do this for you, it needs to get the information from the server (assuming the files are on the server). You'll need to do some googling as a full solution will take time but:

  1. On the server you need to create a JSON result with the paths of the files
  2. On the client side you need to use jQuery's ajax/[^] function to get the information


As you are using AJAX I'd suggest the server responds with the next Image url (don't forget loops round at the end). This means the Client needs to send the current url (or some identifier) so the server knows where the client is in the list. If an empty or unknown url is passed to the server, return the first element, that way the slideshow can bootstrap itself easily. If you are using MVC3/4 the server component is easy, these can return a JSON result directly. With ASP.NET webforms, it is a little harder (see http://stackoverflow.com/questions/2422983/returning-json-object-from-an-asp-net-page[^]) but not very hard.

There is a reasonable amount of work in all this, it might be worth getting one of the many on-line sliders and taking them apart to see how they work (or just using them if one fits!).

GeneralRe: get all image file names from a folder in Jquery Pin
ashjassi20-Aug-12 18:45
ashjassi20-Aug-12 18:45 
Questionremove my website from history Pin
Jassim Rahma19-Aug-12 5:20
Jassim Rahma19-Aug-12 5:20 
AnswerRe: remove my website from history Pin
Bernhard Hiller19-Aug-12 21:00
Bernhard Hiller19-Aug-12 21:00 
AnswerRe: remove my website from history Pin
Karthik J, Coimbatore20-Aug-12 23:40
Karthik J, Coimbatore20-Aug-12 23:40 
Questionwhen the data(database) on the server is updated, how to inform the client automatically? Pin
wangerpang19-Aug-12 4:54
wangerpang19-Aug-12 4:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.