我使用 WEB FORM 来创建调查。
现在,我不知道如何制作报告......也许使用数据库?但是如何为用户对调查的回答创建数据库?
我的调查包括带有是和否答案的单选按钮列表......
这是我的 WEB FORM 调查的一些部分...
<tr>
<td class="auto-style2">5) Would you share our website to your friends?</td>
<td>
<asp:RadioButtonList ID="rbl5" runat="server" AutoPostBack="True" RepeatDirection="Horizontal" RepeatLayout="Flow">
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:RadioButtonList>
</td>
</tr>
<tr>
<td class="auto-style2">6) Any comments or suggestions?</td>
<td>
<asp:TextBox ID="tbComment" runat="server" Height="182px" TextMode="MultiLine" Width="271px"></asp:TextBox>
<br />
<br />
<br />
<input type="button" onclick="btnSubmit_Click()" value="Submit" />
<asp:Button ID="btnReset" runat="server" OnClick="btnReset_Click" Text="Reset" />
</td>
</tr>