Posts

Showing posts with the label crystal-reports

i cannot view my crystal report in my simple web page

i cannot view my crystal report in my simple web page what seem to be the problem with my code? i cannot view it in my browser. i searched google and so but cannot find the answer. it is been 2 days already that i am looking for solutions. can anyone help thanks. public partial class WebForm1 : System.Web.UI.Page { string connectionString = "server=" + ConfigurationManager.AppSettings["Server"] + ";uid=" + ConfigurationManager.AppSettings["User ID"] + ";pwd=" + ConfigurationManager.AppSettings["Password"] + ";database=" + ConfigurationManager.AppSettings["Database Name"] + ";Command Timeout=28800;"; protected void Page_Load(object sender, EventArgs e) { EmpReport crystalReport = new EmpReport(); dsEmp ds = GetData(); crystalReport.SetDataSource(ds); this.CrystalReportViewer1.ReportSource = crystal...