Bonjour,
j'ai un problème graphique avec les tableau :
si je met dans un tableau des boutons les cases s'aggrandissent toutes seules...
Peux t'on empecher cela?
j'ai voulu utiliser des boutons dans le tableau pour éviter d'envoyer le code dans la barre d'adresse
voici le code source de mon tableau, je ne trouve pas le problème (c'est peut être à cause du champ caché?) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 </table> <table width="858" align="center" border="1"> <tr> <td width="130" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=rd"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a>référence</a><a href="default.asp?tri=rc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td> <td width="182" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=ld"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a> libellé</a><a href="default.asp?tri=lc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td> <td width="120" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=cd"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a>catégorie</a><a href="default.asp?tri=cc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td> <td width="88" bgcolor="#00FF00"><div align="center"><a href="default.asp?tri=pd"><img src="../../Images/flecheb.bmp" width="15" height="14" border="0"></a>prix</a><a href="default.asp?tri=pc"><img src="../../Images/flecheh.bmp" width="15" height="14" border="0"></a></div></td> <td width="48" bgcolor="#00FF00"><div align="center">détail</div></td> <%if session("ident")="ADMIN" then%> <td colspan="2" bgcolor="#00FF00"><div align="center">edition</div></td> <%end if%> </tr> <%if rs.recordcount>0 then rs.movefirst while not rs.eof%> <tr> <td><div align="center"><%=rs("code_art")%></div></td> <td><div align="center"><%=rs("lib_art")%></div></td> <td><div align="center"><%=rs("code_cat")%></div></td> <td><div align="center"><%=rs("prix")%></div></td> <td><div align="center"><a href="detail.asp?ref=<%=rs("code_art")%>">VOIR</a></div></td> <%if session("ident")="ADMIN" then%> <td width="113"><div align="center"> <form name="form2" method="post" action="Modification/modif.asp"> <input type="hidden" name="code" value="<%=rs("code_art")%>"> <input type="submit" name="Submit2" value="Modification"> </form> </div></td> <td width="131"><div align="center"> <form name="form3" method="post" action="Suppresion/suppr.asp"> <input type="hidden" name="code" value="<%=rs("code_art")%>"> <input type="submit" name="Submit3" value="Suppression"> </form> </div></td> <%end if%> </tr> <% rs.movenext wend rs.close connecteur.close set rs = nothing set connecteur = nothing %> </table>
de même pour éviter d'envoyer le code dans la barre d'adresse à la page d'erreur j'ai voulu utiliserla fonction pour aller à la page précédente mais internet explorer m'affiche le message suivant :
Avertissement : expiration du délai pour cette page La page requise a été créée en utilisant les informations fournies dans un formulaire. Cette page n'est plus disponible. Par sécurité, Internet Explorer ne renvoie pas automatiquement les informations vous concernant.
Pour envoyer vos informations à nouveau et afficher cette page Web, cliquez sur le bouton Actualiser.
c'est assez gênant... avec mozilla cela ne le fait pas, y a t'il un moyen d'empêcher cela?
Merci de votre aide
Partager