ASP - Problème de string...
Fermé
calje
Messages postés
83
Date d'inscription
mercredi 21 février 2001
Statut
Membre
Dernière intervention
20 mars 2002
-
15 févr. 2002 à 05:28
Alix - 15 févr. 2002 à 18:06
Alix - 15 févr. 2002 à 18:06
A voir également:
- ASP - Problème de string...
- Eol while scanning string literal ✓ - Forum Python
- E348: no string under cursor - Forum Ubuntu
- Input string was not in a correct format traduction - Forum Virus
- Asp logiciel - Télécharger - Gestion de données
- String index out of range traduction - Forum Python
2 réponses
Il te suffit de remplacer de remplacer dans ton tableau les double-quotes (") par " Le HTML se charge de bien afficher.
Voici un exemple qui marche
<html>
<body>
<%
dim str
str="FILET PARE-PIERRE 48"" POUR L'ETE"
str=Replace(str,"""",""")
%>
<form>
<input type="text" value="<%=str%>">
</form>
</body>
</html>
Voici un exemple qui marche
<html>
<body>
<%
dim str
str="FILET PARE-PIERRE 48"" POUR L'ETE"
str=Replace(str,"""",""")
%>
<form>
<input type="text" value="<%=str%>">
</form>
</body>
</html>