Explains everything about how to work with long running task in ASP.NET. Almost every ASP.NET developer, before or later experiences a problem with page timeout error. Sometimes it is because of some error in code, but sometimes you just need more time to execute long running task.
In detail guide how to implement nested master pages in ASP.NET. Creating a master page can be very simple or very complex depending on the intentions of the web designer. This tutorial shows how to create a very simple master page and nest a number of other master pages into it.
This tutorial explains how to connect to data source with ObjectDataSource and show data in GridView. A GridView supplies data in table form with the possibility to sort, edit, select an item and even split the data over several pages. ObjectDataSource supplies the possibility to use the 3 tier design model and has the advantage that less code has to be written.
This tutorial explains how to host .NET Windows Forms Control on ASP.NET Web Form. This could be useful in some scenarios. Windows applications are more flexible than web applications, but you will experience some limitations too, like rigorous web browser's default security settings, your client must have .NET Framework installed etc.
This tutorial explains how to install, configure and implement SQL Server Reporting Services in ASP.NET. Business development often requires analysis and data mining and SQL Server Reporting Services provide a solution to those tasks.
This tutorial explains how to modify web site settings, like connection strings, session timeout etc. at run time. It is very useful in some scenarios, but you need to know that your web application can load slower first time after changes in web.config are made.
This is a beginner introduction to using MS SQL Server in ASP.NET web applications. MS SQL Server is one of the options if you have to develop web sites with dynamic content, like news site, bulletin boards, eCommerce etc.
This tutorial explains how to add a record, sort and divide data in DataGrid, and how to use DetailsView control. DetailsView class shows one single record in table form. It's used to give a view on all the details of any object selected by a GridView or another control (often DropDownList).
Managed DotNetNuke Portal solutions for small business. Free DotNetNuke User Guides, Web design tutorials, DotNetNuke Skins, SEO Guides ,themed link directories for business, travel and webmasters plus more DotNetNuke marketing Resources!
Creating composite controls in ASP.net can prove to be quite a tedious process at times, when it comes to the actual HTML the control renders. Especially since design-time support for composite controls are quite limited, fortunately we can always add our own support, like described in this code example