hi, i am just using access2003 with asp.net 2.0
this is my code:
con.Open();
cmd = new OleDbCommand("select UserId,Pwd,Authorization fom LoginUser where UserId='" + txtUserName.Text.Trim() + "' and pwd ='" + txtPassword.Text.Trim() + "'", con);
cmd.CommandType =
CommandType.Text;dr = cmd.ExecuteReader(CommandBehavior.CloseConnection);while (dr.Read())
{
if (dr.HasRows)
{
Session[
"userid"] = dr["UserId"].ToString();Session["authorization"] = dr["Authorization"].ToString();Server.Transfer("~/ListofVideos.aspx");
}
}
i am getting oledberror as like this
IErrorInfo.GetDescription failed with E_FAIL(0x80004005).
can any one please help me to resolve this error please
making impossible into possible is possible when we have determination,dedication,devotion.