Click here to Skip to main content
15,891,136 members
Articles / Web Development / ASP.NET

Selectable GridView with WaitBox

Rate me:
Please Sign up or sign in to vote.
3.89/5 (9 votes)
16 Oct 2008CPOL2 min read 31.2K   652   45  
This article describes how to implement a selectable GridView control in ASP.NET.
<NewsItems  xmlns="http://tempuri.org/NewsItems.xsd">
	<NewsItems>
		<ItemID>0</ItemID>
		<Title>'Catastrophic' storm hits Texas</Title>
		<Date>13.09.2008</Date>
		<Category>Americas</Category>
		<Priority>1</Priority>
	</NewsItems>
	<NewsItems>
		<ItemID>1</ItemID>
		<Title>Two die after Paris boat accident</Title>
		<Date>14.09.2008</Date>
		<Category>Europe</Category>
		<Priority>2</Priority>
	</NewsItems>
	<NewsItems>
		<ItemID>2</ItemID>
		<Title>Los Angeles train crash kills 17</Title>
		<Date>13.09.2008</Date>
		<Category>Americas</Category>
		<Priority>2</Priority>
	</NewsItems>
	<NewsItems>
		<ItemID>3</ItemID>
		<DetailsItemID>1</DetailsItemID>
		<Title>Nepal's Maoist PM to visit India</Title>
		<Date>13.09.2008</Date>
		<Category>South Asia</Category>
		<Priority>6</Priority>
	</NewsItems>
</NewsItems>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Junior) Artaker Computersysteme GmbH
Austria Austria
I've began programming at the Warsaw University of Technolog. Currently I'm trying hardly;) to finish a master program at Vienna University of Technology and at the same time I'm working as Software Developer.
I'm interested in Web Development, technologies like AJAX, Silverlight, Semantic Web etc.

Comments and Discussions