アンケートの作成には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>