User Si Keep - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T10:58:44Zhttp://stackoverflow.com/feeds/user/3372http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/91257/scrum-burndown-issues12Scrum Burndown issuesSi Keep2008-09-18T09:42:53Z2009-12-10T23:06:41Z
<p>We have been using Scrum for around 9 months and it has largely been successful. However our burndown charts rarely look like the 'model' charts, instead resembling more of a terrifying rollercoaster ride with some vomit inducing climbs and drops.</p>
<p>To try and combat this we are spending more time before the sprint prototyping and designing but we still seem to discover much more work during the sprint than initially thought. Note: By this I mean the work required to meet the backlog is more involved than first thought rather than we have identified new items for the backlog.</p>
<p>Is this a common problem with Scrum and does anyone have any tips to help smooth the ride?</p>
<p>I should point out that most of our development work is not greenfield, so we are maintaining functionality in an existing large and complex application. Is scrum less suited to this type of development simply because you don't know what problems the existing code is going to throw up?</p>
<p>Just how much time should we be spending before the sprint starts working out the detail of the development?</p>
<p>UPDATE: We are having more success and a smoother ride now. This is largely because we have taken a more pessimistic view when estimating which is giving us more breathing space to deal with things when they dont go to plan. You could say its allowing us to be more 'agile'. We are also trying to change the perception that the burn down chart is some kind of schedule rather than an indication of scope v resources.</p>
http://stackoverflow.com/questions/132724/sprint-cumulative-flow-diagram0Sprint Cumulative Flow DiagramSi Keep2008-09-25T11:28:33Z2009-11-03T13:58:04Z
<p>Can anyone give me some tips about how to read a Cumulative Flow Diagram. I'm not sure what kind of things its telling me.</p>
http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et1Does .Net have any built in constants for common numbers like million, billion etc?Si Keep2009-10-29T15:17:00Z2009-10-30T11:54:47Z
<p>Does .Net have any built in constants for common numbers like million, billion etc?</p>
<p>EDIT: As has been suggested this was for readability reasons, rather than writing 1000000 or 1000000000. I know I can create my own just wanted to check that they didnt already exist before I did so.</p>
http://stackoverflow.com/questions/1601782/ie-fails-to-repopulate-form-after-file-download-and-history-back0IE fails to repopulate form after file download and history.back()Si Keep2009-10-21T15:51:34Z2009-10-26T10:20:09Z
<p>I have a web page that has a button that when clicked will download a file for the user. However after the download if the user clicks on the back button the previous form is displayed but the form fields are all blank.</p>
<p>If the user clicks back without performing the download then the form fields are automatically repopulated by the browser as expected.</p>
<p>This bug happens in IE6 and 7 but seems to be OK in 8 which suggests it was a bug that has been fixed in IE8. </p>
<p>Anyone have any idea how I might work around this in IE6 and 7?</p>
http://stackoverflow.com/questions/1601782/ie-fails-to-repopulate-form-after-file-download-and-history-back/1624048#16240480Answer by Si Keep for IE fails to repopulate form after file download and history.back()Si Keep2009-10-26T10:20:09Z2009-10-26T10:20:09Z<p>I think we are going to rewrite the page to replace the use of the browser back button with a postback to return the user to the original page. Then we can pass the original form data back and repopulate the form programatically.</p>
http://stackoverflow.com/questions/1623832/is-it-possible-using-resharper-to-remove-an-object-initializer2Is it possible using Resharper to remove an object initializer?Si Keep2009-10-26T09:17:11Z2009-10-26T09:25:09Z
<p>Resharper 4.5 has the ability to turn the contstuction of an object followed by the setting of properties on that object into the object initializer format. </p>
<p>My question is can it go the other way and remove the user of an object initializer?</p>
http://stackoverflow.com/questions/1576843/is-it-good-practise-to-have-multiple-class-definitions-in-one-file3Is it good practise to have multiple class definitions in one file?Si Keep2009-10-16T08:36:00Z2009-10-16T14:21:14Z
<p>Is it good practise to have multiple class definitions in one file? or is it preferable to have one class per file?</p>
http://stackoverflow.com/questions/1553881/is-it-possible-to-use-data-binding-expressions-directly-in-markup-to-show-hide-co/1554091#15540911Answer by Si Keep for Is it possible to use Data-Binding Expressions directly in markup to show/hide content?Si Keep2009-10-12T11:43:58Z2009-10-12T11:43:58Z<p>You can use placeholders to hold the two versions of your markup and then use the Visible property to show the relevant one. Something like this... Note the use of ! before the call to IsDisabled in the second Visible property.</p>
<pre><code><asp:PlaceHolder ID="PlaceHolder1" runat="server" Visible='<%# IsDisabled((bool) Eval("IsDisabled")) %>'>
<span>Disabled</span>
</asp:PlaceHolder>
<asp:PlaceHolder ID="PlaceHolder2" runat="server" Visible='<%# !IsDisabled((bool) Eval("IsDisabled")) %>'>
<span>Active</span>
</asp:PlaceHolder>
</code></pre>
<p>The code behind IsDisabled method looks like this...</p>
<p>public bool IsDisabled (bool isDisabled)
{
return isDisabled;
}</p>
http://stackoverflow.com/questions/1454642/is-there-a-hotkey-in-visual-studio-to-open-the-member-drop-down-list1Is there a hotkey in Visual Studio to open the member drop down list?Si Keep2009-09-21T13:56:45Z2009-10-01T22:37:57Z
<p>In Visual Studio there is a drop down list in the top right hand corner that you can use to navigate to the various members in the class. Does anyone know if there is a hot key to open this ddl?</p>
http://stackoverflow.com/questions/1192590/how-can-i-tell-when-the-last-row-of-a-listview-data-source-is-being-bound0How can I tell when the last row of a ListView data source is being bound?Si Keep2009-07-28T08:11:45Z2009-08-24T17:00:02Z
<p>I have a nested ListView control and within the ItemTemplate I need to make a call to a method in the code-behind file in order to apply a different CSS class to the final row in the rendered table.</p>
<p>I am calling the method as follows...</p>
<pre><code><td class="<%# GetClass(Container) %>">
</code></pre>
<p>Container gives me the ListViewDataItem that is being bound so I was thinking that I can check this item against the list view data source to see if it is the last item in the data source, but how do I get to the data source of the nested control?</p>
<p>Is there a better way of achieving this, I know it could be done with jquery but I was hoping for a C#/ASP.net solution. Thanks.</p>
http://stackoverflow.com/questions/1322544/how-to-make-a-linq-sum-return-null-if-the-summed-values-are-all-null2How to make a linq Sum return null if the summed values are all nullSi Keep2009-08-24T13:48:01Z2009-08-24T14:11:49Z
<p>I have a link query that looks like this...</p>
<p>var duration = Level3Data.AsQueryable().Sum(d => d.DurationMonths);</p>
<p>If all the d.DurationMonths values are null the Sum returns 0. How can I make the Sum return null if all the d.DurationMonths are null? Or do I need to run a seperate query first to eliminate this situation before performing the sum?</p>
http://stackoverflow.com/questions/218150/which-built-in-net-exceptions-can-i-throw-from-my-application21Which built-in .net exceptions can I throw from my application?Si Keep2008-10-20T11:51:38Z2009-07-28T19:32:35Z
<p>If I need to throw an exception from within my application which of the built-in .net exception classes can I use? Are they all fair-game? When should I derive my own?</p>
http://stackoverflow.com/questions/1193317/should-i-use-objecttype-or-as-objecttype-when-casting-in-c/1193323#11933232Answer by Si Keep for Should I use (ObjectType) or 'as ObjectType' when casting in c#?Si Keep2009-07-28T10:51:37Z2009-07-28T10:51:37Z<p>I think this answer will help...</p>
<p><a href="http://stackoverflow.com/questions/2483/casting-newtype-vs-object-as-newtype">http://stackoverflow.com/questions/2483/casting-newtype-vs-object-as-newtype</a></p>
http://stackoverflow.com/questions/1192590/how-can-i-tell-when-the-last-row-of-a-listview-data-source-is-being-bound/1192643#11926430Answer by Si Keep for How can I tell when the last row of a ListView data source is being bound?Si Keep2009-07-28T08:22:14Z2009-07-28T08:42:35Z<p>This is how I solved it...</p>
<pre><code>protected string GetClass(ListViewDataItem container)
{
List<IIndividualNetworkLevel3Word> dataSource = (List<IIndividualNetworkLevel3Word>)(((ListView)container.BindingContainer).DataSource);
if (container.DataItemIndex == dataSource.Count-1)
{
return string.Empty;
}
return "customGridItems";
}
</code></pre>
http://stackoverflow.com/questions/1170781/how-can-i-add-a-registered-trademark-symbol-r-to-an-aspradiobutton-control-dec0How can I add a registered trademark symbol (R) to an asp:RadioButton control declaritively?Si Keep2009-07-23T10:04:54Z2009-07-23T10:26:17Z
<p>I want to show a registered trademark symbol (i.e. an 'R' in a circle) in a label on a web page. But I want to add it in the design view markup not in the code-behind file.</p>
<p>Is there an equivalent of &copy?</p>
<p>EDIT: Any idea how I use this when defining a radio button as it doesn't work when applied to the Text property of an asp:RadioButton control?</p>
http://stackoverflow.com/questions/1023529/is-it-possible-to-have-multiple-target-pages-with-cross-page-posting1Is it possible to have multiple target pages with cross page posting?Si Keep2009-06-21T09:35:19Z2009-06-21T14:32:37Z
<p>I have a web page that uses cross page posting to post to a different target page.</p>
<p>A new requirement has arisen that means that there could be 4 different target pages to post too depending on what data was entered on the client.</p>
<p>Is it possible to somehow change the cross page posting target dynamically on the client?</p>
<p>From looking at the source html I guess it would be possible to use jquery to manipulate the postback target on the submit button, but this seems a bit of a hack.</p>
<p>What are my alternatives, rewrite the pages to remove cross-page posting and do a response redirect passing the data in session?</p>
http://stackoverflow.com/questions/154554/minoccurs0-on-required-parameters-in-wsdl-on-asp-net-web-service/938567#9385670Answer by Si Keep for minOccurs="0" on required parameters in WSDL on ASP.NET web serviceSi Keep2009-06-02T08:55:17Z2009-06-02T08:55:17Z<p>The following link suggests building a class to represent the parameters and then assigning [DataMember(IsRequired=true)] to each parameter property...</p>
<p><a href="http://social.msdn.microsoft.com/forums/en-US/wcf/thread/a974b25f-9966-4446-9a56-8a79979519b1/" rel="nofollow">http://social.msdn.microsoft.com/forums/en-US/wcf/thread/a974b25f-9966-4446-9a56-8a79979519b1/</a></p>
<p>[OperationContract]</p>
<p>AddIntegersResponseMessage AddIntegers(AddIntegersRequestMessage requestMessage);</p>
<p>[DataContract]</p>
<p>class AddIntegersRequestMessage</p>
<p>{</p>
<p>[DataMember(IsRequired=true)]</p>
<p>int int1;</p>
<p>[DataMember(IsRequired=false)]</p>
<p>int int2;</p>
<p>}</p>
<p>[DataContract]</p>
<p>class AddIntegersResponseMessage</p>
<p>{</p>
<p>[DataMember(IsRequired=true)]</p>
<p>int responseInt;</p>
<p>}</p>
http://stackoverflow.com/questions/934486/how-do-i-get-a-nametable-from-an-xdocument1How do I get a NameTable from an XDocument?Si Keep2009-06-01T11:43:32Z2009-06-01T13:04:30Z
<p>How do I get a NameTable from an XDocument?</p>
<p>It doesn't seem to have the NameTable property that XmlDocument has.</p>
<p>EDIT: Judging by the lack of an answer I'm guessing that I may be missing the point.</p>
<p>I am doing XPath queries against an XDocument like this...</p>
<p>document.XPathSelectElements("//xx:Name", namespaceManager);</p>
<p>It works fine but I have to manually add the namespaces I want to use to the XmlNamespaceManager rather than retrieving the existing nametable from the XDocument like you would with an XmlDocument.</p>
http://stackoverflow.com/questions/925412/unable-to-attach-to-asp-net-worker-process-as-it-is-not-in-the-process-list0Unable to attach to asp.net worker process as it is not in the process listSi Keep2009-05-29T10:48:24Z2009-05-29T15:43:44Z
<p>I have been succesfully debugging my asp.net site using the Visual Studio 2008 virtual server however all of a sudden it has started timing out when connecting to the debugger with the following message:</p>
<p>"Unable to start debugging on the web server. The web server did not respond in a timely manner. This may be because another debugger is already attached to the web server."</p>
<p>When I tried manually attaching the debugger I noticed that the asp.net worker process is missing from the process list and is also not shown in task manager. Are these two things connected? If so any ideas how I solve them?</p>
http://stackoverflow.com/questions/247718/output-parameter-not-returned-from-stored-proc1Output Parameter not Returned from Stored Proc.Si Keep2008-10-29T17:39:32Z2009-05-06T12:56:34Z
<p>I am calling a SQL proc that has 3 OUTPUT params. After the call to the proc one of the params does not return a value when the other two do. Profiler shows that all 3 values are being returned.</p>
<p>The params are declared as follows in the proc...</p>
<pre><code>@UsrVariableID INT OUTPUT,
@OrganisationName NVARCHAR(256) OUTPUT,
@Visible bit OUTPUT
</code></pre>
<p>and the code that calls the proc is like this...</p>
<pre><code>cm.Parameters.AddWithValue("@OrganisationName", name);
cm.Parameters["@OrganisationName"].Direction = ParameterDirection.Output;
cm.Parameters.AddWithValue("@Visible", visible);
cm.Parameters["@Visible"].Direction = ParameterDirection.Output;
cm.ExecuteNonQuery();
name = cm.Parameters["@OrganisationName"].Value.ToString();
visible = bool.Parse(cm.Parameters["@Visible"].Value.ToString());
id = int.Parse(cm.Parameters["@UsrVariableID"].Value.ToString());
</code></pre>
<p>The param that fails is @OrganisationName.</p>
<p>I'm wondering if its because the param is of type string in the code but NVARCHAR in the proc.</p>
<p>Anyone got any ideas?</p>
http://stackoverflow.com/questions/198079/where-can-i-learn-about-the-various-types-of-net-lists23Where can I learn about the various types of .NET lists?Si Keep2008-10-13T15:57:00Z2009-05-04T14:59:41Z
<p>Does anyone know a good resource to concisely explain the different types of lists available in C# and when their usage is appropriate?</p>
<p>For example, List, Hashtable, Dictionaries etc.</p>
<p>I'm never quite sure when I should be using what.</p>
http://stackoverflow.com/questions/806095/how-do-i-serialize-an-object-into-an-xdocument2How do I serialize an object into an XDocument?Si Keep2009-04-30T09:28:48Z2009-04-30T11:20:54Z
<p>I have a class that is marked with DataContract attributes and I would like to create an XDocument from objects of that class. Whats the best way of doing this?</p>
<p>I can do it by going via an XmlDocument but this seems like an unnecessary step.</p>
http://stackoverflow.com/questions/712853/modifying-values-with-xslt/712877#712877-1Answer by Si Keep for Modifying values with XSLTSi Keep2009-04-03T07:31:33Z2009-04-20T15:32:30Z<p>If you were using c# to run the xslt transform, and the maths capabilities of Xpath are not good enough for your requirements, you can make calls from the xslt to methods in your c# class which would allow you to call out to c# to do your maths and then return the value back into your xslt. Search for c# xslt extensions.</p>
http://stackoverflow.com/questions/712990/should-a-business-object-collection-inherit-from-collectiont-when-it-doesnt-ex3Should a business object collection inherit from Collection<T> when it doesn't extend it?Si Keep2009-04-03T08:12:23Z2009-04-03T13:40:30Z
<p>I have a business object collection (representing data from the database) that inherits from Collection and has a static method that calls a stored proc and then populates its properties with the data returned.</p>
<p>My question is; is it wrong to inherit from Collection as it doesnt really extend the class? or would it be better to not inherit from anything but instead maintain a private variable that is of type Collection?</p>
http://stackoverflow.com/questions/327382/what-is-a-good-css-strategy13What is a good CSS strategy?Si Keep2008-11-29T09:34:16Z2009-03-22T19:37:30Z
<p>We have a large ASP.Net website that has a single css stylesheet which is getting out of control.</p>
<p>I am thinking of using the the following strategy (taken from <a href="http://articles.techrepublic.com.com/5100-10878_11-5437796.html" rel="nofollow">http://articles.techrepublic.com.com/5100-10878_11-5437796.html</a>) which seems logical to me...</p>
<p><em>you might have one CSS file devoted to sitewide styles and separate CSS files for identifiable subsets of site pages (such as pages for a specific department or pages with a different layout style). For styles that are unique to a specific page, use a separate CSS file for each page (if there are too many styles to fit comfortably in the document header). You link or import the appropriate CSS files for each page, so that you load all the styles needed to display that page, but very few unnecessary styles that only appear on other pages.</em> </p>
<p>Is this a good way to proceed? What are the alternatives?
Thanks.</p>
http://stackoverflow.com/questions/611748/why-wont-an-anchor-tag-generated-with-jquery-fire-its-onclick-event0Why won't an anchor tag generated with JQuery fire its onclick event?Si Keep2009-03-04T18:02:09Z2009-03-05T02:23:42Z
<p>I am dynamically generating an anchor tag using jQuery. I have added an onclick attribute to it but when I click on the link the onclick does not fire.</p>
<p>I am generating the link as follows:</p>
<pre><code>$(document).ready(function() {
var attributes = {
"id": "xxx",
"onclick": "alert('xxxx');",
"href": "https://localhost/widget/TabTest.aspx#"
};
var link = $.create("a", attributes);
$(link).append("xxxx");
$("#WidgetContainer").append(link);
});
</code></pre>
http://stackoverflow.com/questions/594835/how-do-i-specify-multiple-interfaces-when-registering-a-class-in-the-ajax-client1How do I specify multiple interfaces when registering a class in the Ajax Client script?Si Keep2009-02-27T13:52:17Z2009-02-27T13:52:17Z
<p>I am using the Microsoft Ajax Client library to write some OO javascript.
It is possible to mark a class with an interface as follows:</p>
<pre><code>Widgets.IndividualLinker.registerClass('Widgets.IndividualLinker', null, Widgets.ILinker);
</code></pre>
<p>Does anyone know how to register multiple interfaces on a class?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/15241/does-anyone-have-any-real-world-experience-of-csla/32451#324518Answer by Si Keep for Does anyone have any real-world experience of CSLA?Si Keep2008-08-28T14:42:25Z2009-02-23T08:56:59Z<p>In defence of the CSLA, although I do agree with many of the comments that have been made particularly the unit testing one...</p>
<p>My company used it extensively for a Windows Forms data entry application, with a high degree of success.</p>
<ul>
<li>It provided out of the box functionality that we didn't have the time or expertise to write ourselves.</li>
<li>It standardised all of our business objects making maintenance easy and reducing the learning curve for our new developers.</li>
</ul>
<p>On the whole I would say that any issues that it caused were more than outwayed by the benefits.</p>
<p>UPDATE: Further to this we are still using it for our windows forms app but experiments with using it for other applications such as web sites have shown that it is perhaps to cumbersome when you don't need much of its functionality and we are now investigating lighter weight options for these scenarios.</p>
http://stackoverflow.com/questions/508054/c-passing-current-object-into-another-object/508113#5081130Answer by Si Keep for C# passing current object into another object?Si Keep2009-02-03T17:35:33Z2009-02-04T09:07:04Z<p>How about using a static method that constructs BusinessLogic and then constructs BusinesLogicSubClass passing the BusinessLogic instance into its constuctor.</p>
<p>Then use a property on the BusinessLogic instance to pass in BusinesLogicSubClass?</p>
<p>For example...</p>
<pre><code>public class BusinessLogic
{
private BusinessLogicSubClass subClass;
private BusinessLogic()
{
}
public static BusinessLogic CreateBusinessLogic()
{
BusinessLogic bl = new BusinessLogic();
BusinessLogicSubClass blsc = new BusinessLogicSubClass(bl);
bl.subClass = blsc;
return bl;
}
}
</code></pre>
<p>So the constructor is marked private so the only way to construct the object is via a call to the static method like this...</p>
<pre><code>BusinessLogic bl = BusinessLogic.CreateBusinessLogic();
</code></pre>
http://stackoverflow.com/questions/508026/is-it-possible-to-determine-the-users-time-from-a-web-request4Is it possible to determine the users time from a web request?Si Keep2009-02-03T17:18:56Z2009-02-03T19:07:35Z
<p>Is it possible on a web server to determine the users local time and timezone when they sent the request? </p>
<p>Could it be done using javascript to capture it and post it back to the server?</p>
<p>My company want to track how many users use our site outside of office hours (no I dont really know why either!).</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644554#1644554Comment by Si Keep on Does .Net have any built in constants for common numbers like million, billion etc?Si Keep2009-10-29T16:00:50Z2009-10-29T16:00:50ZCouldnt there be 2 constants for billion, with different names?http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644647#1644647Comment by Si Keep on Does .Net have any built in constants for common numbers like million, billion etc?Si Keep2009-10-29T15:52:01Z2009-10-29T15:52:01Zin a strange way, I really like that.http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644480#1644480Comment by Si Keep on Does .Net have any built in constants for common numbers like million, billion etc?Si Keep2009-10-29T15:50:54Z2009-10-29T15:50:54Zer, yes in my application.http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-etComment by Si Keep on Does .Net have any built in constants for common numbers like million, billion etc?Si Keep2009-10-29T15:42:05Z2009-10-29T15:42:05ZRe: Rex M - no, but I am expecting to compare numbers to it in various places so using a constant would be more readable.http://stackoverflow.com/questions/953071/whats-a-easy-way-to-truncate-an-array-with-jquery/953084#953084Comment by Si Keep on What's a easy way to truncate an array with Jquery?Si Keep2009-10-28T09:00:17Z2009-10-28T09:00:17ZWouldnt (0,4) return the first 4 not the first 5?http://stackoverflow.com/questions/1495988/how-can-i-check-if-a-string-contains-a-number-smaller-than-an-integer/1593208#1593208Comment by Si Keep on How can I check if a string contains a number smaller than an integer?Si Keep2009-10-20T08:57:44Z2009-10-20T08:57:44ZHi and welcome to SO. A couple of pointers...its better to actually show the solution rather than linking to a page as the linked page may be taken down in the future so SO would lose the answer. Its also not necessary to sign your name.http://stackoverflow.com/questions/1576843/is-it-good-practise-to-have-multiple-class-definitions-in-one-file/1576869#1576869Comment by Si Keep on Is it good practise to have multiple class definitions in one file?Si Keep2009-10-16T08:53:17Z2009-10-16T08:53:17Z+1 Resharper negates the navigation problem (ctrl T).http://stackoverflow.com/questions/1576843/is-it-good-practise-to-have-multiple-class-definitions-in-one-file/1576897#1576897Comment by Si Keep on Is it good practise to have multiple class definitions in one file?Si Keep2009-10-16T08:51:47Z2009-10-16T08:51:47ZYou are right, I had always assumed it was best practice to have one class per file, but I seem to come across more and more code where that is not the case. Even code written by industry experts.http://stackoverflow.com/questions/1454642/is-there-a-hotkey-in-visual-studio-to-open-the-member-drop-down-list/1506881#1506881Comment by Si Keep on Is there a hotkey in Visual Studio to open the member drop down list?Si Keep2009-10-12T08:13:57Z2009-10-12T08:13:57ZI think you are more likely to get a response to this if you raise it as a new queston.http://stackoverflow.com/questions/12369/vs2008-sp1-crashes-when-debugging-an-xslt-file/1007063#1007063Comment by Si Keep on VS2008 SP1 crashes when debugging an XSLT fileSi Keep2009-09-02T16:36:24Z2009-09-02T16:36:24ZI use Team System but disabling that in the same way as described here solved the problem.http://stackoverflow.com/questions/1322544/how-to-make-a-linq-sum-return-null-if-the-summed-values-are-all-null/1322604#1322604Comment by Si Keep on How to make a linq Sum return null if the summed values are all nullSi Keep2009-08-24T14:28:15Z2009-08-24T14:28:15ZAlthough this does enumerate the results twice, My collections are small and I find this the most readable. So Have accepted it. Thanks everyone.http://stackoverflow.com/questions/1322544/how-to-make-a-linq-sum-return-null-if-the-summed-values-are-all-nullComment by Si Keep on How to make a linq Sum return null if the summed values are all nullSi Keep2009-08-24T14:16:52Z2009-08-24T14:16:52ZDurationMonths is int?http://stackoverflow.com/questions/1192590/how-can-i-tell-when-the-last-row-of-a-listview-data-source-is-being-boundComment by Si Keep on How can I tell when the last row of a ListView data source is being bound?Si Keep2009-07-28T08:15:11Z2009-07-28T08:15:11ZNo I'm not using them at the moment.http://stackoverflow.com/questions/1170781/how-can-i-add-a-registered-trademark-symbol-r-to-an-aspradiobutton-control-dec/1170792#1170792Comment by Si Keep on How can I add a registered trademark symbol (R) to an asp:RadioButton control declaritively?Si Keep2009-07-23T10:14:25Z2009-07-23T10:14:25ZThanks Brian, thats a useful link.http://stackoverflow.com/questions/653486/asp-net-conditional-databinding/653681#653681Comment by Si Keep on ASP.Net conditional databindingSi Keep2009-06-29T14:55:46Z2009-06-29T14:55:46ZI think its the Eval that causes the problem. You cant mix conditional logic within the databinding.