your first asp.net project part-2

34
Your First ASP. Net Project – Part 2 By: Biswadip Goswami (c) Biswadip Goswami, [email protected]

Upload: biswadip-goswami

Post on 20-Jun-2015

1.991 views

Category:

Education


1 download

DESCRIPTION

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

TRANSCRIPT

Page 1: Your First ASP.Net Project Part-2

Your First ASP. Net Project – Part 2

By: Biswadip Goswami

(c) Biswadip Goswami, [email protected]

Page 2: Your First ASP.Net Project Part-2

• 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, [email protected]

Page 3: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 4: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 5: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 6: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 7: Your First ASP.Net Project Part-2

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, [email protected]

Page 8: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 9: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 10: Your First ASP.Net Project Part-2

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, [email protected]

Page 11: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 12: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 13: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 14: Your First ASP.Net Project Part-2

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, [email protected]

Page 15: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 16: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 17: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 18: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 19: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 20: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 21: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 22: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 23: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 24: Your First ASP.Net Project Part-2

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, [email protected]

Page 25: Your First ASP.Net Project Part-2

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, [email protected]

Page 26: Your First ASP.Net Project Part-2

• 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, [email protected]

Page 27: Your First ASP.Net Project Part-2

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, [email protected]

Page 28: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 29: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 30: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 31: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 32: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 33: Your First ASP.Net Project Part-2

(c) Biswadip Goswami, [email protected]

Page 34: Your First ASP.Net Project Part-2

Thank You !

For assistance with your ASP.Net requirements contact:

Biswadip GoswamiPrimary e-mail: [email protected] e-mail: [email protected]:

http://people.cognobytes.com/biswadip

(c) Biswadip Goswami, [email protected]