User bryanbcook - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:47:47Z http://stackoverflow.com/feeds/user/30809 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1806922/building-profiling-support-into-the-code/1806978#1806978 1 Answer by bryanbcook for Building profiling support into the code bryanbcook 2009-11-27T05:48:44Z 2009-11-27T05:48:44Z <p>The .NET framework profiler API is a COM object that intercepts calls before .NET handles them. My understanding is that it cannot be hosted in managed (C#) code.</p> <p>Depending on what you want to do, you can insert Stopwatch timers to measure length of calls, or add Performance Counters to your application so that you can monitor the performance of the application from the Performance Monitor.</p> http://stackoverflow.com/questions/1641015/how-to-cope-with-rejected-on-git-push/1641118#1641118 -2 Answer by bryanbcook for How to cope with "rejected" on git push? bryanbcook 2009-10-29T01:15:38Z 2009-10-29T01:15:38Z <p>Beer! All the coping you need in liquid form.</p> http://stackoverflow.com/questions/1641040/c-xpath-with-an-or/1641105#1641105 1 Answer by bryanbcook for c# xpath with an OR bryanbcook 2009-10-29T01:12:08Z 2009-10-29T01:12:08Z <p>The following would also work:</p> <pre><code> /users/user[location='ny' | status='1'] </code></pre> http://stackoverflow.com/questions/1564681/running-vsts-tests-without-mstest-exe/1585834#1585834 3 Answer by bryanbcook for Running VSTS tests without mstest.exe bryanbcook 2009-10-18T19:44:30Z 2009-10-21T16:25:24Z <p>You can execute Team System Tests (MSTest) in NUnit if you use a special NUnit Addin that recognizes the MS Test Attributes (TestClass, etc).</p> <p>Exact Magic Software has an <a href="http://www.exactmagic.com/blog/2008/02/09/microsoft-team-system-nunit-adapter/" rel="nofollow">open-source "test-adapter"</a> that can do this.</p> <p><strong>UPDATE:</strong> I've reworked Exact Magic's Msts NUnit Adapter for NUnit 2.5.2.</p> <ul> <li>Download here: <a href="http://snippetware.googlecode.com/files/ExactMagic.MstsAdapter.zip" rel="nofollow">http://snippetware.googlecode.com/files/ExactMagic.MstsAdapter.zip</a></li> <li>Read more about it <a href="http://www.bryancook.net/2009/10/mstest-nunit-adapter.html" rel="nofollow">here: <a href="http://www.bryancook.net/2009/10/mstest-nunit-adapter.html" rel="nofollow">http://www.bryancook.net/2009/10/mstest-nunit-adapter.html</a></a></li> </ul> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237476#237476 10 Answer by bryanbcook for What coding mistakes are a telltale giveaway of an inexperienced programmer? bryanbcook 2008-10-26T03:29:25Z 2009-10-17T04:33:59Z <pre><code>public enum DayOfTheWeek { Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6, Sunday = 7 } // somewhere else public DayOfTheWeek ConvertToEnum(int dayOfWeek) { if (dayOfWeek == DayOfTheWeek.Monday) { return DayOfTheWeek.Monday; } else if (dayOfWeek == DayOfTheWeek.Tuesday) { return DayOfTheWeek.Tuesday; } else if (dayOfWeek == DayOfTheWeek.Wednesday) { return DayOfTheWeek.Wednesday; } else if (dayOfWeek == DayOfTheWeek.Thursday) { return DayOfTheWeek.Thursday; } else if (dayOfWeek == DayOfTheWeek.Friday) { return DayOfTheWeek.Friday; } else if (dayOfWeek == DayOfTheWeek.Saturday) { return DayOfTheWeek.Saturday; } else if (dayOfWeek == DayOfTheWeek.Sunday) { return DayOfTheWeek.Sunday; } } </code></pre> <p>when the following would have worked fine:</p> <pre><code>DayOfTheWeek dayOfWeek = (DayOfTheWeek)Enum.Parse(typeof(DayOfTheWeek), dayOfWeek.ToString()); </code></pre> http://stackoverflow.com/questions/1496126/really-bizarre-c-generics-question/1496163#1496163 0 Answer by bryanbcook for Really bizarre C# generics question bryanbcook 2009-09-30T04:53:19Z 2009-09-30T04:53:19Z <p>Generics can create some unwieldy class hierarchies. However, the syntax for SpecificObject : SampleObject does make sense, since you're stating that the object has a parent relationship. The only other way I could see you do this, would be to split out the hierarchy with an interface. It doesn't buy much, but it may help clarify the intent.</p> <pre><code>interface IHasParent&lt;T&gt; { T Parent { get; set; } } public class SpecificObject : IHasParent&lt;SpecificObject&gt; { public SpecificObject Parent { get; set; } } </code></pre> <p>If you're concerned about how verbose your collection is, you can tame the angle brackets a bit by using:</p> <pre><code>public SpecificObjectContainer : Container&lt;SpecificObject&gt; { } </code></pre> http://stackoverflow.com/questions/1477846/simulate-web-page-keystroke/1477860#1477860 2 Answer by bryanbcook for simulate Web Page keystroke bryanbcook 2009-09-25T15:06:52Z 2009-09-25T15:06:52Z <p>There are many different options:</p> <ul> <li><a href="http://seleniumhq.org" rel="nofollow">Selenium</a></li> <li><a href="http://watin.sourceforge.net/" rel="nofollow">WaitN</a></li> </ul> <p>are open source projects that provide functional web testing. You can use testing frameworks like NUnit, xUnit, mbUnit to playback your tests.</p> http://stackoverflow.com/questions/1472223/where-should-i-put-miscellaneous-functions-in-a-net-project/1472275#1472275 5 Answer by bryanbcook for Where should I put miscellaneous functions in a .NET project? bryanbcook 2009-09-24T14:59:43Z 2009-09-24T14:59:43Z <p>Be careful!</p> <ul> <li><p>Generic utility functions which are cross cutting should live in a higher utility namespace. String parsing, File manipulation, etc.</p></li> <li><p>Extension objects should live in their own namespace.</p></li> <li><p>Utility functions that apply to a specify set of business objects or methods should live within the namespace of those objects. Often with a Helper suffix, ie BusinessObjectHelper. <strong>Naming is important here</strong>. Are you creating a container for miscellaneous methods, or would it make more sense to group them into specialized objects, ie a parser?</p></li> </ul> http://stackoverflow.com/questions/1466039/jquery-determine-if-a-li-contains-a-ul/1466063#1466063 3 Answer by bryanbcook for jQuery: determine if a <li> contains a <ul> bryanbcook 2009-09-23T13:37:29Z 2009-09-23T13:37:29Z <p>Use the <a href="http://docs.jquery.com/Selectors/has#selector" rel="nofollow">has selector</a>.</p> <pre><code>$("li:has(ul)").addClass("parent") </code></pre> http://stackoverflow.com/questions/1358034/is-there-a-good-reference-sharepoints-databinding-syntax 1 Is there a good reference SharePoint's databinding syntax? bryanbcook 2009-08-31T15:34:19Z 2009-09-23T13:32:58Z <p>I'm putting asp server-controls into my SharePoint XSLT using SharePoint Designer. I've found it's really handy for pre-populating values into the form, or providing a different experience than the SharePoint defined layout (hidden fields, etc).</p> <p>For example, I can use a asp:TextBox control instead of the SharePoint:FormField control if I define it as such:</p> <pre><code>&lt;xsl:stylesheet ... xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime"&gt; &lt;xsl:param name="Name" /&gt; &lt;xsl:template match="/"&gt; &lt;!-- omitted for clarity --&gt; &lt;asp:TextBox id="txtName" runat="server" Text="{$Name}" __designer:bind="{ddwrt:DataBind('i','txtName','Text','TextChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@MySharePointField')}" &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>I've googled but can't seem to find a good reference for the parameters for <em>ddwrt:DataBind</em> method.</p> <p>Does anybody know?</p> http://stackoverflow.com/questions/1358034/is-there-a-good-reference-sharepoints-databinding-syntax/1466032#1466032 0 Answer by bryanbcook for Is there a good reference SharePoint's databinding syntax? bryanbcook 2009-09-23T13:32:58Z 2009-09-23T13:32:58Z <p>The ddwrt:DataBind method is a wrapper for <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webpartpages.dataformwebpart.adddatabinding.aspx" rel="nofollow">DataFormWebPart.AddDataBinding</a></p> <p>The mysterious first parameter refers to the "operation". It will either be "i" (insert), "u" (update), or "d" (delete). Sadly, these are literal values because the XSLT doesn't have access to enumerations, etc.</p> <p>The other curious fields are the propertyName and eventName, which are members of the control you're binding. The event is wired up using reflection to the sharepoint form, and the property is used to retrieve the value.</p> <p>The remaining fields refer to the primary key and value to bind.</p> <p><a href="http://www.bryancook.net/2009/09/understanding-sharepoints-ddwrtdatabind.html" rel="nofollow">Full details on the method signature and how to use it can be found here</a></p> http://stackoverflow.com/questions/1358162/how-to-bind-a-sharepoint-textfield-to-a-dropdownlist 0 How to bind a SharePoint textfield to a dropdownlist? bryanbcook 2009-08-31T16:09:00Z 2009-09-20T02:06:37Z <p>I'm customizing a custom list form in xslt using SharePoint designer. In my list, I have a textbox that represents a numerical value.</p> <p>I would like to present this textbox to the user as a dropdown list with pre-defined values (1-7). Unfortunately, I can't use a SPFieldChoice because it is evaluated as a string in my SharePoint Designer Workflow and there aren't any built-in conversions.</p> <p>I'm hoping that I could simply define an asp DropDownList control and use the ddwrt:DataBind syntax, but the following isn't working.</p> <pre><code>&lt;asp:DropDownList id="ddlValue" runat="server" __designer:bind="{ddwrt:DataBind('i', 'ddlValue', 'SelectedValue', 'OnSelectedIndexChanged', 'ID', ddwrt:EscapeDelims(string(@ID)),'@MyField')}"&gt; &lt;asp:ListItem value="1" selected="true"&gt;1&lt;/asp:ListItem&gt; &lt;asp:ListItem value="2"&gt;2&lt;/asp:ListItem&gt; &lt;asp:ListItem value="3"&gt;3&lt;/asp:ListItem&gt; &lt;asp:ListItem value="4"&gt;4&lt;/asp:ListItem&gt; &lt;asp:ListItem value="5"&gt;5&lt;/asp:ListItem&gt; &lt;asp:ListItem value="6"&gt;6&lt;/asp:ListItem&gt; &lt;asp:ListItem value="7"&gt;7&lt;/asp:ListItem&gt; &lt;/asp:DropDownList&gt; </code></pre> <p>The selected value "1" does get saved with the item when it's created, so it is picking up the databinding. However, if I select any other value, it still records "1".</p> <p>Is the syntax wrong, or is there a better way?</p> <p>What would you do?</p> http://stackoverflow.com/questions/1358162/how-to-bind-a-sharepoint-textfield-to-a-dropdownlist/1358297#1358297 0 Answer by bryanbcook for How to bind a SharePoint textfield to a dropdownlist? bryanbcook 2009-08-31T16:51:28Z 2009-09-20T02:06:37Z <p>Looks like my binding syntax is wrong. Changing it to use the <em>TextChanged</em> event instead of <em>OnSelectedIndexChanged</em>.</p> <p>The following appears to work:</p> <pre><code> __designer:bind="{ddwrt:DataBind('i', 'ddlValue', 'SelectedValue, 'TextChanged', 'ID' ddwrt:EscapeDelims(string(@ID), '@MyField')}" </code></pre> http://stackoverflow.com/questions/1448452/using-bool-return-type-to-handle-exceptions-or-pass-exception-to-client/1448463#1448463 0 Answer by bryanbcook for Using bool (return Type) to handle exceptions or pass exception to client? bryanbcook 2009-09-19T12:26:53Z 2009-09-19T12:26:53Z <p>If a method can't do it's job, it should throw an exception. Never return an exception as a result.</p> http://stackoverflow.com/questions/1432946/c-map-network-drive-from-web-service/1433107#1433107 1 Answer by bryanbcook for C# - Map Network drive from Web Service bryanbcook 2009-09-16T13:52:00Z 2009-09-16T13:52:00Z <p>The LOCAL_SYSTEM account presents Anonymous <a href="http://msdn.microsoft.com/en-us/library/ms684188%28VS.85%29.aspx" rel="nofollow">credentials on the network</a>. You could use a UNC network share to access this information, provided that anonymous (Everyone) has access to the share.</p> <p>You can also <a href="http://www.ultidev.com/products/Cassini/CassiniDevGuide.htm" rel="nofollow">install Cassini as a windows service</a> which you could configure to run under a different user.</p> http://stackoverflow.com/questions/456299/best-practice-override-ondisposebool-disposing-vs-disposed-event-on-component/456320#456320 2 Answer by bryanbcook for Best practice: Override OnDispose(bool disposing) vs Disposed event on Component. bryanbcook 2009-01-19T01:50:43Z 2009-09-16T03:37:22Z <p>Typically events are used by consumers so that they can be notified when events occur. If you're extending the Type and need to clean up resources you should override Dispose(bool disposing)</p> <p>Spence is partly right about the Event handler, multiple events can be assigned but the issue is that you can't guarantee the order in which the Events are handled.</p> <p>Sealing the class often depends on what you're designing.</p> <p>The FxCop rule also has some good info: <a href="http://msdn.microsoft.com/en-us/library/ms244737%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms244737%28VS.80%29.aspx</a></p> http://stackoverflow.com/questions/1427728/deploying-net-web-servics/1427802#1427802 3 Answer by bryanbcook for Deploying .NET Web Servics bryanbcook 2009-09-15T15:13:08Z 2009-09-15T15:31:29Z <p>The asmx file is simply a pointer to the C# code file. You can include the asmx files anywhere in your web project.</p> <p>You can create a Web Service project in Visual Studio IDE, or simply create a Class Library and add the necessary references.</p> <p>A web service project uses the following DLLs:</p> <ul> <li>System.EnterpriseServices</li> <li>System.Web</li> <li>System.Web.Extensions</li> <li>System.Web.Mobile</li> <li>System.Web.Services</li> </ul> <p>And the following web.config reference:</p> <pre><code>&lt;configSections&gt; &lt;sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/&gt; &lt;sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"&gt; &lt;section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" /&gt; &lt;section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; &lt;httpHandlers&gt; &lt;remove verb="*" path="*.asmx"/&gt; &lt;add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;/httpHandlers&gt; </code></pre> http://stackoverflow.com/questions/1427729/how-do-you-find-mismatched-tags-in-html/1427769#1427769 1 Answer by bryanbcook for How do you find mismatched tags in HTML? bryanbcook 2009-09-15T15:07:12Z 2009-09-15T15:07:12Z <p><a href="http://www.w3.org/People/Raggett/tidy/" rel="nofollow">HTML Tidy</a> is a great command line tool. I often use it with <a href="http://pages.interlog.com/~tcharron/wgetwin.html" rel="nofollow">WGet</a></p> http://stackoverflow.com/questions/1417719/securing-post-data-in-web-application/1417788#1417788 1 Answer by bryanbcook for Securing POST data in web application bryanbcook 2009-09-13T13:48:14Z 2009-09-13T13:48:14Z <p>Use a <a href="http://en.wikipedia.org/wiki/CAPTCHA" rel="nofollow">CAPTCHA</a> image.</p> <p>The web is built on REST, which by definition is all about transferring state from one point to another. Someone with enough time on their hands could craft a POST request that emulates an active session.</p> <p>Like all secure requests, CAPTCHA is validated server-side.</p> http://stackoverflow.com/questions/1415861/how-to-develop-a-webform-in-blogspot/1415896#1415896 1 Answer by bryanbcook for how to develop a webform in blogspot bryanbcook 2009-09-12T19:21:01Z 2009-09-12T19:21:01Z <p>You would need something to create a mail message and send it for you. Typically this happens on the server-side logic. Blogger doesn't support any server-side logic features like sending email.</p> <p>Instead, you would have to do this type of logic client-side or hosted elsewhere and displayed on your page using an IFRAME.</p> <p>The client-side route means you'd use JavaScript to pull the values out of your form and then post it to a web-service somewhere. However, if you had a web-service somewhere, you probably wouldn't be using blogspot to host your blog.</p> <p>The other alternative would be to use a <em>mailto</em> tag:</p> <p> <p>The downside to this approach is that your email address would be visible to the user.</p> http://stackoverflow.com/questions/1415865/no-line-breaks-with-text-file-with-asp-net/1415881#1415881 0 Answer by bryanbcook for No Line Breaks with Text file with asp.net bryanbcook 2009-09-12T19:14:01Z 2009-09-12T19:14:01Z <p>HTML doesn't recognize white-space (line breaks, etc) in your text file. If you want to render the content as HTML, you'll need to convert line-breaks into <code>&lt;br/</code>> tags.</p> http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411431#1411431 19 Answer by bryanbcook for How to become a "faster" programmer? bryanbcook 2009-09-11T15:00:07Z 2009-09-12T07:18:00Z <p>Keep it simple.</p> <p>If you use TDD, you should follow "<strong>red, green, refactor</strong>":</p> <ol> <li>Write a failing test (<strong>red</strong>). (Often for functionality your code does not yet have.)</li> <li>Commit horrible coding crimes to get your tests to pass (<strong>green</strong>). Hardcode if necessary.</li> <li><strong>Refactor</strong>, probably breaking tests for a short while, but overall improving the design.</li> </ol> http://stackoverflow.com/questions/1412672/suggest-any-asp-net-control-for-adding-date-of-birth-by-specify-day-month-year/1412749#1412749 0 Answer by bryanbcook for suggest any Asp.net control for adding date of birth by specify day,month & year in each dropdown control bryanbcook 2009-09-11T19:06:45Z 2009-09-11T19:06:45Z <p>There are a wealth of Calendar controls available with various pricing at the ASP.NET Community web site: <a href="http://www.asp.net/community/control-gallery/browse.aspx?category=52" rel="nofollow">http://www.asp.net/community/control-gallery/browse.aspx?category=52</a></p> http://stackoverflow.com/questions/1411289/catching-specific-vs-generic-exceptions-in-c/1411329#1411329 0 Answer by bryanbcook for Catching specific vs. generic exceptions in c# bryanbcook 2009-09-11T14:44:33Z 2009-09-11T14:44:33Z <p>As a best practice, you should avoid catching <em>Exception</em> and using flags as return values.</p> <p>Instead, you should design custom exceptions for expected exceptions and catch those directly. Anything else should bubble up as an unexpected exception.</p> <p>In your example above, you may want to rethrow a more business specific Exception.</p> http://stackoverflow.com/questions/1411247/how-to-find-whether-a-checkbox-is-selected-inside-a-div-using-jquery/1411298#1411298 0 Answer by bryanbcook for How to find whether a checkbox is selected inside a div using JQuery? bryanbcook 2009-09-11T14:40:03Z 2009-09-11T14:40:03Z <p>You may get better performance by splitting out the selectors.</p> <pre><code>$("#listColumns").find("input:checked").each(function() { alert(this.id); }); </code></pre> http://stackoverflow.com/questions/1411143/jquery-selector-performance/1411198#1411198 1 Answer by bryanbcook for jQuery selector performance bryanbcook 2009-09-11T14:23:58Z 2009-09-11T14:23:58Z <p>There's a really interesting article on selector performance here: <a href="http://blogs.atlassian.com/developer/2009/08/jquery%5Fbondage.html" rel="nofollow">http://blogs.atlassian.com/developer/2009/08/jquery%5Fbondage.html</a></p> <p>In it, the author shows a "bind" jQuery extension that shows how many times the function is evaluated.</p> http://stackoverflow.com/questions/1410992/whats-the-easiest-way-to-get-just-the-top-level-text-of-an-xmlelement/1411059#1411059 2 Answer by bryanbcook for What's the easiest way to get just the top-level text of an XmlElement? bryanbcook 2009-09-11T14:02:54Z 2009-09-11T14:02:54Z <p>Technically, the text within the TopElement is a childnode.</p> <pre><code>class Program { static string xml = @"&lt;Top&gt;Text&lt;child/&gt;&lt;child/&gt;&lt;/Top&gt;"; static void Main(string[] args) { XmlDocument xdoc = new XmlDocument(); xdoc.LoadXml(xml); Console.WriteLine(xdoc.DocumentElement.ChildNodes[0].Value); Console.ReadLine(); } } </code></pre> http://stackoverflow.com/questions/1393683/vs-net-set-version-for-multiple-projects-in-one-solution/1395558#1395558 2 Answer by bryanbcook for VS.net set version for multiple projects in one solution bryanbcook 2009-09-08T18:32:38Z 2009-09-08T18:32:38Z <p>I typically store the assembly version attributes in a separate <em>AssemblyVersion.cs</em> file and place it at the root folder of my solution.</p> <p>Then I <em><a href="http://msdn.microsoft.com/en-us/library/9f4t9t92.aspx" rel="nofollow">link</em> the file to each project</a>:</p> <ol> <li>Context-menu on Project and choose "Add Existing Item"</li> <li>Select the file from the root folder</li> <li>Click on the Drop-down menu next to the "Add" button" and select "Add as Link"</li> </ol> <p>Unfortunately, I haven't found a clean way in MSBuild to auto-generate the version number before the solution compiles. (I believe MSBuild only has events per project, not per solution -- maybe someone else out there knows)</p> <p>Instead, I use nant to compile the solution and use the <em><a href="http://nant.sourceforge.net/release/latest/help/tasks/asminfo.html" rel="nofollow">asminfo</a></em> task to generate the <em>AssemblyVersion.cs</em> file.</p> http://stackoverflow.com/questions/1395168/approval-status-field-doesnt-appear-in-custom-dataformwebpart 0 Approval Status field doesn't appear in custom DataFormWebPart bryanbcook 2009-09-08T17:17:09Z 2009-09-08T17:17:09Z <p>I've got a very simple DataFormWebPart showing a single list item using XSLT.</p> <p>I'd like to customize the display of the current Approval Status, but it doesn't render at all. The standard ListFormWebPart showed this field without issue, so there isn't a configuration issue with the List.</p> <p>The column "Approval Status" is mapped to the attribute "@_ModerationStatus" and it is (by default) in the list of DataFields for the DataFormWebPart.</p> <p>If I render out the Row's XML using the following technique, I notice that the _ModerationStatus field isn't in the result set.</p> <pre><code>&lt;xmp&gt;&lt;xsl:copy-of select="." /&gt;&lt;/xmp&gt; </code></pre> <p>Is there something I need to do to configure the DataFormWebPart to make this field available?</p> http://stackoverflow.com/questions/1391878/tdd-adding-a-method-to-test-state/1391912#1391912 2 Answer by bryanbcook for TDD: Adding a method to test state bryanbcook 2009-09-08T04:06:36Z 2009-09-08T04:06:36Z <p>Interesting question. I'm glad to hear you're writing the tests first.</p> <p>If you let the design manifest itself through the tests, you're more likely to build only the parts you'll need. But is this the best design? Maybe not, but don't let that discourage you -- your add method works!</p> <p>It may be too early to tell if you'll need the GetModule method later. For now, build up the functionality you need and go green, then slowly refactor it (going from red to green again) to get the design you want.</p> http://stackoverflow.com/questions/1564681/running-vsts-tests-without-mstest-exe/1585834#1585834 Comment by bryanbcook on Running VSTS tests without mstest.exe bryanbcook 2009-10-20T04:09:37Z 2009-10-20T04:09:37Z I'm looking at the source, as expected, they're referencing nunit-core.dll, which makes the addin version specific. I've done a bit of nunit addin development, I'll take a poke at this and let you know what I find. http://stackoverflow.com/questions/1564681/running-vsts-tests-without-mstest-exe/1585834#1585834 Comment by bryanbcook on Running VSTS tests without mstest.exe bryanbcook 2009-10-19T05:58:32Z 2009-10-19T05:58:32Z Often, NUnit addins are tied to the framework under which they were compiled. Has to do with the way NUnit and the addin resolve dependencies. If they provide the source, you should be able to recompile with an updated reference. That's assuming they aren't doing something specific with the 2.4.6 core assemblies, though for the most part the core interfaces haven't changed much. If I find the time, I might give this a go. http://stackoverflow.com/questions/1411190/ui-testing-tool/1411213#1411213 Comment by bryanbcook on UI Testing Tool? bryanbcook 2009-09-30T05:04:32Z 2009-09-30T05:04:32Z White is a wrapper around the UI Automation Framework. It adds a neat hook that waits for the process's input thread to go idle before proceeding to the next command, which ultimately means it runs as the speed of your machine and doesn't need Thread.Sleep calls. http://stackoverflow.com/questions/1477846/simulate-web-page-keystroke/1477862#1477862 Comment by bryanbcook on simulate Web Page keystroke bryanbcook 2009-09-25T15:09:58Z 2009-09-25T15:09:58Z You may want to check out <a href="http://seleniumtoolkit.codeplex.com/" rel="nofollow">seleniumtoolkit.codeplex.com</a> that provides C# utilities for Selenium RC http://stackoverflow.com/questions/1449307/how-to-perform-testing-of-web-services-and-wcf/1449373#1449373 Comment by bryanbcook on How to perform testing of web services and WCF? bryanbcook 2009-09-19T20:08:07Z 2009-09-19T20:08:07Z +1 mention of integration testing. It's one thing to test as a unit, but if it's part of a deployment package, there really should be a few automated tests to verify the service is available. http://stackoverflow.com/questions/1449307/how-to-perform-testing-of-web-services-and-wcf/1449377#1449377 Comment by bryanbcook on How to perform testing of web services and WCF? bryanbcook 2009-09-19T20:01:59Z 2009-09-19T20:01:59Z +1 for Pex. It's a neat concept that combines unit-testing with code profiling to find alternative inputs that you should test for. http://stackoverflow.com/questions/1432946/c-map-network-drive-from-web-service/1432988#1432988 Comment by bryanbcook on C# - Map Network drive from Web Service bryanbcook 2009-09-16T13:53:25Z 2009-09-16T13:53:25Z The Local System account does have network access, but it presents anonymous credentials to network resources. http://stackoverflow.com/questions/1417719/securing-post-data-in-web-application/1417772#1417772 Comment by bryanbcook on Securing POST data in web application bryanbcook 2009-09-16T13:35:57Z 2009-09-16T13:35:57Z The anti-forgery-token simply means the page was posted from a previous GET, which limits basic fraudulent POSTs. Any variety of screen recorders could record/playback these pages. http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411431#1411431 Comment by bryanbcook on How to become a "faster" programmer? bryanbcook 2009-09-12T19:07:05Z 2009-09-12T19:07:05Z @Konstantin, if you consider &quot;development&quot; to be the act of writing the code statement, I would agree with you. However, if you consider &quot;development&quot; to include packaging, preparing build notes, deploying, testing, producing defect reports, reviewing and prioritizing defects, task assignment, investigation, debugging and fixing and starting the process over again -- then the 15 minutes to write the unit test outweighs the days and loss of customer confidence 1000x over. http://stackoverflow.com/questions/1410992/whats-the-easiest-way-to-get-just-the-top-level-text-of-an-xmlelement/1411059#1411059 Comment by bryanbcook on What's the easiest way to get just the top-level text of an XmlElement? bryanbcook 2009-09-11T14:15:53Z 2009-09-11T14:15:53Z Absolutely. I don't see anything wrong with the solution you've provided above. InnerText takes the text of all childnodes. If you want the text of a specific childNode, you will have to iterate through them to find it. http://stackoverflow.com/questions/1391878/tdd-adding-a-method-to-test-state/1391917#1391917 Comment by bryanbcook on TDD: Adding a method to test state bryanbcook 2009-09-08T04:12:01Z 2009-09-08T04:12:01Z Or you could add the InternalsVisibleTo attribute to let your tests see internal methods. http://stackoverflow.com/questions/1391846/cannot-save-integer-if-it-is-empty Comment by bryanbcook on Cannot save integer if it is empty. bryanbcook 2009-09-08T03:51:22Z 2009-09-08T03:51:22Z ah yes, the lovely &quot;input string was not in a correct format&quot; error... memories. http://stackoverflow.com/questions/1391718/selenium-ide-click-timeout Comment by bryanbcook on Selenium IDE click() timeout bryanbcook 2009-09-08T03:12:46Z 2009-09-08T03:12:46Z Can you provide some more detail: target browser, operating system, selenium core or RC? (The image looks like it's from Selenium IDE). Does the script pause until the click has turned red before continuing? http://stackoverflow.com/questions/1358034/is-there-a-good-reference-sharepoints-databinding-syntax Comment by bryanbcook on Is there a good reference SharePoint's databinding syntax? bryanbcook 2009-09-07T20:33:57Z 2009-09-07T20:33:57Z This question is now a tumbleweed. I'm going to have start researching this myself. http://stackoverflow.com/questions/1362666/how-do-i-include-my-own-wsdl-in-my-webservice-in-c/1368054#1368054 Comment by bryanbcook on How do I include my own wsdl in my Webservice in C# bryanbcook 2009-09-03T15:11:42Z 2009-09-03T15:11:42Z Then change the disco file to point to your wsdl