Hello Everyone!
I'm new to asp.net programming. I'm trying to run an asp.net application through IIS, but facing a database connection problem. The following is the error:
Line 164:
Line 165: db.AddInParameter(dbCommand, "username", DbType.String, sUserName);
Line 166: DataSet ds = db.ExecuteDataSet(dbCommand);
Line 167: IDataReader dr = db.ExecuteReader(dbCommand);
Line 168: if (dr.Read())
I'm sure there is some database connectivity problem. So, Any suggestions would be appreciated.
Thank You!
Regards,
Sandeep Apsingekar