日期:2011-10-10 浏览次数:20416 次
protected void GetTable()
{
object[] restrictions = new object[] { null, null, null, "TABLE" }; //
OleDbConnection getTableConn = new OleDbConnection(CgetConnStr.connString);
getTableConn.Open();
DataTable tempTable = getTableConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables,restrictions);
ArrayList TableName = new ArrayList();
int count = tempTable.Rows.Count;
for (int i = 0; i < count; i++)
{
TableName.Add(tempTable.Rows[i]["TABLE_NAME"].ToString());
TextBox tempTb = new TextBox();
tempTb.ID = "tb" + i.ToString();
tempTb.Text = (string)TableName[i];
this.Controls.Add(tempTb);
}
getTableConn.Close();
}
public override void VerifyRenderingInServerForm(Control control)
{
}