アンケート フォームを作成しましたが、データベースの操作を続行する方法がわかりません。とにかく、これが私のコードです:
<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>
</table>
</div>
</form>
お気づきのとおり、radiobuttonlist とコメント ボックスを使用しました。これらが、データベースの作成に問題がある理由です...教えてください...データベースのテーブルの作成方法しか知りません...
そして、データベースはこのようなものかもしれません...
これは質問表です:
CREATE TABLE [dbo].[Question]
(
[Id] INT NOT NULL PRIMARY KEY,
[Question] NCHAR(10) NULL,
[Options] NCHAR(10) NULL
)
これは ANSWERS テーブルです。
CREATE TABLE [dbo].[Answers]
(
[Id] INT NOT NULL PRIMARY KEY,
[QuestionId] NCHAR(10) NULL,
[Answers] NCHAR(10) NULL
)
そして、NCHAR(10)についてもよくわかりません...これが、プログラミングがいかに悪いかです。教えて下さい。