RSS (Rich Site Summary) news feeds are easily consumed and displayed in an ASP.NET web forms page using no more than a few lines of codes. However, listing the RSS news feed links in this fashion can take up considerable page space. Instead, it would be more convenient to display them in a small embedded window that automatically scrolls them to the user. This method substantially reduces the page real estate devoted to the news feed, while displaying the same information in a compact, attractive, and intuitive manner. Once you have developed a method for displaying RSS news in this format, it would be still more convenient to implement the method as a custom control that you can add to any ASP.NET web forms page with just a few lines of code. This article shows you how.
In this article, you will learn how to create the illusion of continuous seamless scrolling by: 1) using two datagrids to display the same listing; and 2) scrolling the entire total list, but then repeating the scrolling when it has passed over the first list.
Explains how to set focus in ASP.NET controls (e.g. button or textbox) using ASP.NET server side code or client side javascript. Tutorial includes review of focus in ASP.NET 2.0 too.
In this article, you'll see how sending email with ASP.NET is possible and then we'll go deeper to see how you can use HTML emails or include attachments.
A complete research of using an Enter key in ASP.NET, submiting a form or how to get specific button "clicked" when visitor hits an Enter key. That could be in case that you want to build Login screen, web site search, pool or all of that on the same page.
Most programmers are used to passing data in methods as input and output parameters.
Imagine a scenario where you wish to pass methods around to other methods instead of data. Amazed! Read further.
ASP.NET 2.0 Tutorials : GridView Filtering - In this tutorial you will learn how to add a filter to a Grid View Control, To modify the query with a parameterized filter, the WHERE Clause, Parameter properties, Parameter Value Editor and To test filtering. Adding Filtering - If the developer wants to display only selected data in a page, the query for the SqlDataSource control will have to be modified.
ASP.NET 2.0 Free Training : Adding Sorting and Paging in GridView - In this tutorial you will learn adding sorting and paging in a GridView Control, Implement Two Column Sorting, Create Code for Custom Sorting, Editing the GridView control data, Deleting Displayed Records, Inserting Records and Using Templates.
ASP.NET 2.0 Free Tutorials : Using a Grid to Display Detail Information - In this tutorial you will learn how to use a GridView Control to display the details of the item selected in the DropDown list and test the page. We shall now use a GridView to display the details of the item selected in the DropDown list.
ASP.NET 2.0 Free Tutorials : DataBound Controls - Details View - In this tutorial you will learn DetailView DataBound Control, To create a file system Web site, Connecting to SQL Server, Use a Drop-Down List as the Master and To test the drop-down list. The DetailsView is a control that is complementary to the GridView control. It has been introduced in ASP.NET 2.0 to provide an ability to work with a single record or row from an associated data source.
ASP.NET 2.0 Tutorials : Displaying Master-Detail Data on Separate Pages - In this tutorial you will learn how to display Master-Detail Data on Separate Pages, create the details page, test the pages and Allow Editing, Deleting, and Inserting Using a DetailsView DataBound control.