Date:  11/20/2004 08:51:19 PM Msg ID:  002359
From:  Richard Thread:  002357
Subject:  Re: losing characters
Thanks for your help that corrected the problem happy holidays
 
 
Sent by FoxWeb Support on 11/20/2004 05:20:15 PM:
Attributes of HTML elements must always be quoted.  It's OK if you don't quote numeric values (e.g. cellpadding=2), but you MUST use quotes for all other attributes:
 
<%rr= "this is a test"%>
<input type= "hidden" name="test" value= "<%=rr%>">

FoxWeb Support Team
support@foxweb.com email

Sent by Richard on 11/20/2004 12:37:19 AM:
This is driving me crazy
 
example code
 
 
<%rr= "this is a test"%>
<input type= "hidden" name="test" value= <%=rr%>
 
when I send this to another page  I only gets  this  everything else is missing
 
if I use <% rr= "this+is+a+test"%>  I get the whole string  is there some char or function  I am missing
 
Thanks