I am building a form that has some check boxes static text and dates.
New to ASP.
I can do this to see if the box is checked or not
New to ASP.
I can do this to see if the box is checked or not
Code:
<input name="statuson" type="checkbox" <%If rsone.Fields("statuson").Value =false then Response.Write "unchecked" else Response.Write "checked" End If %> >[\code]
but could I do if the box is checked then get the value of a static field?