Click here to Skip to main content
15,889,595 members
Home / Discussions / Web Development
   

Web Development

 
QuestionTree Of Links Pin
Kevin Marois17-Feb-10 8:36
professionalKevin Marois17-Feb-10 8:36 
AnswerRe: Tree Of Links Pin
Jörgen Andersson17-Feb-10 9:05
professionalJörgen Andersson17-Feb-10 9:05 
AnswerRe: Tree Of Links Pin
DmiNi23-Feb-10 7:44
DmiNi23-Feb-10 7:44 
Questionslideshow problem Pin
rajiv_kadam16-Feb-10 22:19
rajiv_kadam16-Feb-10 22:19 
Questiontextchanging with imagechanging Pin
rajiv_kadam15-Feb-10 23:51
rajiv_kadam15-Feb-10 23:51 
Questionjavascript slide show not workin Pin
rajiv_kadam14-Feb-10 19:37
rajiv_kadam14-Feb-10 19:37 
AnswerRe: javascript slide show not workin Pin
thatraja14-Feb-10 19:48
professionalthatraja14-Feb-10 19:48 
Questionslideshowproblem in asp Pin
rajiv_kadam14-Feb-10 19:03
rajiv_kadam14-Feb-10 19:03 
i m using slide show which displays images from database but image is not displaying can anyone tell me
here is my code below .i m working in asp script.



<%
OpenDataBase conn
sql="select top 1 * from news order by news_id desc"
set obj=server.createobject("adodb.recordset")
obj.open sql,conn,1,1
x=obj("news_id")-10
sql2="select * from newsimage where newsid>=" & x
set obj2=server.CreateObject("adodb.recordset")
obj2.open sql2,conn,1,1

while obj2.eof<>true

path=path & """/images/" & obj2("imagename") & ""","

obj2.movenext
wend
path=left(path,len(path)-1)
%>





var interval = 2.5;
var random_display = 1;
interval *= 1000;

var image_index = 0;
image_list[image_index++] = new Array(&lt;%=path%&gt;);

var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
}
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}
function getNextImage() {
if (random_display) {
image_index = generate(0, number_of_image-1);
}
else {
image_index = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocation(image_list[image_index]);
return(new_image);
}
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
}
















Question24 hr running exe Pin
Gjm13-Feb-10 4:59
Gjm13-Feb-10 4:59 
AnswerRe: 24 hr running exe Pin
Dr.Walt Fair, PE13-Feb-10 5:33
professionalDr.Walt Fair, PE13-Feb-10 5:33 
GeneralRe: 24 hr running exe Pin
Gjm11-Jun-10 15:21
Gjm11-Jun-10 15:21 
AnswerDon't repost Pin
Not Active13-Feb-10 7:35
mentorNot Active13-Feb-10 7:35 
GeneralI found the best value for Ebay ProStores, Yahoo Stores, Volusion Pin
kosalaindrasiri12-Feb-10 20:41
kosalaindrasiri12-Feb-10 20:41 
QuestionHave annoying problem with formatting of hand-made tab control Pin
alexandis12-Feb-10 11:58
alexandis12-Feb-10 11:58 
AnswerRe: Have annoying problem with formatting of hand-made tab control Pin
Dr.Walt Fair, PE12-Feb-10 13:16
professionalDr.Walt Fair, PE12-Feb-10 13:16 
GeneralRe: Have annoying problem with formatting of hand-made tab control Pin
alexandis12-Feb-10 22:18
alexandis12-Feb-10 22:18 
AnswerRe: Have annoying problem with formatting of hand-made tab control Pin
Richard MacCutchan12-Feb-10 22:37
mveRichard MacCutchan12-Feb-10 22:37 
GeneralRe: Have annoying problem with formatting of hand-made tab control Pin
alexandis13-Feb-10 18:13
alexandis13-Feb-10 18:13 
GeneralRe: Have annoying problem with formatting of hand-made tab control Pin
Richard MacCutchan13-Feb-10 21:41
mveRichard MacCutchan13-Feb-10 21:41 
GeneralRe: Have annoying problem with formatting of hand-made tab control Pin
alexandis14-Feb-10 1:27
alexandis14-Feb-10 1:27 
QuestionCertain Flash banner development tips Pin
Honoy10-Feb-10 23:00
Honoy10-Feb-10 23:00 
QuestionNetwork Identification Card( NIC) restricted web-pages Pin
mir_ashraf_ali10-Feb-10 20:30
mir_ashraf_ali10-Feb-10 20:30 
Questionfiledownloadproblem(ASP) Pin
rajiv_kadam10-Feb-10 19:58
rajiv_kadam10-Feb-10 19:58 
AnswerRe: filedownloadproblem(ASP) Pin
T M Gray12-Feb-10 7:38
T M Gray12-Feb-10 7:38 
QuestionProblem accessing QueryString [modified] Pin
sduffield10-Feb-10 9:19
sduffield10-Feb-10 9:19 

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.