Here is a list from the debug view....
[3936] [netTrace][thread=4] Error [-1:2] opening file: C:\CiTest\web\favicon.ico
[3936] [netTrace][thread=4] Sendfile error 404, Error 404 filename=C:\CiTest\web\favicon.ico
[3936] [netTrace][thread=4] SendError = 404 The page cannot be found : The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. FileRequest=[favicon.ico]
[3936] [netTrace][thread=4] Error [-1:2] opening file: C:\CiTest\web\browsetest_browsequestion_value
[3936] [netTrace][thread=4] Sendfile error 404, Error 404 filename=C:\CiTest\web\browsetest_browsequestion_value
[3936] [netTrace][thread=4] SendError = 404 The page cannot be found : The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. FileRequest=[browsetest_browsequestion_value]
[3936] [netTrace][thread=3] UnSafeHtml (4): Tag not allowed: input
First I'm at a total loss on what and where the favicon.ico is being called from. I also don't know what thre reference to browsetest_browsequestion_value is. I do have browsetest and browsequestion procedures, and the browsequestion is called as a child to browsetest.
I'm also getting the following error in debugview when the index page initially loads. I'm having a hard time find this reference in the templates.
[3936] [netTrace][thread=3] Error [-1:2] opening file: C:\CiTest\web\styles\Custom.Css
[3936] [netTrace][thread=3] Sendfile error 404, Error 404 filename=C:\CiTest\web\styles\Custom.Css
From what I can see most the errors above are not related to my initial problem but the error below is.
[3936] [netTrace][thread=3] UnSafeHtml (4): Tag not allowed: input
With some testing I discovered that I could get the html to show up correctly if I turned unsafe xhtml on and selected the Redactor as the editor. If I removed either would would go back to the text.
I think part of my problem here is that I'm using a text field and I don't really need to do that. I need to be able to generate this html on the fly on a question by question basis and record the results.
I tried using the XHTML tab on the NetWebForm procedure but anything I tried with inputs would break the form. I typed the following into the XHTML text box provided by the template.
I tried closing the input tag this way.
<p>Which three services does a proxy server provide? (Choose three.)</p>
<input type="checkbox" name="answer" value="Answer1"> cached e-mail</input>
I tried closing the input tag this way.
<p>Which three services does a proxy server provide? (Choose three.)</p>
<input type="checkbox" name="answer" value="Answer1"/> cached e-mail
If I remove the input it works just fine. I even figured out how to get the html on the tab, but I could not get the input formatted in a way to make it work. I'm open to a different approach on this I just need a way to make this work.