Problem: When accessed by NetScape Navigator (tested with v4.5), WebVote1.0 would not work when using "ANSWER.ASP". This was caused by the way NetScape interprets HTML, and a omission in the code. Solution: This problem has a simple fix and was a minor over site during the design and testing processes. Step 1: Load answer.asp in notepad. Step 2: Search for the code -
  |   |   | <% response.write "" & chr(64 + cint(mNumber)) & ".   " & rsQuestion("qQuestion") %> |
<% rsQuestion.close set rsQuestion = nothing Step 3: Put a semi-colon at the end of ".   ". Your string should look like ".   ". Your code will look like -
  |   |   | <% response.write "" & chr(64 + cint(mNumber)) & ".   " & rsQuestion("qQuestion") %> |
<% rsQuestion.close set rsQuestion = nothing Step 4: Go to the end of the file and search for the code - connVB.close set connVB = nothing %>