如何向ACCESS输入形如“a,b,c”的字符串,又如何从表格中获取这样的字符串输出到网页?

来源:百度知道 编辑:UC知道 时间:2024/05/31 20:34:25
本人在用ASP做一个考试系统,在考试提交答案的时候,向数据库输入考生所选的答案(多选题),并将考生答案反馈给考生查看!

<form id="form1" name="form1" method="post" action="">
<p>
<label>
<input type="radio" name="RadioGroup1" value="a" />
a</label>
<br />
<label>
<input type="radio" name="RadioGroup1" value="b" />
b</label>
<br />
</p>
</form>

处理时:
dim answer
answer=request.form("RadioGroup1")
然后写个INSErt into 插入answer即可!