vbscript + dreamweaver - erreur de code - VB/VBA/VBS - Programmation
Marsh Posté le 09-09-2004 à 13:20:01
On ne peut pas avoir le beurre et l'argent du beurre.
Soit on comprend ce qu'on fait et on débuggue, soit on ne comprend pas, on ne debuggue pas et on pleure... Et en tous cas, on ne compte pas sur ceux qui se font chier à comprendre eux...
Bref : dreamweaver = prog ==> WS&R
Marsh Posté le 09-09-2004 à 13:31:35
ok g bien essayé de chercher sur internet une solution a mon problème mais je ne connais pas du tout le vbscript et donc la syntaxe, c'est dream qui me la gère.
c'est pour ca que je ne comprend pas ce type d'erreur
si tu pouvais me mettre sur la voie et me donner une explication plus claire que ton dernier post.
g cherché pendant lontemps mais mes connaissances dans ce domaine sont insuffisantes.
merci
Marsh Posté le 09-09-2004 à 13:15:30
bonjour,
je suis entrain de réaliser sous dreamweaver mx un site dynamique avec une petite base de donnée créée sous Access.
Tout se dérouble bien, je définis une base de donnée, je fais un jeux d'enregistrement et ensuite j'inclut le contenu dynamique dans les divers champs de mon tableau.
J'ai testé avec live date et aussi avec IE, aucune erreur de code ou autre.
Là ou ca devient embêtant c'est lorsque je veux ajouter un comportement de serveur "Déplacer vers l'enregistrement suivant" et "Déplacer vers l'enregistrement précédent" car je veux afficher les résultats sur plusieurs pages (1,2,3 etc).
Dreamweaver m'ajoute donc ce code correspondant mais ensuite lorsque je teste a nouveau avec live data ou IE, l'erreur suivante s'affiche:
Type d'erreur:
Erreur d'exécution Microsoft VBScript (0x800A01A8)
Ojet requis:"
/site/resultat2.asp, line 18
soit ce code :
' set the record count
resultats2_total = resultats2.RecordCount
ce bout de code vient de la ligne 18 et avant que je n'ajoute le comportemement de serveur il n'y était pas...
je vous donne le code complet de la page :
<%@LANGUAGE="VBSCRIPT"%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 3
Repeat1__index = 0
resultats2_numRows = resultats2_numRows + Repeat1__numRows
%>
<%
' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
Dim resultats2_total
Dim resultats2_first
Dim resultats2_last
' set the record count
resultats2_total = resultats2.RecordCount
' set the number of rows displayed on this page
If (resultats2_numRows < 0) Then
resultats2_numRows = resultats2_total
Elseif (resultats2_numRows = 0) Then
resultats2_numRows = 1
End If
' set the first and last displayed record
resultats2_first = 1
resultats2_last = resultats2_first + resultats2_numRows - 1
' if we have the correct record count, check the other stats
If (resultats2_total <> -1) Then
If (resultats2_first > resultats2_total) Then
resultats2_first = resultats2_total
End If
If (resultats2_last > resultats2_total) Then
resultats2_last = resultats2_total
End If
If (resultats2_numRows > resultats2_total) Then
resultats2_numRows = resultats2_total
End If
End If
%>
<%
Dim MM_paramName
%>
<%
' *** Move To Record and Go To Record: declare variables
Dim MM_rs
Dim MM_rsCount
Dim MM_size
Dim MM_uniqueCol
Dim MM_offset
Dim MM_atTotal
Dim MM_paramIsDefined
Dim MM_param
Dim MM_index
Set MM_rs = resultats2
MM_rsCount = resultats2_total
MM_size = resultats2_numRows
MM_uniqueCol = ""
MM_paramName = ""
MM_offset = 0
MM_atTotal = false
MM_paramIsDefined = false
If (MM_paramName <> "" ) Then
MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "" )
End If
%>
<%
' *** Move To Record: handle 'index' or 'offset' parameter
if (Not MM_paramIsDefined And MM_rsCount <> 0) then
' use index parameter if defined, otherwise use offset parameter
MM_param = Request.QueryString("index" )
If (MM_param = "" ) Then
MM_param = Request.QueryString("offset" )
End If
If (MM_param <> "" ) Then
MM_offset = Int(MM_param)
End If
' if we have a record count, check if we are past the end of the recordset
If (MM_rsCount <> -1) Then
If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last
If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If
' move the cursor to the selected record
MM_index = 0
While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
If (MM_rs.EOF) Then
MM_offset = MM_index ' set MM_offset to the last possible record
End If
End If
%>
<%
' *** Move To Record: if we dont know the record count, check the display range
If (MM_rsCount = -1) Then
' walk to the end of the display range for this page
MM_index = MM_offset
While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
' if we walked off the end of the recordset, set MM_rsCount and MM_size
If (MM_rs.EOF) Then
MM_rsCount = MM_index
If (MM_size < 0 Or MM_size > MM_rsCount) Then
MM_size = MM_rsCount
End If
End If
' if we walked off the end, set the offset based on page size
If (MM_rs.EOF And Not MM_paramIsDefined) Then
If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
If ((MM_rsCount Mod MM_size) > 0) Then
MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
Else
MM_offset = MM_rsCount - MM_size
End If
End If
End If
' reset the cursor to the beginning
If (MM_rs.CursorType > 0) Then
MM_rs.MoveFirst
Else
MM_rs.Requery
End If
' move the cursor to the selected record
MM_index = 0
While (Not MM_rs.EOF And MM_index < MM_offset)
MM_rs.MoveNext
MM_index = MM_index + 1
Wend
End If
%>
<%
' *** Move To Record: update recordset stats
' set the first and last displayed record
resultats2_first = MM_offset + 1
resultats2_last = MM_offset + MM_size
If (MM_rsCount <> -1) Then
If (resultats2_first > MM_rsCount) Then
resultats2_first = MM_rsCount
End If
If (resultats2_last > MM_rsCount) Then
resultats2_last = MM_rsCount
End If
End If
' set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
%>
<%
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
Dim MM_keepNone
Dim MM_keepURL
Dim MM_keepForm
Dim MM_keepBoth
Dim MM_removeList
Dim MM_item
Dim MM_nextItem
' create the list of parameters which should not be maintained
MM_removeList = "&index="
If (MM_paramName <> "" ) Then
MM_removeList = MM_removeList & "&" & MM_paramName & "="
End If
MM_keepURL=""
MM_keepForm=""
MM_keepBoth=""
MM_keepNone=""
' add the URL parameters to the MM_keepURL string
For Each MM_item In Request.QueryString
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
End If
Next
' add the Form variables to the MM_keepForm string
For Each MM_item In Request.Form
MM_nextItem = "&" & MM_item & "="
If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
End If
Next
' create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL & MM_keepForm
If (MM_keepBoth <> "" ) Then
MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
End If
If (MM_keepURL <> "" ) Then
MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
End If
If (MM_keepForm <> "" ) Then
MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
End If
' a utility function used for adding additional parameters to these strings
Function MM_joinChar(firstItem)
If (firstItem <> "" ) Then
MM_joinChar = "&"
Else
MM_joinChar = ""
End If
End Function
%>
<%
' *** Move To Record: set the strings for the first, last, next, and previous links
Dim MM_keepMove
Dim MM_moveParam
Dim MM_moveFirst
Dim MM_moveLast
Dim MM_moveNext
Dim MM_movePrev
Dim MM_urlStr
Dim MM_paramList
Dim MM_paramIndex
Dim MM_nextParam
MM_keepMove = MM_keepBoth
MM_moveParam = "index"
' if the page has a repeated region, remove 'offset' from the maintained parameters
If (MM_size > 1) Then
MM_moveParam = "offset"
If (MM_keepMove <> "" ) Then
MM_paramList = Split(MM_keepMove, "&" )
MM_keepMove = ""
For MM_paramIndex = 0 To UBound(MM_paramList)
MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=" ) - 1)
If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
End If
Next
If (MM_keepMove <> "" ) Then
MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
End If
End If
End If
' set the strings for the move to links
If (MM_keepMove <> "" ) Then
MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
End If
MM_urlStr = Request.ServerVariables("URL" ) & "?" & MM_keepMove & MM_moveParam & "="
MM_moveFirst = MM_urlStr & "0"
MM_moveLast = MM_urlStr & "-1"
MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size)
If (MM_offset - MM_size < 0) Then
MM_movePrev = MM_urlStr & "0"
Else
MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
End If
%>
<!--#include file="Connections/connBD.asp" -->
<%
Dim resultats2__MMColParam
resultats2__MMColParam = "1"
If (Request.QueryString("mnuExt2" ) <> "" ) Then
resultats2__MMColParam = Request.QueryString("mnuExt2" )
End If
%>
<%
Dim resultats2
Dim resultats2_numRows
Set resultats2 = Server.CreateObject("ADODB.Recordset" )
resultats2.ActiveConnection = MM_connBD_STRING
resultats2.Source = "SELECT fich_ext, fich_ext_info, fich_ext_type FROM extensions WHERE fich_ext_type = '" + Replace(resultats2__MMColParam, "'", "''" ) + "'"
resultats2.CursorType = 0
resultats2.CursorLocation = 2
resultats2.LockType = 1
resultats2.Open()
resultats2_numRows = 0
%>
<html>
<head>
<title>www.filext.com</title>
<meta name="description" content="Site professionnel de David Vouillamoz, médiamaticien. Présentation de mon portfolio et cv.">
<meta name="author" content="David Vouillamoz">
<meta name="keywords" content="David, Vouillamoz, David Vouillamoz, fichiers, fichiers, format, extension, image, son, video, binaire">
<meta name="description" content="Site traitant des differentes extensions de fichiers que l'on peut trouver sur internet, fonction de recherche par mot cle">
<link rel="stylesheet" type="text/css" href="css/css_externe.css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#" )!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?" ))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
</head>
<body background="images/ar_plan.gif" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="MM_preloadImages('images/boutons/logiciels-over.jpg','images/boutons/liens-over.jpg','images/boutons/contact-over.jpg','images/boutons/accueil-over.jpg')">
<p> <br>
</p>
<table width="591" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="612" valign="top">
<table width="591" height="385" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="74"><img src="images/banniere.jpg" width="592" height="74"></td>
</tr>
<tr>
<td height="26" background="images/sou_ban.jpg"> <table width="591" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" width="109" height="19" valign="middle"><font size="2" face="Arial, Helvetica, sans-serif">[Date]</font></td>
<td align="center" width="121"><font size="2" face="Arial, Helvetica, sans-serif">[Heure]</font></td>
<td align="center" width="115"><font size="2" face="Arial, Helvetica, sans-serif"> </font></td>
<td align="center" width="115"><font size="2" face="Arial, Helvetica, sans-serif">[Chat]</font></td>
<td align="center" width="119"><font size="2" face="Arial, Helvetica, sans-serif"><a href="#">[Forum]</a></font></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="285" valign="top" background="images/ap_cont1.jpg">
<table width="591" height="285" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="130" height="285">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="29" colspan="3"> </td>
</tr>
<tr>
<td width="10" height="17"> </td>
<td height="17" colspan="2" valign="top"><a href="index.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('accueil','','images/boutons/accueil-over.jpg',1)"><img src="images/boutons/accueil.jpg" alt="accueil" name="accueil" width="86" height="17" border="0"></a></td>
</tr>
<tr>
<td height="17"></td>
<td height="17" colspan="2" valign="top"><a href="rech.asp"><img src="images/boutons/recherche-over.jpg" width="87" height="17" border="0"></a></td>
</tr>
<tr>
<td> </td>
<td height="20" colspan="2" valign="top"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('logiciels','','images/boutons/logiciels-over.jpg',1)"><img src="images/boutons/logiciels.jpg" alt="logiciels" name="logiciels" width="87" height="20" border="0"></a></td>
</tr>
<tr>
<td> </td>
<td height="16" colspan="2" valign="top"><a href="liens.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('liens','','images/boutons/liens-over.jpg',1)"><img src="images/boutons/liens.jpg" alt="liens" name="liens" width="88" height="16" border="0"></a></td>
</tr>
<tr>
<td> </td>
<td height="16" colspan="2" valign="top"><a href="contact.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('contact','','images/boutons/contact-over.jpg',1)"><img src="images/boutons/contact.jpg" alt="contact" name="contact" width="88" height="16" border="0"></a></td>
</tr>
<tr>
<td> </td>
<td height="66" colspan="2" valign="top"> </td>
</tr>
<tr>
<td> </td>
<td width="7" height="40" valign="top"> </td>
<td width="112" valign="top"><a href="#"><img src="images/power3d.gif" width="88" height="33" border="0"></a></td>
</tr>
<tr>
<td> </td>
<td height="40" valign="top"> </td>
<td valign="top"><a href="#"><img src="images/otakucity.gif" width="88" height="31" border="0"></a></td>
</tr>
</table></td>
<td width="460" valign="top"> <table width="92%" border="0" cellpadding="0" cellspacing="0">
<tr> </tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<td colspan="3"> Enregistrements à sur </td>
<td><font face="Arial, Helvetica, sans-serif"> </font></td>
</tr>
<tr align="center">
<td><font size="1" face="Arial, Helvetica, sans-serif"><A HREF="<%=MM_movePrev%>">Précédent</A></font></td>
<td><font face="Arial, Helvetica, sans-serif"> </font></td>
<td><font size="1" face="Arial, Helvetica, sans-serif">Suivant</font></td>
<td><font face="Arial, Helvetica, sans-serif"> </font></td>
</tr>
<tr align="center">
<td width="28%"><strong><font size="2" face="Arial, Helvetica, sans-serif">Nom
de l'extension</font></strong></td>
<td width="30%"><strong><font size="2" face="Arial, Helvetica, sans-serif">Info
de l'extension</font></strong></td>
<td width="32%"><strong><font size="2" face="Arial, Helvetica, sans-serif">Type
d'extension</font></strong></td>
<td width="10%"><font face="Arial, Helvetica, sans-serif"> </font></td>
</tr>
<tr align="center">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<%
While ((Repeat1__numRows <> 0) AND (NOT resultats2.EOF))
%>
<tr align="center">
<td><%=(resultats2.Fields.Item("fich_ext" ).Value)%></td>
<td><%=(resultats2.Fields.Item("fich_ext_info" ).Value)%></td>
<td><%=(resultats2.Fields.Item("fich_ext_type" ).Value)%></td>
<td><font size="2" face="Arial, Helvetica, sans-serif">Détail</font></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
resultats2.MoveNext()
Wend
%>
</table></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center" height="24" valign="middle" background="images/ap_bas.jpg"><font size="1" face="Arial, Helvetica, sans-serif">David
Vouillamoz, SAM4 - 2004</font></td>
</tr>
</table>
</body>
</html>
<%
resultats2.Close()
Set resultats2 = Nothing
%>
voila, merci de votre aide