La cosa strana è che riesco a stampare <%=rs_pm("PM_TESTO")%> prima di "ingabbiarlo" nella variabile pm_testo

pagina 1


codice:
'seleziono i messaggi privati
rs_pm_sql = "SELECT * FROM PRIVATE_MESSAGE WHERE PM_ID=" & pm_id
set rs_pm = oConn.Execute(rs_pm_sql)
<form action="form_rispondi_pm.asp" name="pmForm" method="post">
<table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr> 
<td width="18%">autore</td>
<td width="49%">messaggio</td>
</tr>
<tr> 
<td><%=rs_pm("PM_MITTENTE_NOME")%></td>
<td><%=rs_pm("PM_TITOLO")%>

<%=rs_pm("PM_TESTO")%></td>
</tr>
<tr bgcolor="#FFFFFF" class="contenuti"> 
<td><%=rs_pm("PM_DATA")%></td>
<td>
<input type="hidden" name="pm_id" value="<%=rs_pm("PM_ID")%>">
<input type="hidden" name="id_mittente_pm" value="<%=rs_pm("PM_MITTENTE_ID")%>">
<input type="hidden" name="nome_mittente_pm" value="<%=rs_pm("PM_MITTENTE_NOME")%>">
<input type="hidden" name="id_dest_pm" value="<%=rs_pm("PM_UT_FK")%>">
<input type="hidden" name="titolo_pm" value="<%=setting(rs_pm("PM_TITOLO"))%>">
<input type="hidden" name="pm_testo" value="<%=rs_pm("PM_TESTO")%>">
<input type="hidden" name="pm_data" value="<%=rs_pm("PM_DATA")%>">
<input type="image" src="<%=path_intranet%>/images/rispondi.gif"> 
<a href="delete_pm.asp?pm_id=<%=pm_id%>">
[img]<%=path_intranet%>/images/cancella.gif[/img]</a></td>
</tr>
</table>
</form>
poi assegno all'HIDDEN il nome di pm_testo e come valore gli do <%=rs_pm("PM_TESTO")%> cioè quello che avevo stampato poco prima