Here is the code:<BR><BR>string strConnection = ConnectionString();<BR><BR>OleDbConnection objConnection = new OleDbConnection(strConnection);<BR> <BR>string strUpdateSQL = "SELECT Proj, Title FROM TitleProj WHERE Proj= '";<BR>strUpdateSQL += Request.QueryString["Proj"] + "' AND FEID = '";<BR>strUpdateSQL += Request.Cookies["PayOut"]["FEID"] + "'";<BR>DataSet objDataSet = new DataSet();<BR>OleDbCommand objCommand = new OleDbCommand(strUpdateSQL, objConnection);<BR>objConnection.Open();<BR>OleDbDataReader objDataReader = objCommand.ExecuteReader();<BR> <BR>while (objDataReader.Read() == true)<BR>{<BR> ProjectID.Text = objDataReader["Proj"].ToString();<BR> Title.Text = objDataReader["Title"].ToString();<BR> test.Text = objDataReader["Type"].ToString();<BR>}<BR>objConnection.Close();<BR><BR>Here is the error:<BR><BR>Exception Details: System.IndexOutOfRangeException: Type<BR><BR>Line 40: test.Text = objDataReader["Type"].ToString();<BR><BR>The Type filed is just a Text field in an Access database. I dont think it is the name of the field because I changed the name of the field and still had the same issues.<BR><BR>Any help with wy I would get this error?<BR>Thanks