The latest build of this product (v5.2.0) was released 24 years ago,
which was before this thread was created.
Posted 23 years ago
by testz
- Brazil

I was trying the program and I found some problems.
My ideia was:
<TABLE Border=1>
<TD>
<INPUT Type="submit" Name="client" Value="<%=oRs.Fields.Item("client")%>">
</TD>
</TABLE>
It worked fine, but because "client" inside Value, nothing was showed in Design Time.
Then, I drop the ", this way:
<%Dim _client_
_client_="client"%>
<TABLE Border=1>
<TD>
<INPUT Type="submit" Name="client" Value="<%=oRs.Fields.Item(_client_)%>">
</TD>
</TABLE>
This time, Design Time is Ok, but the INPUTs attribute Value was blank, and sometimes, when I change something in Design Time, my Value desapear.
Am I doing something wrong??
My ideia was:
<TABLE Border=1>
<TD>
<INPUT Type="submit" Name="client" Value="<%=oRs.Fields.Item("client")%>">
</TD>
</TABLE>
It worked fine, but because "client" inside Value, nothing was showed in Design Time.
Then, I drop the ", this way:
<%Dim _client_
_client_="client"%>
<TABLE Border=1>
<TD>
<INPUT Type="submit" Name="client" Value="<%=oRs.Fields.Item(_client_)%>">
</TD>
</TABLE>
This time, Design Time is Ok, but the INPUTs attribute Value was blank, and sometimes, when I change something in Design Time, my Value desapear.
Am I doing something wrong??