Hi:
I am new in Crystal report.
I am trying to run a report.
Whenever I run it shows login screen though I already providev login information for Crystal Report.
My code is :

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;

public partial class TestReport1 : System.Web.UI.Page
{


private void Page_Init(object sender, EventArgs e)
{
ConfigureCrystalReports();
}

private void ConfigureCrystalReports()
{
ReportDocument rpt = new ReportDocument();
string reportPath = Server.MapPath("CRReports\\Monthly_Report.rpt");
rpt.Load(reportPath);
CrystalReportViewer1.ReportSource = rpt;
ConnectionInfo connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "smashHits";
connectionInfo.DatabaseName = "Smash";
connectionInfo.UserID = "hits\\user1";
connectionInfo.Password = "SmasHits123";
Tables crTables = rpt.Database.Tables;
foreach (CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
{

TableLogOnInfo objTableLogonInfo = new TableLogOnInfo();
objTableLogonInfo.TableName = crTable.Name;
objTableLogonInfo.ConnectionInfo = connectionInfo;
crTable.ApplyLogOnInfo(objTableLogonInfo);


}
}
}

please need help.

maksuda...