The latest build of this product (v5.2.0) was released 23 years ago, which was before this thread was created.
Posted 22 years ago by testz - Brazil
Avatar
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??

Comments (1)

Posted 22 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
ASP is server side code and won't work in design view. If you want to do ASP coding, you must do it in Document Source view.


Actipro Software Support