displaying crystal report in asp.net with c#
-
Hi friends I am trying to use crystal report in asp.net1.1 . I am able to display report using crystal report viewer. But the problem is when i am passing the parameters from the asp.net page.Its not showing any kind of errors, but its not showing the data also.So if someone can send me the code of setting the parameter in c# then it'll be very helpfull. I've done the same in windows application but on searching the net i found that its totally different for web. thanks in advance.please do it fast. bye nauty
-
Hi friends I am trying to use crystal report in asp.net1.1 . I am able to display report using crystal report viewer. But the problem is when i am passing the parameters from the asp.net page.Its not showing any kind of errors, but its not showing the data also.So if someone can send me the code of setting the parameter in c# then it'll be very helpfull. I've done the same in windows application but on searching the net i found that its totally different for web. thanks in advance.please do it fast. bye nauty
hi, friends, u can create crystal report in windows application but i cann't, i can not create a Dynamic Crystal report in windows application. porblem:- i have a filtered DataView, but i can not see the result of the DataView's in Crystal Report. please help me.
-
hi, friends, u can create crystal report in windows application but i cann't, i can not create a Dynamic Crystal report in windows application. porblem:- i have a filtered DataView, but i can not see the result of the DataView's in Crystal Report. please help me.
Hi buddy could u be more specfic what is the prob u r getting. there are only two steps needed to show the report in windows. CrViewerObject.ReportSource = reportObject; CrViewerObject.Show(); But the problem might be you're not logging the report CrystalDecisions.CrystalReports.Engine.Table tbcurrent; CrystalDecisions.Shared.TableLogOnInfo tbln ; foreach(tbcurrent in reportObject.Database.Tables) { tbln = tbcurrent.LogOnInfo tbln.ConnectionInfo.ServerName = "server name" tbln.ConnectionInfo.DatabaseName = "database name" tbln.ConnectionInfo.UserID = "user id" tbln.ConnectionInfo.Password = "password" tbcurrent.ApplyLogOnInfo(tbln); } Hope it'll now run. nauty