Click here to Skip to main content
16,003,404 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: javascript converturl () - help with this function Pin
treeeen29-Jan-10 9:04
treeeen29-Jan-10 9:04 
GeneralRe: javascript converturl () - help with this function Pin
daveyerwin30-Jan-10 3:40
daveyerwin30-Jan-10 3:40 
QuestionHow to read client serial port from WebApplication Pin
Member 439056925-Jan-10 5:50
Member 439056925-Jan-10 5:50 
AnswerRe: How to read client serial port from WebApplication Pin
satwika.g17-Feb-10 10:47
satwika.g17-Feb-10 10:47 
AnswerRe: How to read client serial port from WebApplication Pin
mano_meee3-Oct-10 0:29
mano_meee3-Oct-10 0:29 
Questionretrieve scanned document Pin
Yosh_25-Jan-10 1:04
professionalYosh_25-Jan-10 1:04 
AnswerRe: retrieve scanned document Pin
David Mujica25-Jan-10 2:57
David Mujica25-Jan-10 2:57 
AnswerRe: retrieve scanned document Pin
JHizzle25-Jan-10 4:08
JHizzle25-Jan-10 4:08 
QuestionVisual Studio Web Developer 2008 Pin
Roy Shoa24-Jan-10 1:12
Roy Shoa24-Jan-10 1:12 
QuestionConvertor Pin
mehrdadc4823-Jan-10 3:38
mehrdadc4823-Jan-10 3:38 
Questionlisten/watch video in asp Pin
rajiv_kadam23-Jan-10 1:42
rajiv_kadam23-Jan-10 1:42 
AnswerRe: listen/watch video in asp Pin
flyinpc24-Feb-10 19:42
flyinpc24-Feb-10 19:42 
QuestionIs there anybody could tell me how to read data from client serial port by HTML Pin
WebMaster22-Jan-10 18:51
WebMaster22-Jan-10 18:51 
QuestionJavascript,calling child window function from opener doesn't work Pin
keniagm22-Jan-10 3:20
keniagm22-Jan-10 3:20 
AnswerRe: Javascript,calling child window function from opener doesn't work [modified] Pin
daveyerwin22-Jan-10 4:27
daveyerwin22-Jan-10 4:27 
GeneralRe: Javascript,calling child window function from opener doesn't work Pin
keniagm22-Jan-10 7:29
keniagm22-Jan-10 7:29 
GeneralRe: Javascript,calling child window function from opener doesn't work Pin
daveyerwin22-Jan-10 9:31
daveyerwin22-Jan-10 9:31 
GeneralRe: Javascript,calling child window function from opener doesn't work Pin
keniagm22-Jan-10 11:20
keniagm22-Jan-10 11:20 
GeneralRe: Javascript,calling child window function from opener doesn't work Pin
daveyerwin8-Feb-10 3:44
daveyerwin8-Feb-10 3:44 
Questionjavascript slideshow using asp Pin
rajiv_kadam20-Jan-10 23:39
rajiv_kadam20-Jan-10 23:39 
hi this is my code.i want to display images whose path and image name is from database but still i m not getting the slide show working it does not show me the message.any body help me?
<!--#include file="common.asp"-->
<%
OpenDataBase conn
sql="select * from newsimage"
set obj=server.createobject("adodb.recordset")
obj.open sql,conn,1,1
while obj.eof<>true
imagestorotate=imagestorotate & """/pdf/" & obj("imagename") & ""","


obj.movenext
wend
imagestorotate=left(imagestorotate,len(imagestorotate)-1)
'response.write("image pathe is " & imagestorotate & "")

%>
<html>
<head>
<title></title>
<script type="text/javascript">
var image1=new Image();
image1.src=<%=imagestorotate%>;
</script>

</head>
<body>
<img src="<%=imagestorotate%>" name="slide" width=100 height=56 atl="no image for path">
<script type="text/javascript">
<!--
//variable that will increment through the images
var step=1;
function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return;
document.images.slide.src=eval("image" + step + ".src");


if (step < 3)
step++ ;
else
step=1;
//call function "slideit()" every 2.5 seconds
setTimeout("slideit()",2500)
}
slideit()
//-->
</script>


</body>

</html>


image is not changing one by one plz help me for image change
coz my image is coming from database table which has 30 images..
Questiondetect visitor mac address Pin
kennedysee20-Jan-10 17:01
kennedysee20-Jan-10 17:01 
AnswerRe: detect visitor mac address Pin
Graham Breach20-Jan-10 22:51
Graham Breach20-Jan-10 22:51 
QuestionRe: detect visitor mac address Pin
kennedysee21-Jan-10 16:40
kennedysee21-Jan-10 16:40 
AnswerRe: detect visitor mac address Pin
JHizzle27-Jan-10 4:58
JHizzle27-Jan-10 4:58 
QuestionWildcard Pin
MarlinLinger20-Jan-10 10:31
MarlinLinger20-Jan-10 10:31 

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.