User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T03:54:52Z http://stackoverflow.com/feeds/user/7658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/83982/how-can-i-provide-dynamic-css-styles-or-custom-theme-for-web-site 0 How can I provide dynamic CSS styles or custom theme for web site? landofjoe 2008-09-17T14:43:12Z 2008-10-22T14:29:54Z <p>There are plenty of ways to provide a dynamic style/theme for a web site, but I am looking for some help on some best practices or techniques that have worked well for others.</p> <p>I am creating a web site that needs to provide the ability for customers to create or specify their own colors, style, theme, or layout. I'm not convinced how much flexibility I need yet, but basically I need to provide Branding capabilities.</p> <p>I will be using ASP.NET, and am open to any ideas that will fit within the ASP.NET framework.</p> http://stackoverflow.com/questions/65566/handling-empty-values-with-ado-net-and-addwithvalue/65676#65676 0 Answer by landofjoe for Handling empty values with ADO.NET and AddWithValue() landofjoe 2008-09-15T18:57:06Z 2008-09-15T18:57:06Z <p>I like using the AddWithValue method.</p> <p>I always specify default SQL parameters for the "optional" parameters. That way, if it is empty, ADO.NET will not include the parameter, and the stored procedure will use it's default value.</p> <p>I don't have to deal with checking/passing in DBNull.Value that way.</p> http://stackoverflow.com/questions/62804/how-to-convert-xs-duration-to-timespan-in-vb-net/63219#63219 1 Answer by landofjoe for How to Convert XS Duration to TimeSpan in VB.Net? landofjoe 2008-09-15T14:09:38Z 2008-09-15T15:14:22Z <p>This will convert from xs:duration to TimeSpan:</p> <pre><code>System.Xml.XmlConvert.ToTimeSpan("P0DT1H0M0S") </code></pre> <p>See <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlconvert.totimespan.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.xml.xmlconvert.totimespan.aspx</a></p> http://stackoverflow.com/questions/63463/split-out-ints-from-string/63527#63527 1 Answer by landofjoe for Split out ints from string landofjoe 2008-09-15T14:42:48Z 2008-09-15T14:42:48Z <p>You can instantiate a List&lt;T&gt; from an array.</p> <p>VB.NET:</p> <pre><code>Dim lstIDs as new List(of Integer)(ids.split(',')) </code></pre> <p>This is prone to casting errors though if the array contains non-int elements</p> http://stackoverflow.com/questions/63447/how-do-you-preform-an-if-then-in-a-sql-select/63500#63500 1 Answer by landofjoe for How do you preform an IF...THEN in a SQL SELECT landofjoe 2008-09-15T14:40:04Z 2008-09-15T14:40:04Z <p>Microsoft SQL Server (T-SQL)</p> <p>In a select use:</p> <pre><code>select case when Obsolete = 'N' or InStock = 'Y' then 'YES' else 'NO' end </code></pre> <p>In a where clause, use:</p> <pre><code>where 1 = case when Obsolete = 'N' or InStock = 'Y' then 1 else 0 end </code></pre> http://stackoverflow.com/questions/63090/surrogate-vs-natural-business-keys/63462#63462 2 Answer by landofjoe for Surrogate Vs. Natural/Business Keys landofjoe 2008-09-15T14:35:53Z 2008-09-15T14:35:53Z <p>Always use a single column, surrogate key if at all possible. This makes joins as well as inserts/updates/deletes much cleaner because you're only responsible for tracking a single piece of information to maintain the record.</p> <p>Then, as needed, stack your business keys as unique contraints or indexes. This will keep you data integrity intact.</p> <p>Business logic/natural keys can change, but the phisical key of a table should NEVER change.</p> http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63283#63283 3 Answer by landofjoe for What is the strangest programming language you have used? landofjoe 2008-09-15T14:16:02Z 2008-09-15T14:16:02Z <p>I used LabView once and found it pretty unusual to me. It's a very graphical, sort of drag and drop, programming language. <a href="http://en.wikipedia.org/wiki/LabVIEW" rel="nofollow">Wikipedia: LABVIEW</a></p>