Comments in HTML come in handy to temporarily remove site content. As ASP.NET developers, we have HTML comments available to use. In any ASPX markup file you can simply use the comment notation.
Month: December 2007
Runat Server
As an ASP.NET developer you have undoubtedly seen controls with their runat property set to the value server. Other than being a required property, what does that property really mean?
Validating Drop Downs In ASP.NET – Part 2
In part 1 of Validating Drop Downs In ASP.NET we discussed how to use the Required Field Validator to provide responsive client side validation of form controls without directly writing JavaScript. In this post we are going to discuss how to allow postbacks without validating form controls.
Validating Drop Downs In ASP.NET – Part 1
User input validation is an important component in any user interface. In the realm of web development a response UI is extremely important to the users experience.
If you are like myself, programming in JavaScript does not come easily to you. Fortunately, ASP.NET contains several validator controls that allow for client side form validation without you having to program any JavaScript.
Take for example a simple drop down control.
<asp:DropDownList ID="ddlSampleDropDown" runat="server"> <asp:ListItem Value="">--please select one--</asp:ListItem> <asp:ListItem Value="1">Apples</asp:ListItem> <asp:ListItem Value="2">oranges</asp:ListItem> </asp:DropDownList>
aspNETserve Version 1.2 Finally Released
Just today I was able to release aspNETserve version 1.2!
After the birth of my son I took a few months off, so this project sat dormant for awhile. Now that he has been sleeping regularly (and I have too ), I have been able to contribute to my open source project again.
ASP.NET MVC CTP Now Available
The community technology preview of MVC (Model-View-Control) extensions for ASP.NET is now available for download from:
ASP.NET MVC With aspNETserve
I am pleased to announce that aspNETserve works with the latest CTP of MVC for ASP.NET.
aspNETserve has held up well against the MVC samples I have thrown its way, and has actually not required any code changes in aspNETserve.
Using ASP.NET MVC From Visual Web Developer Express 2008
Today marked the released of the first preview of MVC for ASP.NET. While it works just fine from the free Visual Web Developer Express 2008, this release is missing a project template to help you get up an running quickly.
Making Visual Studio Load Faster
.NET Wiki Weekend Update 12/7/2007
Its been a great week on the .NET Wiki. There have been a few newly registered users, and several pages added.
The updated pages include:
Value Type
Access Modifier
LINQ
Silverlight
Additionally I managed to updated our version of ScrewTurn Wiki to the latest version (2.0.21, up from 2.0.20).