Does ANYBODY know anything about VB6 IIS Applications..??...
IIS App's are similar to ASP except that all the scripting is done by
a VB6 (dll) module on the server instead of "embedded code " within the page...
This technique makes the pages more adaptable to a larger variety of...
Small correction
'i = 1 There is no reason to preset i = 1
for j = 0 to 1 'for two messages you need another iteration
for i = 0 to 2 'The Ubound (ArrayName) = 3 but arrayname(0,3) has no data
write ArrayName (j,i) & " "
next i
write vbCrLf 'Line feed...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.