your first asp.net project part-2

Post on 20-Jun-2015

1.991 Views

Category:

Education

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

This tutorial helps you build an application using database(Access) and xml.

TRANSCRIPT

Your First ASP. Net Project – Part 2

By: Biswadip Goswami

(c) Biswadip Goswami, biswadip@cognobytes.com

• A configuration file, whether it is a machine.config, web.config, or an application configuration file, needs to adhere to the configuration schema that determines which elements should be included.

• The schema can be found at C:\Program Files\Microsoft Visual Studio 8\Xml\Schemas\DotNetConfig.xsd and is broken down into a number of sections.

• Web applications are configured via the web.config file. This file can be located in a number of locations depending on the scope to which the settings need to be applied.

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

Several features within Visual Studio 2005 could be loosely classified as code-generation techniques, as they significantly reduce the code that you have to write.

SnippetsA large proportion of the code that developers have to write is

mundane, such as writing property accessors for private member fields. You can often identify code blocks that you find yourself writing repeatedly.

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

RefactoringWith a lot of emphasis being placed on agile

development methodologies, refactoring is an important technique for reviewing and simplifying code. The premise is that the simpler the code, the easier it is to test and the less likely it is to contain bugs.

An example of the refactoring support provided in C# is the Preview Changes dialog

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

Database

The .NET Framework provides support for working with SQL Server, Oracle, ODBC, and OLE DB databases. To connect to any of these databases you need to specify a connection string that determines the location, the database, authentication information, and other connection parameters.

From the Data menu within Visual Studio 2005, select Add New Data Source, which opens the Data Source Configuration Wizard.

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

XML is a cross-platform, hardware and software independent, text based markup language, which enables you to store data in a structured format by using meaningful tags. XML stores structured data in XML documents that are similar to databases.

The .NET Framework has extensive support for working with XML documents. In the .NET framework, the support for XML documents includes:

• XML namespace• XML designer• XML Web Server control• XML DOM support

(c) Biswadip Goswami, biswadip@cognobytes.com

The System.Xml namespace provides a rich set of classes for processing XML data. The commonly used classes for working with XML data are:

• XmlTextReader: XmlTextReader reader = new XmlTextReader("XML1.xml");

• XmlTextWriter:XmlTextWriter writer = new XmlTextWriter(Response.Output);

• XmlDocument: XmlDocument doc = new XmlDocument();

• XmlDataDocument:DataSet ds=new DataSet();XmlDataDocument doc=new XmlDocument(ds);

(c) Biswadip Goswami, biswadip@cognobytes.com

• XmlPathDocument:XmlPathDocument doc=new XmlPathDocument("XML1.xml");

• XmlNodeReader:XmlDocument doc=new XmlPathDocument();XmlNodeReader reader=new XmlNodeReader(doc);

• XslTransform:Xsltransform xslt = new XslTransform ();

(c) Biswadip Goswami, biswadip@cognobytes.com

An XML Web Server control is used to display the contents of an XML document without formatting or using XSL Transformations. You can optionally specify a XSLT style sheet that formats the XML document before it is displayed in an XML server control.

• DocumentSource: Allows you to specify the URL or the path of the XML document to be displayed in the Web form.

• TransformSource: Allows you to specify the URL of the XSLT file, which transforms the XML document into the required format before it is displayed in the Web form.

• Document: Allows you to specify a reference to an object of the XMLDocument class. This property is available only at runtime.

• Transform: Allows you to specify a reference to an object of the XMLTransform class. This property is available only at runtime.

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

(c) Biswadip Goswami, biswadip@cognobytes.com

Thank You !

For assistance with your ASP.Net requirements contact:

Biswadip GoswamiPrimary e-mail: biswadip_g@hotmail.comAlt e-mail: biswadip@cognobytes.comWebpage:

http://people.cognobytes.com/biswadip

(c) Biswadip Goswami, biswadip@cognobytes.com

top related