Datasets store a copy of data from the database tables. However, Datasets can not directly retrieve data from Databases. DataAdapters are used as a link between them.
This tutorial explains how to manipulate data in database using DataSet and DataAdapter objects.
In this tutorial, we will try to validate some data coming from a form input. While using this sample code will check the date is true and in correct format. We will compare the date within a culture date format. Code can do two jobs for us : date is valid and date is in correct format.
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.
This discussion will focus around "How to write secure code?" using .NET Technologies. It will also discuss secure coding practices for enterprises and organizations. The discussion will include following topics: .NET Security Fundamentals; Code Access Security; Impersonation, Authentication and Authorization; Security in COM+ and ASP.NET. Source code included.
Learn about the basics of building mobile Web applications with ASP.NET Mobile Controls. See how the control model and drag and drop designer make it easy to target nearly 200 devices (cell phones, PDAs and pagers) from a single mobile Web form. Find out what the adaptive rendering and rich customization and extensibility models can do for your mobile Web applications.
This paper will provide a broad introduction to the topic of data-driven web sites, and how they are implemented in ASP.NET. It starts with a discussion of the advantages and disadvantages of data-driven sites, and then moves on to examine the sources that such data can come from. After that, you will know the .NET Framework's data access strategy of choice, ADO.NET, including its architecture, its classes, and how it fits into the structure of data-driven applications.
The author writes "With ASP.NET you can configure the 'ASP.NET engine' to automatically restart itself when certain criteria are met. For example, if the Web server has 100 requests queued up, you may wish to have the Web server restarted, assuming that some script or DLL is hanging the Web server. Additionally, you can set requirements on restarting the Web server on the memory usage, the total number of requests, or by the total time the Web server's run. This proactive approach was implemented by the ASP.NET team in order to increase the overall uptime of a Web site running ASP.NET: if the memory suddenly shoots through the roof, the Web server can be restarted, reigning in the memory usage and starting anew. The information regarding the life cycle of the current (and past) ASP.NET processes can be examined through the use of the ProcessModelInfo class." This article examines how to retrieve and present such information.
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.
The .NET framework provides the Dataset object which is designed to handle data abstractly independent of the data source. The DataSet can handle data from variety of sources like SQL, XML etc. In this article we'll show you how to bind a data grid control to data in an XML file using the DataSet class.