There are lots of advantages in using IIS Application verses the ASP/MTS-COM. However I want to know how to use the equivalent of:
<INPUT type=text name=txtData value="<%=sData%>"> technique.
This works fine in "standard ASP" where txtData can be set from sData defined in the ASP script. But there doesn't seem to be an equivalent method you can use to set the value of an INPUT tag from the IIS App DSR code.
Specifically you cannot use <WC@txtData>data</WC@txtData> to define values within the INPUT tag. That is:
<INPUT type=text name=txtData value=<WC@txtData>xxx</WC@txtData>>
is not valid.
If anyone understands this "problem" please advise on how to set data values to an "INPUT type=text" tag from VB DSR code (not using VB script inside the ASP/HTM page).
<INPUT type=text name=txtData value="<%=sData%>"> technique.
This works fine in "standard ASP" where txtData can be set from sData defined in the ASP script. But there doesn't seem to be an equivalent method you can use to set the value of an INPUT tag from the IIS App DSR code.
Specifically you cannot use <WC@txtData>data</WC@txtData> to define values within the INPUT tag. That is:
<INPUT type=text name=txtData value=<WC@txtData>xxx</WC@txtData>>
is not valid.
If anyone understands this "problem" please advise on how to set data values to an "INPUT type=text" tag from VB DSR code (not using VB script inside the ASP/HTM page).