I've just finished testing my code on one machine and have moved my files across to another server.
I have a field in a table (just added and populated) called MonthDay.
Its populated earlier and If I assign the value as in MonthDay = "D" if shows up correctly but the one from the file doesn't even though response.write it 1) after assignment and 2) just before the button.. prints to the screen correctly (either D or M)
The code in Q is...
<td align = "Left"><input type="radio" name="MonthDay" value="D"<% if MonthDay = "D" then Response.Write " Checked" %>><span class="menutext">Days</span>
<input type="radio" name="MonthDay" value="M"<% if MonthDay = "M" then Response.Write " Checked" %>><span class="menutext">Months</span></td>
any ideas? tips? pointers?
Thanks
I have a field in a table (just added and populated) called MonthDay.
Its populated earlier and If I assign the value as in MonthDay = "D" if shows up correctly but the one from the file doesn't even though response.write it 1) after assignment and 2) just before the button.. prints to the screen correctly (either D or M)
The code in Q is...
<td align = "Left"><input type="radio" name="MonthDay" value="D"<% if MonthDay = "D" then Response.Write " Checked" %>><span class="menutext">Days</span>
<input type="radio" name="MonthDay" value="M"<% if MonthDay = "M" then Response.Write " Checked" %>><span class="menutext">Months</span></td>
any ideas? tips? pointers?
Thanks