.NET Answers

ASP.NET, HTML, CSS, Visual Studio, CSharp, VB.NET and other programming items of interest.
Subscribe

Friday Books - Rapid Development

September 26, 2008 By: Dave

RapidDevelopment My list of “Must Have Books” would not be complete without a copy of “Rapid Development” by Steve McConnell.

To be honest this is more of a Manager’s book than a Programmer’s book, but I still advise programmers to get a copy and read it.  Why?  Well for one thing, most of your managers won’t bother.  So the only way they are going to get this information is if you read it and tell them.

Read the rest of this entry →

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Conditional Footnotes On GridView

September 25, 2008 By: Dave

hand-079 A couple of days ago I ran into a requirement to conditionally display footnote information at the bottom of a GridView display.  We were already conditionally displaying icons in the row.  What we needed to do was to conditionally show text at the bottom of the screen that explained what each icon was for.  Here’s how we went about it.

Read the rest of this entry →

DotNetNuke Modules - Retrieving Settings

September 24, 2008 By: Dave

ppl-wom-018 On Monday we discussed how to save setting information for our modules.  Today we want to pick back up where we left off and deal with retrieving that information, both in the LoadSettings() method and in the view module.

Read the rest of this entry →

Panel DefaultButton does not work

September 23, 2008 By: Dave

misc_vol2_051 Or, at least, it didn’t. Here’s what happened:

Yesterday a client asked me to help track down a problem he was having with setting the default button for a text box.

As you should already know, you can make ASP.NET automatically click a specific button on the page (Button, ImageButton, or LinkButton) by grouping everything in a Panel and setting the DefaultButton property to the ID of the button you want to have automatically clicked.

Read the rest of this entry →

DotNetNuke Modules - Module Settings

September 22, 2008 By: Dave

ppl-body-02 Since each instance of a module that we put on a page should be able to have it’s own configuration information, it is necessary to have some place that will allow us to configure it.

For example, you may have a module which could display itself in a number of different ways.  You need some way to set this and the settings ASCX file and the associated codebehind file is the place to do this.

< Read the rest of this entry →