尝试为ASP Web应用程序创建表单

时间:2012-07-03 01:57:12

标签: web-applications asp-classic vbscript

我正在创建一个ASP Web应用程序,我需要做的一件事就是使用用户填写的数据。有一个文本字段和多个单选按钮。

我是ASP的新手,所以我一次只做一件......文本字段。

我有

<form method="post"  action="/Scripts/checklistForm.asp"> <%-- TODO: Enter variables    into checklistForm.vbs --%>
<table>
<tr> 
  <td class="label">
    FQDN: </td>
  <td>
    <input type="text" name="FQDN" style="width: 250px" />
 </td>
 <td> <input type="radio" name="TestScript" /></td>
 <td class="label">Test Script</td>
</tr>
</table>

<br />
<div id="Button">
<asp:Button ID="cancelButton" runat="server" Text="Cancel" Width="58px" />
  &nbsp;&nbsp;&nbsp;&nbsp;
<asp:Button ID="runButton" UseSubmitBehavior="true" runat="server" Text="Run" Width="58px" />  
</div>
</form>

我想使用底部的两个按钮。 1)我希望“运行”按钮成为提交按钮。 2)我想使用“取消”按钮关闭浏览器窗口。

我正在使用简单的脚本测试此表单 checklistForm.asp只是一个msgbox弹出窗口

<%
MsgBox("Hello"); 
%>

但它根本不起作用。

对我很轻松,我还是ASP的新手。

另外,我在Visual Studio中编辑它。这是最好的编辑吗? 我是一名软件开发人员,这是一个工作项目。

1 个答案:

答案 0 :(得分:1)

我建议你按照这个简单的教程来帮助你理解ASP表格。

http://www.w3schools.com/asp/asp_inputforms.asp