Morning Break
Coffee, web development and desgn
Sign in
|
Join
|
Help
Home
Contact
About
RSS for Posts
Atom
Email Notifications
Go
Search
Go
Tags
.NET Framework
Ajax
Articles
ASP.NET
Blogging
C#
CSS
Events
Firefox
HTML
Internet Explorer
JavaScript
jQuery
LINQ
MVC
Resources
Reviews
Silverlight
social media
Tutorials
User interface
Visual Studio
Web 2.0
Web Development Tools
XML
Community
Home
Blogs
Media
Forums
Groups
Archives
November 2008 (5)
October 2008 (7)
September 2008 (8)
August 2008 (6)
July 2008 (3)
May 2008 (5)
April 2008 (4)
March 2008 (12)
February 2008 (13)
January 2008 (18)
December 2007 (17)
November 2007 (4)
My other sites
Dzovan.com
My artistic gallery
Janko At Warp Speed
November 2007 - Posts
Comments
ASP.NET MVC Framework Sample application - part 1
by
janko
Last month Scott Guthrie had a post about ASP.NET MVC Framework that will be released this year as an optional feature. He intend to post several blog posts that will describe the framework in more detail. His first post is ASP.NET MVC Framework sample...
Filed under:
ASP.NET
,
MVC
Comments
Web Development Tools: Internet Explorer Developer Toolbar
by
janko
For all those who didn’t try it, I strongly recommend to check out Internet Explorer Developer Toolbar. This tool enables you to explore and troubleshoot web pages. You can explore and (what is more important) modify DOM. For example, you can find element...
Filed under:
ASP.NET
,
Internet Explorer
,
Web Development Tools
,
User interface
Comments
Paging data using PagedDataSource in ASP.NET 2.0
by
janko
If you ever tried to use GridView you probably know that it is very easy to page the data. But if you ever wanted to display this paged data in a Repeater you might have thought it's not that easy. Luckily, there is the PagedDataSource class that...
Filed under:
ASP.NET
Comments
Manipulating Generic List<T>
by
janko
You can find a lot of articles on the internet that explain .Sort() and .Find() methods, but I'll explain the shortest way to do so. Sorting Suppose you have the User object that has Name, Age, Address and Phone properties and that you want to sort...
Filed under:
C#