
vb passing values to html
<%
...
.. other server side code
.
myVar = "value for foo"
...
..
.
%>
...
.. other html tags defining the form
.
<input name="foo" value='<% =myVar %>'>
...
..
.
--
Michael Harris
Microsoft.MVP.Scripting
Seattle WA US
--
Quote:
> What kind of syntax do I use in a <% VB %> to pass a value to a form field?
> For example in javascript the syntax would be FormName.FieldName.Value =
> Variable
> But how do I do that in VB?
> Thanks in advance!
> MM