Note that there are some explanatory texts on larger screens.

plurals
  1. POTrying to create a form for a ASP web app
    primarykey
    data
    text
    <p>I am creating a ASP Web Application and one of the things I need to do is use the data that the user filled out. There is one text field and multiple radio buttons.</p> <p>I'm new to ASP so I am doing one piece at a time...the text field.</p> <p>I have</p> <pre><code>&lt;form method="post" action="/Scripts/checklistForm.asp"&gt; &lt;%-- TODO: Enter variables into checklistForm.vbs --%&gt; &lt;table&gt; &lt;tr&gt; &lt;td class="label"&gt; FQDN: &lt;/td&gt; &lt;td&gt; &lt;input type="text" name="FQDN" style="width: 250px" /&gt; &lt;/td&gt; &lt;td&gt; &lt;input type="radio" name="TestScript" /&gt;&lt;/td&gt; &lt;td class="label"&gt;Test Script&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;br /&gt; &lt;div id="Button"&gt; &lt;asp:Button ID="cancelButton" runat="server" Text="Cancel" Width="58px" /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;asp:Button ID="runButton" UseSubmitBehavior="true" runat="server" Text="Run" Width="58px" /&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>I want to use the two buttons at the bottom. 1) I want the "Run" button to be the submit button. 2) I want to use the "cancel" button to close the browser window.</p> <p>I am testing this form just using a simple script checklistForm.asp is simply a msgbox popup</p> <pre><code>&lt;% MsgBox("Hello"); %&gt; </code></pre> <p>but it simply isn't working.</p> <p>Go easy on me, I am still new to ASP.</p> <p>Also, I am editing it in Visual Studio. Is this the best editor for this? I am a software developer and this is a work project.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload