Click here to Skip to main content
15,903,175 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: deployment of website Pin
Not Active20-Feb-10 3:28
mentorNot Active20-Feb-10 3:28 
AnswerRe: deployment of website Pin
The Man from U.N.C.L.E.22-Feb-10 2:34
The Man from U.N.C.L.E.22-Feb-10 2:34 
JokeRe: deployment of website Pin
Not Active22-Feb-10 3:22
mentorNot Active22-Feb-10 3:22 
JokeRe: deployment of website Pin
The Man from U.N.C.L.E.22-Feb-10 22:51
The Man from U.N.C.L.E.22-Feb-10 22:51 
QuestionCommand Line Executables Pin
EvanSaunders19-Feb-10 1:51
EvanSaunders19-Feb-10 1:51 
QuestionExternal data Pin
jamesbrowne18-Feb-10 8:39
jamesbrowne18-Feb-10 8:39 
AnswerRe: External data Pin
Not Active18-Feb-10 8:49
mentorNot Active18-Feb-10 8:49 
AnswerRe: External data Pin
R. Giskard Reventlov19-Feb-10 4:35
R. Giskard Reventlov19-Feb-10 4:35 
QuestionNeed to stress test IIS 7 how to do that progmatically? Pin
DeepToot18-Feb-10 4:00
DeepToot18-Feb-10 4:00 
AnswerRe: Need to stress test IIS 7 how to do that progmatically? Pin
Not Active18-Feb-10 7:11
mentorNot Active18-Feb-10 7:11 
Questioninnerjoin problem in sql query Pin
rajiv_kadam17-Feb-10 21:21
rajiv_kadam17-Feb-10 21:21 
AnswerRe: innerjoin problem in sql query Pin
thatraja18-Feb-10 5:52
professionalthatraja18-Feb-10 5:52 
QuestionDisplay error message via dynamic jQuery popup? Pin
Goalie3517-Feb-10 11:00
Goalie3517-Feb-10 11:00 
AnswerRe: Display error message via dynamic jQuery popup? Pin
Pranay Rana17-Feb-10 20:42
professionalPranay Rana17-Feb-10 20:42 
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 
my images are not displayed in slideshow and images are fetched from database and path is also right but stilll images are not displayed please help me



<!--#include file="common.asp"-->
<html><head></head><body onLoad="scrolls()">
<%
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") & ""","
'c=c+1
obj2.movenext
wend
path=left(path,len(path)-1)
%>

<img src="" name="rotateimg"></img>
<script language="JavaScript">
arrs=new Array(<%=path%>);
counter=0;
arrslength=arrs.length;
function scrolls()
{
if(document.rotateimg.complete)
{
counter++;
if(counter==arrslength)
{
counter=0;
}
document.rotateimg.src=arrs[counter];
setTimeout("scrolls()",6000);
}
}

</script>
</body>
</html>
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 
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 

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.