<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>My Web Development Tips &#187; asp.net</title>
	<atom:link href="http://www.mywebdevelopmenttips.com/tag/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mywebdevelopmenttips.com</link>
	<description>Web Development Blog</description>
	<lastBuildDate>Thu, 29 Jul 2010 16:46:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Use The ASP.NET GridView Control</title>
		<link>http://www.mywebdevelopmenttips.com/2010/05/how-to-use-the-asp-net-gridview-control/</link>
		<comments>http://www.mywebdevelopmenttips.com/2010/05/how-to-use-the-asp-net-gridview-control/#comments</comments>
		<pubDate>Sat, 08 May 2010 17:40:17 +0000</pubDate>
		<dc:creator>William Roberts</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.mywebdevelopmenttips.com/2010/05/how-to-use-the-asp-net-gridview-control/</guid>
		<description><![CDATA[The display of information from a database is a fairly standard requirement on most websites and, in some development environments, it can take a fair amount of programming to achieve. In ASP.NET, however, it is remarkably easy, thanks to the use of built-in data-bound controls. There are two types of data-bound controls: those which are designed to display multiple records and those which will display one record only. The GridView control, the workhorse of databinding in ASP.NET, falls into the first category. It automatically generates an HTML table and fills it with information from a given data source with each record in the database rendered as a row in the table.


Related posts:<ol><li><a href='http://www.mywebdevelopmenttips.com/2009/11/using-the-asp-net-gridview-control/' rel='bookmark' title='Permanent Link: Using The ASP.NET GridView Control'>Using The ASP.NET GridView Control</a> <small>Displaying information on a web page which comes from a...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/using-looping-syntax-in-xslt/' rel='bookmark' title='Permanent Link: Using Looping Syntax In XSLT'>Using Looping Syntax In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML-related technology which is...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/xml-offers-neutral-and-platform-independent-encapsulation-of-your-data/' rel='bookmark' title='Permanent Link: XML Offers Neutral And Platform Independent Encapsulation Of Your Data'>XML Offers Neutral And Platform Independent Encapsulation Of Your Data</a> <small>Extensible Mark-up Language (XML) has quickly established itself as a...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The display of information from a database is a fairly standard requirement on most websites and, in some development environments, it can take a fair amount of programming to achieve. In ASP.NET, however, it is remarkably easy, thanks to the use of built-in data-bound controls. There are two types of data-bound controls: those which are designed to display multiple records and those which will display one record only. The GridView control, the workhorse of databinding in ASP.NET, falls into the first category. It automatically generates an HTML table and fills it with information from a given data source with each record in the database rendered as a row in the table.</p>
<p>When using Visual Web Developer the easiest way to create a GridView control is simply to explore the appropriate data source using the database explorer, then drag the appropriate table or view onto the page. This action creates both a DataSource object and a GridView object, both of which can be customised either in Design or Source view. If the listing you wish to display on the page is to be tabular, you may not need to change the default GridView. However, it is more usual that you will want to customize the way in which data is displayed.</p>
<p>Naturally, you do not have to display all of the fields in the database in the HTML table generated by the Gridview. The GridView&#8217;s AutoGenerateColumns attribute should be set to False (which it is by default). Additionally, we can display data in a number of different ways. By default information is displayed in a BoundField, meaning that the data is displayed as text. By default, the heading displayed at the top of each column is simply the name of each field in the database. However, you can modify this by changing the HeaderText property of each BoundField element. Another useful property is DataFormatString which allow you to use a format string to control the display of data.</p>
<p>Another useful form of customization is the display of data in a choice of other HTML formats: CheckboxField, RadioButtonField, HyperlinkField, ButtonField and ImageField. The final type of field is CommandField which enables you to display links enabling the user to edit, delete or select rows of data.</p>
<p>For even greater flexibility, the GridView control also provides the TemplateField which allows you to place any HTML content you like in a given column and use databinding statements to embed information from the database as required. Template fields can even contain ASP.NET server controls.</p>
<p>You can find out more about ASP.NET training courses, visit <noindex><a target="_blank" rel="nofollow" href="http://www.macresource.co.uk/dreamweaver_training/?p=1029" >Macresource Computer Training</a></noindex>, a UK IT training company offering <noindex><a target="_blank" rel="nofollow" href="http://www.macresource.co.uk/courses/asp_net.htm" >ASP.NET training courses</a></noindex> in London and throughout the UK.</p>


<p>Related posts:<ol><li><a href='http://www.mywebdevelopmenttips.com/2009/11/using-the-asp-net-gridview-control/' rel='bookmark' title='Permanent Link: Using The ASP.NET GridView Control'>Using The ASP.NET GridView Control</a> <small>Displaying information on a web page which comes from a...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/using-looping-syntax-in-xslt/' rel='bookmark' title='Permanent Link: Using Looping Syntax In XSLT'>Using Looping Syntax In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML-related technology which is...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/xml-offers-neutral-and-platform-independent-encapsulation-of-your-data/' rel='bookmark' title='Permanent Link: XML Offers Neutral And Platform Independent Encapsulation Of Your Data'>XML Offers Neutral And Platform Independent Encapsulation Of Your Data</a> <small>Extensible Mark-up Language (XML) has quickly established itself as a...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mywebdevelopmenttips.com/2010/05/how-to-use-the-asp-net-gridview-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Offers Neutral And Platform Independent Encapsulation Of Your Data</title>
		<link>http://www.mywebdevelopmenttips.com/2010/02/xml-offers-neutral-and-platform-independent-encapsulation-of-your-data/</link>
		<comments>http://www.mywebdevelopmenttips.com/2010/02/xml-offers-neutral-and-platform-independent-encapsulation-of-your-data/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 16:21:44 +0000</pubDate>
		<dc:creator>Peter H. Spencer</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[computer software]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[extensible markup language]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[sgml]]></category>
		<category><![CDATA[software programs]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.mywebdevelopmenttips.com/2010/02/xml-offers-neutral-and-platform-independent-encapsulation-of-your-data/</guid>
		<description><![CDATA[Extensible Mark-up Language (XML) has quickly established itself as a viable technology with a huge range of real-world applications. One of the key reasons for its importance and wide acceptance is that it offers a working solution to one of the key problems faced by software developers and computer users alike: the exchange of incompatible data. Each software environment produces its own unique type of binary file which only it can understand. Once data is exported in XML format, it becomes a known quantity, independent of the environment in which it was originated.


Related posts:<ol><li><a href='http://www.mywebdevelopmenttips.com/2010/02/using-looping-syntax-in-xslt/' rel='bookmark' title='Permanent Link: Using Looping Syntax In XSLT'>Using Looping Syntax In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML-related technology which is...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/01/overview-of-xml-technologies/' rel='bookmark' title='Permanent Link: Overview of XML Technologies'>Overview of XML Technologies</a> <small>Core XML...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/mastering-the-essentials-of-xml-schema/' rel='bookmark' title='Permanent Link: Mastering The Essentials Of XML Schema'>Mastering The Essentials Of XML Schema</a> <small>XML schema definition languages are derived from the recommendations of...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Extensible Mark-up Language (XML) has quickly established itself as a viable technology with a huge range of real-world applications. One of the key reasons for its importance and wide acceptance is that it offers a working solution to one of the key problems faced by software developers and computer users alike: the exchange of incompatible data. Each software environment produces its own unique type of binary file which only it can understand. Once data is exported in XML format, it becomes a known quantity, independent of the environment in which it was originated.</p>
<p>The PDF format is another example of a platform-independent format which has gained worldwide acceptance. Once a document is saved in PDF format, its format is set in stone, it can viewed and printed with its layout and formatting intact, without the need for the software which created the original document. However, where the PDF format concerns itself mainly with the presentation of information, XML is used to describe and encapsulate the information itself.</p>
<p>Though XML itself is still fairly new, the idea behind is over thirty years old. In the 1970s, Standard Generalized Markup Language (SGML) was developed in an attempt to create an application-independent method of describing and storing data. SGML is a text-based language which relies on the concept of adding mark-up to data which describes the data itself. An SGML document contains both the original data and a lexicon of rules defining the structure of that data. SGML is a fairly complex language and, unlike XML, has never gained wide popularity. In the early 1990s, SGML was used to develop and specify the rules of HyperText Markup Language (HTML) and in the late 1990s, SGML was again called upon, this time as the basis for the creation of XML. In a lot of ways XML is basically a restricted form of SGML.</p>
<p>XML has already proved itself an excellent medium for storing, describing and transporting data, particularly over the web. It offers flexibility, clarity and simplicity. An XML document looks similar to an HTML document and consists of the same human-readable tags. However, the tags used to markup an HTML document are pre-defined: only a limited set of tags can legitimately be used. XML allows you to create a markup language and define the tags which are legitimate for your data. It does this using a schema document, which can itself be an XML document. The schema document specifies the vocabulary and grammar which may be used within the XML document which contains your data.</p>
<p>The fact that, when creating and generating XML documents, you can invent all the rules, means that you never have to force your data into a container which was not designed to hold it. You design tags which reflect the nature of your data; you create a schema document which defines the hierarchical structure of your information; and you specify the type of information each element within your document is permitted to contain. In short, if you end up with an XML documents which is unsuitable for holding your information, you have only yourself to blame!</p>
<p>Author&#8217;s company runs <noindex><a target="_blank" rel="nofollow" href="http://www.aspdotnetajax.net/index.htm" >public courses in web design 3.5</a></noindex> in London and throughout the UK.</p>


<p>Related posts:<ol><li><a href='http://www.mywebdevelopmenttips.com/2010/02/using-looping-syntax-in-xslt/' rel='bookmark' title='Permanent Link: Using Looping Syntax In XSLT'>Using Looping Syntax In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML-related technology which is...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/01/overview-of-xml-technologies/' rel='bookmark' title='Permanent Link: Overview of XML Technologies'>Overview of XML Technologies</a> <small>Core XML...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/mastering-the-essentials-of-xml-schema/' rel='bookmark' title='Permanent Link: Mastering The Essentials Of XML Schema'>Mastering The Essentials Of XML Schema</a> <small>XML schema definition languages are derived from the recommendations of...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mywebdevelopmenttips.com/2010/02/xml-offers-neutral-and-platform-independent-encapsulation-of-your-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using The ASP.NET GridView Control</title>
		<link>http://www.mywebdevelopmenttips.com/2009/11/using-the-asp-net-gridview-control/</link>
		<comments>http://www.mywebdevelopmenttips.com/2009/11/using-the-asp-net-gridview-control/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 03:33:26 +0000</pubDate>
		<dc:creator>Ben Jenkins</dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.mywebdevelopmenttips.com/2009/11/using-the-asp-net-gridview-control/</guid>
		<description><![CDATA[Displaying information on a web page which comes from a database is a fairly standard requirement on most websites and, in some development environments, it can take a fair amount of programming to achieve. In ASP.NET, however, it is remarkably easy, thanks to the use of built-in data-bound controls. There are two types of data-bound controls: those which are designed to display multiple records and those which will display one record only. The GridView control, the workhorse of databinding in ASP.NET, falls into the first category. It automatically generates an HTML table and fills it with information from a given data source with each record in the database rendered as a row in the table.


Related posts:<ol><li><a href='http://www.mywebdevelopmenttips.com/2010/05/how-to-use-the-asp-net-gridview-control/' rel='bookmark' title='Permanent Link: How To Use The ASP.NET GridView Control'>How To Use The ASP.NET GridView Control</a> <small>The display of information from a database is a fairly...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/using-looping-syntax-in-xslt/' rel='bookmark' title='Permanent Link: Using Looping Syntax In XSLT'>Using Looping Syntax In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML-related technology which is...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/creating-html-and-xhtml-with-adobe-dreamweaver/' rel='bookmark' title='Permanent Link: Creating HTML and XHTML With Adobe Dreamweaver'>Creating HTML and XHTML With Adobe Dreamweaver</a> <small>HTML is a markup language used to create documents designed...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Displaying information on a web page which comes from a database is a fairly standard requirement on most websites and, in some development environments, it can take a fair amount of programming to achieve. In ASP.NET, however, it is remarkably easy, thanks to the use of built-in data-bound controls. There are two types of data-bound controls: those which are designed to display multiple records and those which will display one record only. The GridView control, the workhorse of databinding in ASP.NET, falls into the first category. It automatically generates an HTML table and fills it with information from a given data source with each record in the database rendered as a row in the table.</p>
<p>In Microsoft Visual Web Developer, you can create a Gridview by simply exploring the appropriate data source using the database explorer then dragging the appropriate table or view onto the page. This action creates both a DataSource object and a GridView object, both of which can be customised either in Design or Source view. If the listing you wish to display on the page is to be tabular, you may not need to change the default GridView. However, it is more usual that you will want to customize the way in which data is displayed.</p>
<p>Naturally, you do not have to display all of the fields in the database in the HTML table generated by the Gridview. The GridView&#8217;s AutoGenerateColumns attribute should be set to False (which it is by default). Additionally, we can display data in a number of different ways. By default information is displayed in a BoundField, meaning that the data is displayed as text. By default, the heading displayed at the top of each column is simply the name of each field in the database. However, you can modify this by changing the HeaderText property of each BoundField element. Another useful property is DataFormatString which allow you to use a format string to control the display of data.</p>
<p>Where appropriate, you can also display data in a choice of other HTML formats: CheckboxField, RadioButtonField, HyperlinkField, ButtonField and ImageField. The final type of field is CommandField which enables you to display links enabling the user to edit, delete or select rows of data.</p>
<p>For even greater flexibility, the GridView control also provides the TemplateField which allows you to place any HTML content you like in a given column and use databinding statements to embed information from the database as required. Template fields can even contain ASP.NET server controls.</p>
<p>If you would like to learn more about ASP.NET training courses, visit <noindex><a target="_blank" rel="nofollow" href="http://www.macresource.co.uk/dreamweaver_training/?p=1076" >Macresource Computer Training</a></noindex>, an independent computer training company offering <noindex><a target="_blank" rel="nofollow" href="http://www.macresource.co.uk/courses/asp_net1.htm" >ASP.NET training courses</a></noindex> at their central London training centre.</p>
<p>categories: asp.net,web development,microsoft,computers,software</p>


<p>Related posts:<ol><li><a href='http://www.mywebdevelopmenttips.com/2010/05/how-to-use-the-asp-net-gridview-control/' rel='bookmark' title='Permanent Link: How To Use The ASP.NET GridView Control'>How To Use The ASP.NET GridView Control</a> <small>The display of information from a database is a fairly...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/using-looping-syntax-in-xslt/' rel='bookmark' title='Permanent Link: Using Looping Syntax In XSLT'>Using Looping Syntax In XSLT</a> <small>Extensible Stylesheet Language (XSL) is an XML-related technology which is...</small></li>
<li><a href='http://www.mywebdevelopmenttips.com/2010/02/creating-html-and-xhtml-with-adobe-dreamweaver/' rel='bookmark' title='Permanent Link: Creating HTML and XHTML With Adobe Dreamweaver'>Creating HTML and XHTML With Adobe Dreamweaver</a> <small>HTML is a markup language used to create documents designed...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mywebdevelopmenttips.com/2009/11/using-the-asp-net-gridview-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
