User bryanbcook - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T00:47:47Zhttp://stackoverflow.com/feeds/user/30809http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806922/building-profiling-support-into-the-code/1806978#18069781Answer by bryanbcook for Building profiling support into the codebryanbcook2009-11-27T05:48:44Z2009-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-2Answer by bryanbcook for How to cope with "rejected" on git push?bryanbcook2009-10-29T01:15:38Z2009-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#16411051Answer by bryanbcook for c# xpath with an ORbryanbcook2009-10-29T01:12:08Z2009-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#15858343Answer by bryanbcook for Running VSTS tests without mstest.exebryanbcook2009-10-18T19:44:30Z2009-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#23747610Answer by bryanbcook for What coding mistakes are a telltale giveaway of an inexperienced programmer?bryanbcook2008-10-26T03:29:25Z2009-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#14961630Answer by bryanbcook for Really bizarre C# generics questionbryanbcook2009-09-30T04:53:19Z2009-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<T>
{
T Parent { get; set; }
}
public class SpecificObject : IHasParent<SpecificObject>
{
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<SpecificObject>
{
}
</code></pre>
http://stackoverflow.com/questions/1477846/simulate-web-page-keystroke/1477860#14778602Answer by bryanbcook for simulate Web Page keystrokebryanbcook2009-09-25T15:06:52Z2009-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#14722755Answer by bryanbcook for Where should I put miscellaneous functions in a .NET project? bryanbcook2009-09-24T14:59:43Z2009-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#14660633Answer by bryanbcook for jQuery: determine if a <li> contains a <ul>bryanbcook2009-09-23T13:37:29Z2009-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-syntax1Is there a good reference SharePoint's databinding syntax?bryanbcook2009-08-31T15:34:19Z2009-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><xsl:stylesheet ... xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime">
<xsl:param name="Name" />
<xsl:template match="/">
<!-- omitted for clarity -->
<asp:TextBox id="txtName" runat="server" Text="{$Name}"
__designer:bind="{ddwrt:DataBind('i','txtName','Text','TextChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@MySharePointField')}"
</xsl:template>
</xsl:stylesheet>
</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#14660320Answer by bryanbcook for Is there a good reference SharePoint's databinding syntax?bryanbcook2009-09-23T13:32:58Z2009-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-dropdownlist0How to bind a SharePoint textfield to a dropdownlist?bryanbcook2009-08-31T16:09:00Z2009-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><asp:DropDownList id="ddlValue" runat="server"
__designer:bind="{ddwrt:DataBind('i', 'ddlValue',
'SelectedValue', 'OnSelectedIndexChanged', 'ID',
ddwrt:EscapeDelims(string(@ID)),'@MyField')}">
<asp:ListItem value="1" selected="true">1</asp:ListItem>
<asp:ListItem value="2">2</asp:ListItem>
<asp:ListItem value="3">3</asp:ListItem>
<asp:ListItem value="4">4</asp:ListItem>
<asp:ListItem value="5">5</asp:ListItem>
<asp:ListItem value="6">6</asp:ListItem>
<asp:ListItem value="7">7</asp:ListItem>
</asp:DropDownList>
</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#13582970Answer by bryanbcook for How to bind a SharePoint textfield to a dropdownlist?bryanbcook2009-08-31T16:51:28Z2009-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#14484630Answer by bryanbcook for Using bool (return Type) to handle exceptions or pass exception to client?bryanbcook2009-09-19T12:26:53Z2009-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#14331071Answer by bryanbcook for C# - Map Network drive from Web Servicebryanbcook2009-09-16T13:52:00Z2009-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#4563202Answer by bryanbcook for Best practice: Override OnDispose(bool disposing) vs Disposed event on Component.bryanbcook2009-01-19T01:50:43Z2009-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#14278023Answer by bryanbcook for Deploying .NET Web Servicsbryanbcook2009-09-15T15:13:08Z2009-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><configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpHandlers>
</code></pre>
http://stackoverflow.com/questions/1427729/how-do-you-find-mismatched-tags-in-html/1427769#14277691Answer by bryanbcook for How do you find mismatched tags in HTML?bryanbcook2009-09-15T15:07:12Z2009-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#14177881Answer by bryanbcook for Securing POST data in web applicationbryanbcook2009-09-13T13:48:14Z2009-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#14158961Answer by bryanbcook for how to develop a webform in blogspotbryanbcook2009-09-12T19:21:01Z2009-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#14158810Answer by bryanbcook for No Line Breaks with Text file with asp.netbryanbcook2009-09-12T19:14:01Z2009-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><br/</code>> tags.</p>
http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411431#141143119Answer by bryanbcook for How to become a "faster" programmer?bryanbcook2009-09-11T15:00:07Z2009-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#14127490Answer by bryanbcook for suggest any Asp.net control for adding date of birth by specify day,month & year in each dropdown controlbryanbcook2009-09-11T19:06:45Z2009-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#14113290Answer by bryanbcook for Catching specific vs. generic exceptions in c#bryanbcook2009-09-11T14:44:33Z2009-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#14112980Answer by bryanbcook for How to find whether a checkbox is selected inside a div using JQuery?bryanbcook2009-09-11T14:40:03Z2009-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#14111981Answer by bryanbcook for jQuery selector performancebryanbcook2009-09-11T14:23:58Z2009-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#14110592Answer by bryanbcook for What's the easiest way to get just the top-level text of an XmlElement?bryanbcook2009-09-11T14:02:54Z2009-09-11T14:02:54Z<p>Technically, the text within the TopElement is a childnode.</p>
<pre><code>class Program
{
static string xml = @"<Top>Text<child/><child/></Top>";
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#13955582Answer by bryanbcook for VS.net set version for multiple projects in one solutionbryanbcook2009-09-08T18:32:38Z2009-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-dataformwebpart0Approval Status field doesn't appear in custom DataFormWebPartbryanbcook2009-09-08T17:17:09Z2009-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><xmp><xsl:copy-of select="." /></xmp>
</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#13919122Answer by bryanbcook for TDD: Adding a method to test statebryanbcook2009-09-08T04:06:36Z2009-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#1585834Comment by bryanbcook on Running VSTS tests without mstest.exebryanbcook2009-10-20T04:09:37Z2009-10-20T04:09:37ZI'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#1585834Comment by bryanbcook on Running VSTS tests without mstest.exebryanbcook2009-10-19T05:58:32Z2009-10-19T05:58:32ZOften, 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#1411213Comment by bryanbcook on UI Testing Tool?bryanbcook2009-09-30T05:04:32Z2009-09-30T05:04:32ZWhite 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#1477862Comment by bryanbcook on simulate Web Page keystrokebryanbcook2009-09-25T15:09:58Z2009-09-25T15:09:58ZYou may want to check out <a href="http://seleniumtoolkit.codeplex.com/" rel="nofollow">seleniumtoolkit.codeplex.com</a> that provides C# utilities for Selenium RChttp://stackoverflow.com/questions/1449307/how-to-perform-testing-of-web-services-and-wcf/1449373#1449373Comment by bryanbcook on How to perform testing of web services and WCF?bryanbcook2009-09-19T20:08:07Z2009-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#1449377Comment by bryanbcook on How to perform testing of web services and WCF?bryanbcook2009-09-19T20:01:59Z2009-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#1432988Comment by bryanbcook on C# - Map Network drive from Web Servicebryanbcook2009-09-16T13:53:25Z2009-09-16T13:53:25ZThe 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#1417772Comment by bryanbcook on Securing POST data in web applicationbryanbcook2009-09-16T13:35:57Z2009-09-16T13:35:57ZThe 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#1411431Comment by bryanbcook on How to become a "faster" programmer?bryanbcook2009-09-12T19:07:05Z2009-09-12T19:07:05Z@Konstantin, if you consider "development" to be the act of writing the code statement, I would agree with you. However, if you consider "development" 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#1411059Comment by bryanbcook on What's the easiest way to get just the top-level text of an XmlElement?bryanbcook2009-09-11T14:15:53Z2009-09-11T14:15:53ZAbsolutely. 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#1391917Comment by bryanbcook on TDD: Adding a method to test statebryanbcook2009-09-08T04:12:01Z2009-09-08T04:12:01ZOr you could add the InternalsVisibleTo attribute to let your tests see internal methods. http://stackoverflow.com/questions/1391846/cannot-save-integer-if-it-is-emptyComment by bryanbcook on Cannot save integer if it is empty.bryanbcook2009-09-08T03:51:22Z2009-09-08T03:51:22Zah yes, the lovely "input string was not in a correct format" error... memories.http://stackoverflow.com/questions/1391718/selenium-ide-click-timeoutComment by bryanbcook on Selenium IDE click() timeoutbryanbcook2009-09-08T03:12:46Z2009-09-08T03:12:46ZCan 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-syntaxComment by bryanbcook on Is there a good reference SharePoint's databinding syntax?bryanbcook2009-09-07T20:33:57Z2009-09-07T20:33:57ZThis 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#1368054Comment by bryanbcook on How do I include my own wsdl in my Webservice in C#bryanbcook2009-09-03T15:11:42Z2009-09-03T15:11:42ZThen change the disco file to point to your wsdl