Skip to main content

Featured Post

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

How to make Report using report viewer in asp.net

Introduction 

The reports consist of HTML containing multiple pages of data.

How to design 

There are different steps for designing report using RDLC file. It consists of objects, such as images , table, line etc. Also You can design header and footer inside it. So lets start

Step-1 : Create a Database table into your website.
Step-2 : Add one DataSet (.xsd file) to the solution explorer using 'Add New Item'.
Step-3 : Right Click on your DataSet window , Add tableAdapter to init.

How to make Report using report viewer in asp.net
Step-4 : After adding TableAdapter , make connection to the database , so select database from dropdown menu.
How to make Report using report viewer in asp.net

Step-5: Select ' Use SQL Statements' in given radio buttons, you can select one of radio button from given radio buttons.
How to make Report using report viewer in asp.net

Step-6: Press Query Builder button and make select query. Also press Next button.

How to make Report using report viewer in asp.net

How to make Report using report viewer in asp.net

Step-7 : Choose method to select CheckBoxes , which is bydefault select (don't any changes) , press next button.
How to make Report using report viewer in asp.net


Step-8 : Click to finish button. 
Step-9 : Add 'Report' (Report.rdlc file)  into Solution Explorer using 'Add New Item' 
Step-10 : Right click on your Report file window, insert page header and page footer.
Step-11 : Add One TextBox control to the Page Header from ToolBox. Also write init like " Student Performance details" 
Step-12 : Add one table to the middle selection of rdlc file, now new window will appear on your screen.
Step-13 : In new window, Select DataSource from DropDown menu .

How to make Report using report viewer in asp.net

Step-14 : In table, Select second row of first column, Bind first column from DataTable column (using top right corner icon)
How to make Report using report viewer in asp.net
Step-15 : Similarly again bind all remaining columns.
How to make Report using report viewer in asp.net


Step-16 : Add new web form (Default.aspx page) using Add new Item to the solution explorer
Step-17 : Add Script Manager and Report Viewer control into webform from ToolBox. 
Step-18 :  Choose Report using show smart tag , also select rdlc file 

How to make Report using report viewer in asp.net

Step-19 : Run your Application.
Step Generating the following output onto the browser window.
How to make Report using report viewer in asp.net




Comments

Popular Post

Polynomial representation using Linked List for Data Structure in 'C'

Polynomial representation using Linked List The linked list can be used to represent a polynomial of any degree. Simply the information field is changed according to the number of variables used in the polynomial. If a single variable is used in the polynomial the information field of the node contains two parts: one for coefficient of variable and the other for degree of variable. Let us consider an example to represent a polynomial using linked list as follows: Polynomial:      3x 3 -4x 2 +2x-9 Linked List: In the above linked list, the external pointer ‘ROOT’ point to the first node of the linked list. The first node of the linked list contains the information about the variable with the highest degree. The first node points to the next node with next lowest degree of the variable. Representation of a polynomial using the linked list is beneficial when the operations on the polynomial like addition and subtractions are performed. The resulting polynomial can also

How to use Tabs in ASP.NET CORE

I want to show Components in a tabs , so first of all create few components. In this project we have three components, First View Component  public class AllViewComponent : ViewComponent     {         private readonly UserManager<ApplicationUser> _userManager;         public AllViewComponent(UserManager<ApplicationUser> userManager)         {             _userManager = userManager;         }         public async Task<IViewComponentResult> InvokeAsync()         {             List<StudentViewModel> allUsers = new List<StudentViewModel>();             var items = await _userManager.Users.ToListAsync();             foreach (var item in items)             {                 allUsers.Add(new StudentViewModel {Id=item.Id, EnrollmentNo = item.EnrollmentNo, FatherName = item.FatherName, Name = item.Name, Age = item.Age, Birthdate = item.Birthdate, Address = item.Address, Gender = item.Gender, Email = item.Email });             }            

Memory representation of Linked List Data Structures in C Language

                                 Memory representation of Linked List              In memory the linked list is stored in scattered cells (locations).The memory for each node is allocated dynamically means as and when required. So the Linked List can increase as per the user wish and the size is not fixed, it can vary.                Suppose first node of linked list is allocated with an address 1008. Its graphical representation looks like the figure shown below:       Suppose next node is allocated at an address 506, so the list becomes,   Suppose next node is allocated with an address with an address 10,s the list become, The other way to represent the linked list is as shown below:  In the above representation the data stored in the linked list is “INDIA”, the information part of each node contains one character. The external pointer root points to first node’s address 1005. The link part of the node containing information I contains 1007, the address of