ASP.NET
ASP.NET related stuff
In my ASP.NET application validators are used for validating the data entry part and as per the requirement we need to show a different color for error messages. We have created a CSS class for all the error message and applied to validators but noticed that the error messages are always displayed in RED color. The trick here is we also need to set the ForeColor to empty to get the color of text from CSS Class. Sample is provided below. CssName="Someclass" ForeColor=""
This offer is from Microsoft. Get it at http://www.microsoft.com/le... The free e-book includes content from three recent publications from Microsoft Press: • Introducing Microsoft LINQ by Paolo Pialorsi and Marco Russo (ISBN: 9780735623910) This practical guide covers Language Integrated Query (LINQ) syntax fundamentals, LINQ to ADO.NET, and LINQ to XML. The e-book includes the entire contents of this printed book! • Introducing Microsoft ASP.NET AJAX by Dino Esposito...
David Ebbo made a screencast which walks through a basic scenario of using ASP.NET Dynamic Data in a simple site using Northwind. You can download this screencast from on his blog at http://blogs.msdn.com/david
A preview of ASP.NET 3.5 Extensions is released by Microsoft. You can download this from http://www.microsoft.com/do... The following are part of this release. ASP.NET MVC ASP.NET MVC provides model-view-controller (MVC) support to the existing ASP.NET 3.5 runtime, which enables developers to more easily take advantage of this design pattern. Benefits include the ability to achieve and maintain a clear separation of...
DevX published a series of three articles that explore the built-in support for standard design patterns in ASP.NET Design Patterns for ASP.NET Developers, Part 1: Basic Patterns Design Patterns for ASP.NET Developers, Part 2: Custom Controller Patterns Design Patterns for ASP.NET Developers, Part 3: Advanced Patterns...
Latest CTP of “Atlas” is available at ASP.NET “Atlas” June CTP. This introduced a new concept called Dynamic UpdatePanels which can be used in ItemTemplates or User controls. Looks interesting
I may be late to look at these articles but better late than never. ASP.NET site has a nice list of tutorials on working with ADO.NET in ASP.NET 2.0. The list is Introduction Creating a Data Access Layer Creating a Business Logic Layer Master Pages and Site Navigation Basic Reporting Displaying Data With the ObjectDataSource Declarative Parameters Programmatically Setting the ObjectDataSource's Parameter Values Master/Detail Master/Detail Filtering With a DropDownList Master/Detail Filtering With...
I have used gridviews in my asp.net 2.0 applications. One of the requirement is to show the header row even when there are no data rows in dataset. I couldn't find an easy way of doing this. After little bit of R&D, i did that with EmptyDataTemplate of GridView. This works well but is there any easy way of doing this? EDIT on 15-Nov-2007: Following is the sample code of what i did in my application. In this i wanted to show two fields Year and extract date. BTW, this sample is not specific to...
Azam bloged about deployment tag of ASP.NET 2's web.config. It is a nice way to turn off all things that can be ignored by the developers while developing pages. For reference: Including “” in web.config will disable tracing and debugging