private void Submit1_ServerClick(object sender, System.EventArgs e)
{
if (!IsPostBack)
{
int j=0;
string xieru;
OleDbConnection conn=new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Server.MapPath("db1.mdb"));
                OleDbCommand cmd;
conn.Open();
int i=Convert.ToInt32(Request.Form["upcount"]);
for(j=0;j<i;j++)
{
xieru="insert into aaa (aa) Values('"
+ Request.Form["aa"](i) + "')";
cmd = new OleDbCommand(xieru,conn);  }
conn.Close();
}这个代码是同时添加N条记录的!    可是当我编译的时候 就会出现 Request.Form["aa"]这里错误<应输入方面名称> 现在不知道什么问题!    请大哥帮忙看看啊!
全部代码入下:<%@ Page language="c#" Codebehind="tianjiann.aspx.cs" AutoEventWireup="false" Inherits="xiao.tianjiann" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<TITLE>tianjiann</TITLE>
</HEAD>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<script language="javascript">
  function setid()
  {
  str='<br>';
  if(!window.form1.upcount.value)
   window.form1.upcount.value=1;
    for(i=1;i<=window.form1.upcount.value;i++)
     str+=''+i+'.&nbsp;姓名:<input type="text" name="aa'+i+'" value="" size="8" class="txtfld">';
  window.upid.innerHTML=str+'<br>';
  }
</script>
<form action="reADD.asp" method="post" name="form1">
<table width="380" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#000099">
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="text2">
<tr align="center" bgcolor="#0066cc">
<td height="26" colspan="3" nowrap class="pt9-FFFFFF"><font color="#ffffff">添加小组成员 </font>
</td>
</tr>
<tr bgcolor="#ffffff">
<td width="71" align="right" valign="baseline" nowrap bgcolor="#ffffff">设定人数:</td>
<td width="398" colspan="2" valign="baseline" bgcolor="#ffffff">
<select name="upcount" class="txtfld4" onChange="setid()">
<option value="1" selected>1 人</option>
<option value="2">2 人</option>
<option value="3">3 人</option>
<option value="4">4 人</option>
<option value="5">5 人</option>
<option value="6">6 人</option>
<option value="7">7 人</option>
<option value="8">8 人</option>
<option value="9">9 人</option>
<option value="10">10 人</option>
<option value="11">11 人</option>
<option value="12">12 人</option>
</select></td>
</tr>
<tr bgcolor="#ffffff">
<td height="54" colspan="3" nowrap id="upid">1.&nbsp;姓名: <input name="aa1" type="text" class="txtfld" size="8">&nbsp;&nbsp;&nbsp;&nbsp;
</td>
</tr>
<tr bgcolor="#ffffff">
<td height="26" colspan="3" align="center" nowrap>
<input name="submit" type="submit" class="txtfld4" value="添加成员" id="Submit1" runat="server">
<input name="Submit" type="reset" class="txtfld4" value="重设成员">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</HTML>
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;namespace xiao
{
/// <summary>
/// tianjiann 的摘要说明。
/// </summary>
public class tianjiann : System.Web.UI.Page
{
protected System.Web.UI.HtmlControls.HtmlInputButton Submit1;

private void Page_Load(object sender, System.EventArgs e)
{
Page.DataBind(); } private void InitializeComponent()
{
this.Submit1.ServerClick += new System.EventHandler(this.Submit1_ServerClick); } private void Submit1_ServerClick(object sender, System.EventArgs e)
{
if (!IsPostBack)
{
int j=0;
string xieru;
OleDbConnection conn=new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Server.MapPath("db1.mdb"));
                OleDbCommand cmd;
conn.Open();
int i=Convert.ToInt32(Request.Form["upcount"]);
for(j=0;j<i;j++)
{
xieru="insert into aaa (aa) Values('"
+ Request.Form["aa"](i) + "')";
cmd = new OleDbCommand(xieru,conn);  }
conn.Close();
}
} #region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void Initialize()
{    
this.Load += new System.EventHandler(this.Page_Load); }
#endregion
}
}
请帮个忙啊!