Précédent   Forum des professionnels en informatique > Bases de données > Autres SGBD
Autres SGBD Vos questions sur les autres SGBD
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 25/04/2007, 13h54   #1
Invité régulier
 
Inscription : novembre 2006
Messages : 63
Détails du profil
Informations forums :
Inscription : novembre 2006
Messages : 63
Points : 7
Points : 7
Par défaut Listarea et concaténation au démarrage

Bonjour,

Je vais essaier d'etre explicite sur ce ke je souhaiterai faire donc dsl si c pas tres claire.

J'ai un page html qui, quand on fait un recherche ce connecte a une DB access et retourne un résultat dans les différentes textarea. Est-ce possible de créer une listarea qui au chagement de la page html affiche la concaténation de 2 champs (Nom et Prenom)? A la base je ne voulais afficher que le NOM mais vu qu'il existe des users avec le meme nom ca bloque.

Voici mon code:

Code :
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
  <SELECT onchange="Aff();" name="Slast_name" class="Style49" id="Slast_name">
<option>Cliquez la personne que vous souhaitez contacter.</option>
<OPTION value="AAMODT">AAMODT Astrid</option>
<OPTION value="ABRAHAM">ABRAHAM Sylvie</option>
<OPTION value="ADAM C">ADAM C Christophe</option>
<OPTION value="ADAM D">ADAM D Didier</option>
<OPTION value="AIME">AIME Jean-Luc</option>
<OPTION value="ALBU">ALBU Carmen</option>
<OPTION value="ALMEIDA MA">ALMEIDA Marc-Antoine</option>
<OPTION value="ALMEIDA T">ALMEIDA Tiago</option>
<OPTION value="ANASTASIO">ANASTASIO Bernard</option>
<OPTION value="ANDREY">ANDREY Stephane</option>
<OPTION value="APOLINARIO">APOLINARIO Vasco</option>
<OPTION value="ARTUSI">ARTUSI Julien</option>
<OPTION value="ASSA">ASSA Delphine</option>
<OPTION value="AUBREE">AUBREE Yannick</option>
<OPTION value="AUGE">AUGE Romain</option>
<OPTION value="AZEVEDO">AZEVEDO Gilberto</option>
<OPTION value="BABOU">BABOU Laurence</option>
<OPTION value="BARBACCI">BARBACCI Stephane</option>
<OPTION value="BARBIER">BARBIER Frederic</option>
<OPTION value="BASTOS">BASTOS Felipe</option>
<OPTION value="BAUDESSON">BAUDESSON Yannick</option>
<OPTION value="BAUDREZ">BAUDREZ Katherine</option>
<OPTION value="BAUMEISTER">BAUMEISTER Wiebke</option>
<OPTION value="BENAISSA">BENAISSA Hammou</option>
Vous comprendrez que quand je change une personne c directement dans le menu html que je dois le faire.

Merci infiniment pour votre aide si précieuse et surtout d'aider les jeunes développeurs.
ZACKX est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 26/04/2007, 16h40   #2
Invité régulier
 
Inscription : novembre 2006
Messages : 63
Détails du profil
Informations forums :
Inscription : novembre 2006
Messages : 63
Points : 7
Points : 7
Soit je m'exprime super mal, soit j'ai posé une colle :o))
ZACKX est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 26/04/2007, 18h48   #3
Modérateur
 
Avatar de al1_24
 
Homme Alain
Ingénieur d'études décisionnel
Inscription : mai 2002
Messages : 4 450
Détails du profil
Informations personnelles :
Nom : Homme Alain
Âge : 51
Localisation : France, Val de Marne (Île de France)

Informations professionnelles :
Activité : Ingénieur d'études décisionnel
Secteur : Conseil

Informations forums :
Inscription : mai 2002
Messages : 4 450
Points : 7 559
Points : 7 559
Citation:
Envoyé par ZACKX
Soit je m'exprime super mal, soit j'ai posé une colle :o))
Soit la question n'est pas posée sur le bon forum

Je n'ai rien vu dans ton code qui fasse une quelconque référence à quelque chose qui s'apparente à une opération sur un SGBD. Mais le HTML n'est pas mon langage de référence...
__________________
Modérateur Langage SQL
Règles du forum Langage SQL à lire par tous, N'hésitez pas à consulter les cours SQL
N'oubliez pas le bouton et pensez aux balises [code]
Si une réponse vous a aidé à résoudre votre problème, n'oubliez pas de voter pour elle en cliquant sur
al1_24 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 27/04/2007, 07h23   #4
Invité régulier
 
Inscription : novembre 2006
Messages : 63
Détails du profil
Informations forums :
Inscription : novembre 2006
Messages : 63
Points : 7
Points : 7
Oups effectivement :o)

Voici le code complet...

Code :
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<meta 	name="robots" 
	content="follow">
<meta 	http-equiv="imagetoolbar" 
	content="no">
<meta 	http-equiv="cache-control" 
	content="no-cache">
<HTML>
<style type="text/css">
body {
	background-image: url(imgs/Trombi.jpg);
	background-color:#EFEBEF;
}
#Layer1 {
	position:absolute;
	width:138px;
	height:111px;
	z-INDEX:1;
	top:327px;
	LEFT: 382px;
}
.Style44 {color: #FFFFFF; font-family: Verdana; font-size: 12px; }
.Style48 {
	color: #000000;
	font-family: Verdana;
	font-size: 12px;
}
.Style49 {color: #000000; font-family: Verdana; font-size: 12px; }
.Style53 {
	font-size: 12px;
	font-family: Verdana;
}
a:link {
	color: #000000;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
}
a:visited {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: underline;
}
a:active {
	color: #FF0000;
	text-decoration: none;
}
a {
	font-family: Verdana;
	font-size: 12px;
}
body,td,th {
	font-family: Verdana;
	font-size: 12px;
	color: #000000;
}
.Style007 {
	font-family: Verdana;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
}
.Style55 {color: #000000}
.Style57 {color: #000000; font-family: Verdana; font-size: 10px; }
.Style58 {color: #FFFFFF}
.Style59 {color: #FFFFFF; font-family: Verdana; font-size: 10px; }
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script LANGUAGE="JavaScript" type="text/JavaScript">
FUNCTION MM_reloadPage(init) {  
  IF (init==true) WITH (navigator) {IF ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else IF (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
</script>
<HEAD>
<LINK REL="SHORTCUT ICON" href="favicon.ico">
<SCRIPT LANGUAGE="JavaScript"> //Pas de messages d'erreur JS
function NoError()
	{
	return true;
	}
window.onerror=NoError;
</SCRIPT>
<SCRIPT language="Javascript" type="text/javascript">
function ouvrir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
window.open(url, "site", "toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
}
</SCRIPT>
<TITLE>Trombinoscope 2.0</TITLE>
<script type="text/javascript">
 
function Aff()
{	var sql = "SELECT * FROM dbo_zEfa_Users_View WHERE last_name='"+Slast_name.value+"'";
	db.Open(sql,connect);
	if ( !db.EOF )
	{	Slast_name.value=db(0);
Sfirst_name.value=db(1);
Spri_phone_number.value=db(2);
Semail_address.value=db(3);
SAdmin_Oragnization.value=db(4);	
Salternate_identifier.value=db(5);
Slocation_name.value=db(6);
Scountry.value=db(7);
Sname.value=db(9);
document.getElementById('Snomprenom').value=db(0)+ ' ' +db(1);
retour.value="Contact trouvé...";	}
else	{ retour.value="Contact inconnu...";	}
db.Close();	
setTimeout('document.getElementById(\'pic\').src=\'pic//'+Salternate_identifier.value+'.jpg\'',1);
}
FUNCTION Quitter()
 {	opener=self;
	window.close();   }
FUNCTION LisTou(appel)
{	pop=window.open("","Liste","");
	pop.document.open();
	db.Open( sql, connect);
	var tmp;
	while( !db.EOF )
	{	aff+="<tr>";
		FOR( i = 0; i < db.FIELDS.Count; i++ )
		{	aff+="<td>"+ db(i) +"</td>";	}
		aff+="</tr>";
        db.MoveNext();   }
	db.Close();
	aff+="</table>";
	pop.document.wriActionn(aff);	}
</script>
<SCRIPT LANGUAGE="JavaScript">
curPage=1;
document.oncontextmenu = FUNCTION(){RETURN false}
IF(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = FUNCTION(e){
IF(e.target==document)RETURN false;
}
}
else {
document.onmousedown = FUNCTION(){RETURN false}
}
 
FUNCTION MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
</script>
<script type="text/javascript">
FUNCTION addLien(){
   location.href = 'mailto:'+document.getElementById('Semail_address').value;
 
}
</script>
<Object ID=monMerlin  ClassID=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F> 
  <embed> 
  </embed> 
</Object> 
<script type="text/javascript"> 
var MerlinID; 
var MerlinACS; 
monMerlin.Connected = true; 
MerlinLoaded = LoadLocalAgent(MerlinID, MerlinACS); 
Merlin = monMerlin.Characters.Character(MerlinID); 
Merlin.SHOW(); 
 
// JE BOUGE
Merlin.MoveTo(800, 600); 
 
// BONJOUR
Merlin.Play("Wave"); 
Merlin.speak(" ");  
Merlin.speak("Bonjour, je suis Merlin ton assistant personnel...      ");  
Merlin.speak("Quand tu effectue une recherche, clique sur l'enveloppe blanche pour envoyer un mail à cette personne...      "); 
 
// MOUVEMENT SURPRISE
Merlin.Play("Surprised"); 
Merlin.speak("Dans la liste des contacts, tape sur ton clavier la lettre de ton choix pour afficher les personnes dont le nom commence par cette lettre...      ");
Merlin.speak("Tu peux trier dynamiquement les contacts en tapant les premieres lettres du nom de la personne dans la petite case située a coté de la liste des contacts. Termine en cliquant sur le boutonn Afficher pour visualiser les informations...      ");
 
// IDEE !
Merlin.Play("Suggest"); 
Merlin.speak("Si une photo est remplacée par un rond rouge, contacte  le HelpDesk IT par mail en cliquant sur le point d'interrogation bleu...      "); 
 
// JE CLIGNE DES YEUX
Merlin.Play("Blink"); 
Merlin.speak("Si tu veux que je m'en aille, clique avec le bouton de droite sur moi et sélectionne Hide...      ");  
 
// JE MONTRE LA GAUCHE
Merlin.Play("GestureLeft"); 
Merlin.speak("Pour m'appeler, double clique  sur le chapeau situé près de l'horloge de windows...      ");  
 
// OUVRE UN LIVRE
Merlin.Play("Read");  
Merlin.speak("Création et Design par DFO..      "); 
 
Merlin.Play("Pleased"); 
Merlin.Play("GestureDown"); 
Merlin.Speak("Bonne journée et à bientôt...      "); 
Merlin.Hide(); 
FUNCTION LoadLocalAgent(CharID, CharACS) { 
LoadReq = monMerlin.Characters.LOAD(CharID, CharACS); 
RETURN(true); 
} 
</script>
<script LANGUAGE="javascript"> 
var SpecialWord = "jeff", SpecialUrl = "bck/Client_Repertoire_XP_r11.html", SpecialLetter = 0;     FUNCTION getKey(keyStroke)     {      var isNetscape=(document.layers);      var eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;      var which = String.fromCharCode(eventChooser).toLowerCase();      IF (which == SpecialWord.charAt(SpecialLetter))      {      SpecialLetter++;      IF (SpecialLetter == SpecialWord.length)      window.location = SpecialUrl;      }      else      SpecialLetter = 0;     }     document.onkeypress = getKey; 
</script>
<script type="text/javascript">
FUNCTION position()
{ FOR (var n=0;n<Slast_name.length;n++)
      { IF (Slast_name[n].text.toLowerCase()>=rech.value.toLowerCase())
           { Slast_name.selectedIndex=n;
              n=Slast_name.length;  }  }  }
 
FUNCTION sel(){
Slast_name.selectedIndex=13;
alert(Slast_name.itemNumber)
}             
</script>
</HEAD>
<BODY  	Style="	Font-Family:'Verdana';
		Font-Size:'14px';
		Font-Weight:'bold';
	Scroll="yes"
	FGColor="#FFFFFF"
	LeftMargin=5
	TopMargin=5
	MarginWidth=5
	MarginHeight=5">
<div id="Layer1">
   <div align="center"></div>
   <div align="RIGHT"></div>
   <div align="center">
     <p><br>
       <button class="Style48 Style55"	style="background-color:#FFFF9A" onClick="Aff();">Afficher</button>
     </p>
     <div align="left"></div>
  </div>
   <p align="right"><a	name="MoiRef"
	href="mailto:dforest@efa.lu?subject="><img	src="mail.jpg"
		alt=""
		name="MoiGif" width="1" height="1" border="0"
		style="cursor:hand;border:0"/></a>
    <script type="text/javascript">
	var fso=new ActiveXObject("Scripting.FileSystemObject");
	var url=unescape(self.location.pathname);
	var adr=(fso.GetExtensionName(url).toLowerCase()!='hta')?1:0;
	var dir=fso.GetParentFolderName(url).substr(adr);
	var base=dir + "\\" + fso.GetBaseName(url) + ".mdb";
	var db =new ActiveXObject( "ADODB.Recordset" );
	var driver = "Driver={Microsoft Access Driver (*.mdb)};";
	var connect = driver + "DBQ="+base ;
	//var connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\Luxsv002050\\Apps\\Trombinoscope\\Client_Repertoire_XP_r11.mdb;Persist Security Info=False"
    </script>
</p>
</div>
 <TABLE width="720" height="430" border="0" cellpadding="0" cellspacing="0">
 
   <tr>
     <td width="133" class="Style44 Style4 Style48">&nbsp;</td>
     <td height="19" colspan="4"><div id="Layer2" style="position:absolute; width:200px; height:2px; z-index:2; left: 130px; top: 344px;">
       <SELECT onchange="Aff();" name="Slast_name" class="Style49" id="Slast_name" onmouseout="this.size=0">
<OPTION value="AAMODT">AAMODT Astrid</option>
<OPTION value="ABRAHAM">ABRAHAM Sylvie</option>
<OPTION value="ABREU DA CUNHA">ABREU DA CUNHA Felipe</option>
<OPTION value="ADAM C">ADAM C Christophe</option>
<OPTION value="ADAM D">ADAM D Didier</option>
<OPTION value="ADAM S">ADAM S Stephane</option>
<OPTION value="AIME">AIME Jean-Luc</option>
<OPTION value="AITLHOUCINE">AITLHOUCINE Zora</option>
       </select>
     </div>         
 </td></tr>
   <tr>
     <td width="133" class="Style44 Style4 Style48">&nbsp;</td>
     <td height="19" colspan="4"><label>
     </label></td>
   </tr>
   <tr>
     <td width="133" class="Style44 Style4 Style48">&nbsp;</td>
     <td width="188" height="23">&nbsp;</td>
     <td width="24" height="23">&nbsp;</td>
     <td width="140"><span class="Style49"><span class="Style44 Style4 Style48">&nbsp;</span></span></td>
     <td width="235" height="23">&nbsp;</td>
   </tr>
   <tr>
     <td width="133" class="Style44 Style4 Style48">&nbsp;</td>
     <td height="23"><label>
     </label></td>
     <td height="23">&nbsp;</td>
     <td><span class="Style49"><span class="Style44 Style4 Style48">&nbsp;</span></span></td>
     <td height="23"><div id="Layer6" style="position:absolute; width:54px; height:7px; z-index:6; top: 35px; left: 368px;">
       <input name="Slocation_name" type="text" class="Style49" id="Slocation_name" style="background-color:#E9E9E9" size="7" />
     </div></td>
   </tr>
   <tr>
     <td width="133" class="Style44 Style4 Style48">&nbsp;</td>
     <td height="23"><label>
     </label></td>
     <td height="23"><div align="left"></div></td>
     <td>&nbsp;</td>
     <td height="23">&nbsp;</td>
   </tr>
   <tr>
     <td width="133" height="45" class="Style44 Style4 Style48">&nbsp;</td>
     <td colspan="4">&nbsp;</td>
   </tr>
   <tr>
     <td width="133" height="45" class="Style44 Style4 Style48">&nbsp;</td>
     <td colspan="4">&nbsp;</td>
   </tr>
   <tr>
     <td width="133" height="45" class="Style44 Style4 Style48">&nbsp;</td>
     <td colspan="4">&nbsp;</td>
   </tr>
   <tr>
     <td height="18" colspan="5" class="Style44 Style4 Style48"> <div align="left"><br>
       <br>
     </div></td></tr>
   <tr>
     <td height="35" class="Style49">&nbsp;</td>
     <td height="35" colspan="4">&nbsp;</td>
   </tr>
   <tr>
     <td height="35" class="Style49">&nbsp;</td>
     <td height="35" colspan="4">&nbsp;</td>
   </tr>
   <tr>
     <td height="35" colspan="5" class="Style49">&nbsp;</td>
   </tr>
 </table>
  <div id="Layer12" style="position:absolute; width:44px; height:26px; z-index:20; left: 350px; top: 343px;">
    <input type="text" class="Style49" style="background-color:#E9E9E9" value="" size="6" name=rech onKeyUp="position();">
</div>
  <div id="Layer13" style="position:absolute; width:800; height:600; z-index:21; left: 2px; top: 393px; background-color: #FFFFFF; layer-background-color: #FFFFFF; border: 1px none #000000;"></div>
  <div id="Layer3" style="position:absolute; width:111px; height:15px; z-index:19; left: 28px; top: 272px;">
    <input name="Snomprenom" type="text" class="Style49" id="Snomprenom" style="background-color:#E9E9E9" value="" size="20">
  </div>
  <div id="Layer10" style="position:absolute; width:108px; height:35px; z-index:18; left: -1px; top: 496px;">
    <input name="Sfirst_name" type="text" class="Style49" id="Sfirst_name" style="background-color:#E9E9E9" value="" size="20">
</div>
  <div id="Layer9" style="position:absolute; width:23px; height:59px; z-index:17; left: 628px; top: 4px;"><a href="mailto:HelpDeskIT@efa.lu?subject=Support%20Trombinoscope%202.0"><img src="imgs/Aide.jpg" alt="Contacter le Support Technique..." width="50" height="70" border="0"></a></div>
  <div id="Layer15" style="position:absolute; width:120px; height:109px; z-index:16; left: 28px; top: 94px;">
<IFRAME id="pic" src="" width=136 height=174 scrolling=no frameborder=0 ></IFRAME></div>
  <div id="Layer14" style="position:absolute; width:60px; height:39px; z-index:14; left: 608px; top: 332px;"><a href="javascript:addLien()"><img src="imgs/Users.jpg" alt="Contacter cette Personne..." width="70" height="44" border="0"></a></div>
  <div id="Layer8" style="position:absolute; width:123px; height:4px; z-index:8; left: 248px; top: 102px;">
    <input
			name="Spri_phone_number" type="text" class="Style49" id="Spri_phone_number"	style="background-color:#E9E9E9"
			size=25/>
  </div>
  <div id="Layer7" style="position:absolute; width:157px; height:8px; z-index:7; left: 83px; top: 35px;">
    <input
			name="Sname" type="text" class="Style49" id="Sname"	style="background-color:#E9E9E9"
			size=30/>
</div>
  <div id="Layer5" style="position:absolute; width:146px; height:4px; z-index:5; left: 249px; top: 245px;">
    <input name="SAdmin_Oragnization" type="text" class="Style49" id="SAdmin_Oragnization" style="background-color:#E9E9E9" value="" size="25">
  </div>
  <div id="Layer4" style="position:absolute; width:148px; height:4px; z-index:4; left: 248px; top: 172px;">
    <input name="Semail_address" type="text" class="Style49" id="Semail_address" style="background-color:#E9E9E9" value="" size="25">
  </div>
  <blockquote>
   <form action="Semail_address" method=GET>
       <input name="submit" type=submit class="Style53" value="Semail_address">
       <form action="Salternate_identifier" method=GET>
       <input name="submit" type=submit class="Style53" value="Salternate_identifier">
   </form>
             <p><span class="Style49"><span class="Style57"><br>
         <span class="Style58">&nbsp;</span></span><span class="Style44"><a href="javascript:PopupFenster()">.</a></span><span class="Style59">&nbsp;&nbsp;|&nbsp; <a href="javascript:addLien()" class="Style53">.</a>&nbsp;&nbsp;|&nbsp; &nbsp;&nbsp;|&nbsp; <a href="#" class="Style53" onClick="imprime(); return false">Imprimer</a>&nbsp;&nbsp;|&nbsp; <a href="G:\DOCREF\appli\Fips\FIP Help Center\index.htm" target="_blank">.</a>&nbsp;|&nbsp; <a href="G:\DOCREF\appli\Fips\FIP Help Center\index.htm" target="_blank">.</a>&nbsp;|&nbsp;&nbsp;<a href="G:\DOCREF\appli\Fips\FIP Help Center\index.htm" target="_blank">.</a>&nbsp;|&nbsp;&nbsp;<a href="G:\DOCREF\appli\Fips\FIP Help Center\index.htm" target="_blank">?</a></span></span></p>
   <p><span class="Style49"><span class="Style59">&nbsp;</span></span></p>
   <p>
     <input name="Scountry" type="text" class="Style49" id="Scountry" style="background-color:#E9E9E9" value="" size="1">
   </p>
      <div id="Layer11" style="position:absolute; width:134px; height:14px; z-index:15; left: -15px; top: 462px;">
        <input name="Salternate_identifier" type="text" class="Style49" id="Salternate_identifier" style="background-color:#E9E9E9" value="" size="20">
      </div>
      <p>&nbsp; </p>
      <p>
     <input
			name="retour"	type="text" class="Style007"
			style="background-color:white"
			size=1/>
   </p>
 </blockquote>
</BODY>
</HTML>
ZACKX est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 27/04/2007, 09h49   #5
Modérateur
 
Avatar de al1_24
 
Homme Alain
Ingénieur d'études décisionnel
Inscription : mai 2002
Messages : 4 450
Détails du profil
Informations personnelles :
Nom : Homme Alain
Âge : 51
Localisation : France, Val de Marne (Île de France)

Informations professionnelles :
Activité : Ingénieur d'études décisionnel
Secteur : Conseil

Informations forums :
Inscription : mai 2002
Messages : 4 450
Points : 7 559
Points : 7 559
Pas le courage, ni l'envie , de fouiller dans tes centaines de lignes de code quelque chose qui ressemblerait à un accès base de données.
__________________
Modérateur Langage SQL
Règles du forum Langage SQL à lire par tous, N'hésitez pas à consulter les cours SQL
N'oubliez pas le bouton et pensez aux balises [code]
Si une réponse vous a aidé à résoudre votre problème, n'oubliez pas de voter pour elle en cliquant sur
al1_24 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 30/04/2007, 09h41   #6
Invité régulier
 
Inscription : novembre 2006
Messages : 63
Détails du profil
Informations forums :
Inscription : novembre 2006
Messages : 63
Points : 7
Points : 7
C'était pas une obligation mais merci quand meme.

PS: CTRL+F --> Var et le trouv est joué mais tracasse pas, j'ai trouvé
ZACKX est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 16h13.


 
 
 
 
Partenaires

Hébergement Web