There seems to be a lot of differing options on this subject, so I'm going to toss my own in the mix.
Generally the way I comment code is based upon a couple of things; namely, how I was told to write code a previous jobs, ensuring that I can come back couple weeks later and figure out what something means, and making things as easy as possible while I am actively coding.
In regards to how I write code at previous jobs, we tended to have a lot of inexperienced developers so one of the standing instructions was that the comments should reflect the psudo code for the function. So if you had something along the lines of the following,
Function getEmployeeIds
Input - departmentId (Integer)
Output - employeeIds (List of Integers)
1. Open connection to database
2. Query database for results
3. Move results to a list
4. Close the connection and release resources
5. Return results
Then your code was expected to have comments that reflected those five steps also in the code. For the most part the comments reflected what the code was doing and there weren't any major issues with comments not being "on topic" for the function. Granted this is a bit verbose and you spend a bit of time documenting, but there was also no confusion about what the code was intended to be doing.
In regards to being able to come back a couple weeks later and figure out what I was doing in the code, recently I encountered some code similar to this:
Results.Append(IIf(oraData.GetInt32(1) = 0, 0, (oraData.GetInt32(1) / 60).ToString("0.###")).ToString() & ", ");
Looking at it, it may take a second to realize that it is converting from hours to minutes and someone that is unfamiliar with what is in the database might not know that the field is storing data as minutes. So a simple one line comment is helpful here to let the next person to see the code know what is going on.
Finally, making things easy while I'm working. For this most part I work with .NET languages and just about everything gets XML comments for the simple reason that they get picked up by Intellisense. The time it takes me to write the comments tends to be offset by the time saved by being able to use Intellisense if I forget something about the code I'm referencing. Likewise, having header documentation is also useful if I'm looking for something but not sure where it is. Having a general overview of what code is in a file saves time. If the names of previous developers is there then all the better as you can sometimes get in touch with them to ask how something works if they didn't document it well enough.