Skip to main content

Posts

Showing posts from March 2, 2014
What is Repeater Control ? How to bind data to Repeater Control ? Repeater is a Data Bind Control. Repeater Control Is Use for Displaying Records repeated. Repeater control is lightweight and faster to display data when compared with gridview and datagrid. Repeater Control Use: Repeater Control is used to display repeated list of items that are bound to the control and it’s same as gridview and datagridview. Repeater control is lightweight and faster to display data when compared with gridview and datagrid. By using this control we can display data in custom format but it’s not possible in gridview or datagridview and it doesn’t support for paging and sorting. The Repeater control works by looping through the records in your data source and then repeating the rendering of its templates called item template. Repeater control contains different types of template fields those are, 1) ItemTemplate 2) AlternatingitemTemplate 3) HeaderTemplate 4) FooterTemplate 5) S
Developing of RDLC reporting with Dataset in Asp.net What Is RDLC? This is one of tool which comes with Microsoft Visual studio RDLC stands for Report Definition Language Client-side. RDLC can be run completely client-side in the ReportViewer control. This removes the need for a Reporting Services instance, and even removes the need for any database connection whatsoever; but it adds the requirement that the data that is needed in the report has to be provided manually. RDLC reports do not store information about how to get data. RDLC reports can be executed directly by the ReportViewer control. We give this option to users to download there on copy of result what they want from search result. Click here to read more................