Categories
My Book
I wrote Twitter Application Development For Dummies. Buy it on Amazon!
-
Popular Posts
Recent Comments
- Kevin on Austin Tech Events Calendar WordPress Plugin
- Kevin on Austin Tech Events Calendar WordPress Plugin
- Barry on My new MacBook OR How to manually eject a CD from your MacBook Pro
- Rhein on Installing Cassandra on Ubuntu Linux
- Durand on Using CSS to absolute position an object relative to the inside of a center aligned container.
Follow Me On Twitter
Tag Archives: ASP.Net
ASP.Net US States Dropdown List
For large projects I usually databind my dropdown lists, but sometimes you just need a no-nonsense dropdown list of US States. For all you folks Googling to save time, here’s that code. Enjoy! <asp:DropDownList ID=”DropDownListState” runat=”server”> <asp:ListItem Value=”AL”>Alabama</asp:ListItem> <asp:ListItem Value=”AK”>Alaska</asp:ListItem> … Continue reading
How To: NHibernate Parent/Child Relationships
So you’re trying to setup a Parent/Child relationship using NHibernate. This is easy enough when you allow the foreign keys to be null in your database. Of course this is not desirable for data integrity so you disallow nulls. Now … Continue reading
How to use Design view to edit a page inside nested Master Pages.
Here’s a quick tip. If you’ve used nested master pages in your ASP.Net web application and you’ve tried to enter the “Design view” in one of your nested aspx pages, you’ve probably seen this error message. Design view does not … Continue reading
How to submit HTML without disabling ValidateRequest
So the scenario is this. You have an ASP.Net form field that you want the user to submit HTML to the server with. By default ASP.Net won’t allow this for security reasons. You could get around this by setting ValidateRequest=”false” … Continue reading
