Here is my connection code and below that is asp.NET error message i can get what i do wrong...<BR><BR>Dim strResult As String<BR> Dim objDataReader As System.Data.OleDb.OleDbDataReader<BR> Dim strSQL As String = "SELECT * FROM Decriptions WHERE LangugeID = " & _LanguageID & " AND MenuItem = " & _MenuItem<BR> Dim strConnection As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:inetpubwwwrootGlenviewSysDatabaseGlenSys. mdb"<BR> Dim objConn As New System.Data.OleDb.OleDbConnection(strConnection)<BR> Dim objCommand As New System.Data.OleDb.OleDbCommand(strSQL, objConn)<BR> objConn.Open()<BR> objDataReader = objCommand.ExecuteReader<BR><BR> _Description = objDataReader("Description")<BR><BR><BR> objDataReader.Close()<BR> objConn.Close()<BR>__________________________________________________ ______________<BR><BR>No value given for one or more required parameters. <BR>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. <BR><BR>Exception Details: System.Data.OleDb.OleDbException: No value given for one or more required parameters.<BR><BR>Source Error: <BR><BR><BR>Line 61: Dim objCommand As New System.Data.OleDb.OleDbCommand(strSQL, objConn)<BR>Line 62: objConn.Open()<BR>Line 63: objDataReader = objCommand.ExecuteReader<BR>Line 64: <BR>Line 65: _Description = objDataReader("Description")<BR> <BR>Dim strSQL As String = "SELECT * FROM Decriptions WHERE LangugeID = '"&_LanguageID&"' AND MenuItem = '" &_MenuItem&"'<BR><BR>You have to add "'" for any sql parameter in your code<BR>