Report in asp.net
-
Hi, I want to create Reports in c# Asp.net without using Crystal report concept. How can I implement it.Please give the solution....(Database is SQL) Thanks in Advance
-
Hi, I want to create Reports in c# Asp.net without using Crystal report concept. How can I implement it.Please give the solution....(Database is SQL) Thanks in Advance
-
Hi, I want to create Reports in c# Asp.net without using Crystal report concept. How can I implement it.Please give the solution....(Database is SQL) Thanks in Advance
Hi, I also just started doing reports with asp.net in the last week or so. I found that sql server has a "reporting service" side to it. I did however had ages of problem getting it to work. The installation was easy - just install it from your sql server disc, and follow the prompts. You can also have a look at the following urls on how to install and configure. http://www.databasejournal.com/features/mssql/article.php/3573361 http://msdn2.microsoft.com/en-US/library/ms143736.aspx http://www.awprofessional.com/articles/article.asp?p=357694&rl=1 I did however had problems publishing to the reportserver, but there was several reason, mainly firewall and permissions. As for a tutorial I used, Try this one - found it very helpful.. http://www.codeproject.com/aspnet/AHCreatRepsAspNet.asp Good luck, once you get the hang of it, it will be easy.
-
Hi, I want to create Reports in c# Asp.net without using Crystal report concept. How can I implement it.Please give the solution....(Database is SQL) Thanks in Advance
I have to create nearly 50 reports Which will take less Time & Effective when implementing it on web(ie,SqlServer Report Service or DataGrid).Please give the best way.... Thanks in Advance
-
I have to create nearly 50 reports Which will take less Time & Effective when implementing it on web(ie,SqlServer Report Service or DataGrid).Please give the best way.... Thanks in Advance
It all depends on what you need to display. Datagrid is fine if you just need to display data, by using queries, and if you are good with sql and asp.net However, I only started last week with reporting services and I have done 4 reports, and the one report was a real pain - took me two days - queries within queries. So, if you want it to look nice and the user needs it in pdf, xml, image, html, csv format too, I would say go with reporting services from sql server. Ok, just one more thing, you need reporting services installed and configured on your sql server. You can also use the wizard to create a report, to start out. I did it with my first one. Just go in Visual Studio: New project -> Business Intelligence Projects -> Report Server Project Wizard Also, there are a few nice tutorials in the help files of visual studio... just look for "tutorials" under "sql reporting services" (filter by "sql server reporting services" in the dropdown box). Try these links too: msdn2.microsoft.com/en-us/library/ms170246.aspx http://www.15seconds.com/Issue/041013.htm Hope you come right.