User Deane - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:57:46Z http://stackoverflow.com/feeds/user/60733 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/734373/do-you-have-performance-problems-when-you-work-on-visual-studio-projects-via-a-ne 3 Do you have performance problems when you work on Visual Studio projects via a network share? Deane 2009-04-09T13:58:14Z 2009-11-26T15:16:43Z <p>We have tremendous problems with Visual Studio (2008, if that matters) locking up and slowing down when accessing projects over a network drive. It can take several minutes to open a large Web site project through a mapped drive, and saving even a single file can take a minute or more.</p> <p>I fired up Wireshark and watched the traffic. VS, it seems, requests massive amounts of files from the network -- there's an enormous amount of SMB traffic. I've done some research, and this traffic seems to stem from two situations.</p> <ol> <li>VS has to have everything in its own process to provide Intellisense.</li> <li>VS needs to have all the source in order to compile the project.</li> </ol> <p>All the advice I've read seems to boil down to the same thing: work locally, not on a remote machine, then push your code to an integration server via source control.</p> <p>This would sure solve our problems (VS is quite fast working locally), but what if you <em>can't</em> work locally? What if the project and the infrastructure required to run it is too large and complicated to be replicated on everyone's individual machines?</p> <p>We've gone 'round this problem a couple times, and the only way we can figure to work on these projects is direct access via a mapped drive. However, the VS slowness and lockups are really becoming a problem.</p> <p>One solution: we installed VS on the server and work on the projects directly on the servers via RDP. Seriously.</p> <p>So, I ask:</p> <p>What does everyone else do? Do you work via the network, or do you replicate projects locally? If remotely, do you suffer from VS performance issues.</p> http://stackoverflow.com/questions/1749901/how-can-code-in-a-try-catch-block-throw-an-unhandled-exception 2 How can code in a "try...catch" block throw an unhandled exception? Deane 2009-11-17T16:06:32Z 2009-11-17T16:37:46Z <p>I had an exception in some code today: "A [some exception] was unhandled."</p> <p>However, this code was clearly inside the "try" block of a "try/catch" structure.</p> <p>What am I missing here?</p> <p><strong>Update:</strong> It's C#</p> <p><strong>Update:</strong> Oh, forget it. It turns out the specific mechanism of error is that I'm an idiot. There's no fix for this.</p> http://stackoverflow.com/questions/1558185/can-you-move-or-duplicate-the-special-net-folders-app-in-a-subdirectory 0 Can you move (or duplicate) the "special" .Net folders (App_*) in a subdirectory? Deane 2009-10-13T04:28:28Z 2009-11-13T05:00:03Z <p>It is possible to have extra .Net "special" folders (App_Code, App_Themes, etc.) inside of a subdirectory, rather than in the root?</p> <p>I am integrating with a CMS that dumps an enormous amount of stuff in the root. I would like to keep all my stuff in a single subfolder, as this will greatly ease my SVN and deployment burden. As it sits, I have to pick through all the stuff to figure out what's mine and what's theirs, selectively committing and ignoring -- it takes about an hour.</p> <p>I can sure put all my Web forms in a folder. But I have classes in the App_Code and images and stylesheets in App_Themes that I need to deal with.</p> <p>So, is there anyway to have an <em>additional</em> App_Code and App_Themes in a subdirectory, or are these limited to the root only?</p> <p>(And, yes, I know about creating an Appication, but this won't work. I need to run in the same context as everything in the root of the site, so it's not really a separate, conceptual application.)</p> http://stackoverflow.com/questions/1618165/whats-the-best-way-to-pass-complex-data-into-an-asp-net-control 0 What's the best way to pass complex data into an ASP.Net control? Deane 2009-10-24T14:37:32Z 2009-10-24T17:49:01Z <p>I want to pass complex information into a control. The equivalent of an entire XML document. What would be the best way to accomplish something like this:</p> <pre><code>&lt;MyPrefix:MyControl runat="server"&gt; &lt;Actions&gt; &lt;Action Name="Value" SomeParam="SomeValue" AnotherParam="AnotherValue"/&gt; &lt;Action Name="Value"/&gt; &lt;/Action&gt; &lt;/MyPrefix:MyControl&gt; </code></pre> <p>Could I just have an "Actions" property as a string, then wrap its contents in a root tag and parse it as XML?</p> <p>Any guidance on the best practice here?</p> http://stackoverflow.com/questions/1618402/can-an-asp-net-control-be-configued-to-accept-any-attributes-even-ones-not-defin 0 Can an ASP.Net control be configued to accept ANY attributes, even ones not defined as properties in the class definition? Deane 2009-10-24T16:10:55Z 2009-10-24T17:47:31Z <p>Is it possible to define a control to have non-specified set of attributes? For instance:</p> <pre><code>&lt;MyPrefix:MyControl SomeAttribute="SomeValue" runat="server"/&gt; </code></pre> <p>I don't want to define a property on the control class beforehand for "SomeAttribute." I'd really just like a HashTable or some other construct like this:</p> <pre><code>"SomeAttribute" =&gt; "SomeValue" </code></pre> <p>So this control can be used in many places with attributes that are essentially made up at runtime.</p> <p>I'm wonder if there's some parsing method I can override which iterates through the attributes at parse time. I can:</p> <ol> <li>Look for a property with the name and set it</li> <li>If I don't find such a property, put the attribute name and value into a HashTable</li> </ol> <p>Possible?</p> http://stackoverflow.com/questions/1548306/is-it-correct-that-an-xslt-will-not-process-child-nodes-of-the-current-node-unles 0 Is it correct that an XSLT will not process child nodes of the current node unless apply-templates is explicity called? Deane 2009-10-10T15:58:36Z 2009-10-11T15:41:49Z <p>I think I know the answer to this, but I just want confirmation I'm understanding this correctly.</p> <p>When an XSLT template matches and executes, <em>the children of the current node (the node current having a matching template executed) are not processed by default.</em> You must call "apply-templates" to get the processor to traverse down into the child nodes of the current (matched) node.</p> <p>Consider this XML:</p> <pre><code>&lt;person&gt; &lt;firstName&gt;Deane&lt;/firstName&gt; &lt;lastName&gt;Barker&lt;/lastName&gt; &lt;/person&gt; </code></pre> <p>During the transform, the XSLT processor starts at the "person" element. If it finds a template for that, it will execute it, but then will not descend into the "firstName" and "lastName" elements to look for templates for those. It will only do this if "apply-templates" is explicitly called in the template for "person".</p> <p>Consider this XSL:</p> <pre><code>&lt;!-- Template #1 --&gt; &lt;xsl:template match="person"&gt; I found a "person" element &lt;/xsl:template&gt; &lt;!-- Template #2 --&gt; &lt;xsl:template match="firstName"&gt; I found a "firstName" element &lt;/xsl:template&gt; </code></pre> <p>In this case, Template #2 will not be run, correct? The traversal of the XML document will hit the "person" element, find Template #1, execute it, then never descend into the children of "person."</p> <p>If I change the first template to this --</p> <pre><code>&lt;!-- Template #1 --&gt; &lt;xsl:template match="person"&gt; I found a "person" element &lt;xsl:apply-templates select="firstName"/&gt; &lt;/xsl:template&gt; </code></pre> <p>Only then will Template #2 run. Am I understanding this correctly?</p> http://stackoverflow.com/questions/1531664/in-what-order-do-templates-in-an-xslt-document-execute-and-do-they-match-on-the 2 In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output? Deane 2009-10-07T13:30:35Z 2009-10-09T09:13:57Z <p>Here is something that has always mystified me about XSLT:</p> <ol> <li>In what order do the templates execute, and</li> <li>When they execute, do they match on (a) the original source XML, or (b) the current output of the XSLT to that point?</li> </ol> <p>Example:</p> <pre><code>&lt;person&gt; &lt;firstName&gt;Deane&lt;/firstName&gt; &lt;lastName&gt;Barker&lt;/lastName&gt; &lt;/person&gt; </code></pre> <p>Here is a fragment of XSLT:</p> <pre><code>&lt;!-- Template #1 --&gt; &lt;xsl:template match="/"&gt; &lt;xsl:value-of select="firstName"/&gt; &lt;xsl:value-of select="lastName"/&gt; &lt;/xsl:template&gt; &lt;!-- Template #2 --&gt; &lt;xsl:template match="/person/firstName"&gt; First Name: &lt;xsl:value-of select="firstName"/&gt; &lt;/xsl:template&gt; </code></pre> <p>Two questions about this:</p> <ol> <li>I am assuming that Template #1 will execute first. I don't know why I assume this -- is it just because it appears first in the document?</li> <li>Will Template #2 execute? It matches a node in the source XML, but by the time the we get to this template (assuming it runs second), the "firstName" node will not be in the output tree.</li> </ol> <p>So, are "later" templates beholden to what has occurred in "earlier" templates, or do they operate on the source document, oblivious to what has been transformed "prior" to them? (All those words are in quotes, because I find it hard to discuss time-based issues when I really have little idea how template order is determined in the first place...)</p> <p>In the above example, we have a template that matches on the root node ("/") that -- when it is done executing -- has essentially removed all nodes from the output. This being the case, would this pre-empt all other templates from executing since there is nothing to match on after that first template is complete?</p> <p>To this point, I've been concerned with later templates not executing because the nodes they have operated on do not appear in the output, but what about the inverse? Can an "earlier" template create a node that a "later" template can do something with?</p> <p>On the same XML as above, consider this XSL:</p> <pre><code>&lt;!-- Template #1 --&gt; &lt;xsl:template match="/"&gt; &lt;fullName&gt; &lt;xsl:value-of select="firstName"/&gt; &lt;xsl:value-of select="lastName"/&gt; &lt;/fullName&gt; &lt;/xsl:template&gt; &lt;!-- Template #2 --&gt; &lt;xsl:template match="//fullName"&gt; Full Name: &lt;xsl:value-of select="."/&gt; &lt;/xsl:template&gt; </code></pre> <p>Template #1 creates a new node called "fullName". Template #2 matches on that same node. Will Template #2 execute because the "fullName" node exists in the output by the time we get around to Template #2?</p> <p>I realize that I'm deeply ignorant about the "zen" of XSLT. To date, my stylesheets have consisted of a template matching the root node, then are completely procedural from there. I'm tired of doing this. I would rather actually understand XSLT correctly, hence my question.</p> http://stackoverflow.com/questions/1532070/when-the-same-xml-element-matches-two-xslt-templates-through-different-xpaths-wh 1 When the same XML element matches two XSLT templates through different XPaths, which template executes and why? Deane 2009-10-07T14:41:04Z 2009-10-09T08:18:14Z <p>Consider this XML:</p> <pre><code>&lt;people&gt; &lt;person&gt; &lt;firstName&gt;Deane&lt;/firstName&gt; &lt;lastName&gt;Barker&lt;/lastName&gt; &lt;/person&gt; &lt;/people&gt; </code></pre> <p>What if two XSLT templates match an element <em>through different XPaths</em>? I know that if the "match" element on two templates is identical (which should never happen, I don't think), the <em>last</em> template will fire.</p> <p>However, consider this XSL:</p> <pre><code>&lt;xsl:template match="person/firstName"&gt; Template #1 &lt;/xsl:template&gt; &lt;xsl:template match="firstName"&gt; Template #2 &lt;/xsl:template&gt; </code></pre> <p>The "firstName" element will match on either of these templates -- the first one as a child of "person" and the second one standalone.</p> <p>I have tested this, and Template #1 executes, while Template #2 does not. What is the operative principle behind this? I can think of three things:</p> <ol> <li>Specificity of XPath (highly doubtful)</li> <li>Location in the XSLT file (also doubtful)</li> <li>Some pre-emption of Template #2 by Template #1. Something happens during the execution of Template #1 that tells Template #2 not to execute.</li> </ol> http://stackoverflow.com/questions/976855/how-can-you-access-routedata-from-the-code-behind 1 How can you access RouteData from the code-behind? Deane 2009-06-10T16:52:08Z 2009-10-07T13:10:46Z <p>When using ASP.Net routing, how can you get the RouteData from the code-behind?</p> <p>I know you can get it from the GetHttpHander method of the RouteHandler (you get handed the RequestContext), but can you get this from the code-behind?</p> <p>Is there anything like...</p> <pre><code>RequestContext.Current.RouteData.Values["whatever"]; </code></pre> <p>...that you can access globally, like you can do with HttpContext?</p> <p>Or is it that RouteData is only meant to be accessed from inside the RouteHandler?</p> http://stackoverflow.com/questions/579831/when-using-the-xpath-binding-expression-can-you-get-back-innerxml-rather-than-in 1 When using the XPath binding expression, can you get back InnerXml rather than InnerText? Deane 2009-02-23T23:20:33Z 2009-09-04T12:43:44Z <p>I'm binding a control to an XmlDocument and using the "XPath" binding expression to output the data:</p> <pre><code>&lt;div class="Bio"&gt;&lt;%# XPath("Biography") %&gt;&lt;/div&gt; </code></pre> <p>However, this returns the InnerText property of the "Biography" element, not the InnerXml. This means it strips all inner tags from it, which is not what I want.</p> <p>I looked through the XPathBinder object, but I can't find anyway to get it to return InnerXml rather than InnerText</p> http://stackoverflow.com/questions/1370184/how-do-you-use-extension-methods-in-web-form-data-binding-expressions 2 How do you use extension methods in Web form data-binding expressions? Deane 2009-09-02T21:18:20Z 2009-09-02T21:39:30Z <p>Has anyone successfully used extension methods in data-binding expressions?</p> <p>Say I have an extension method called "GetName" attached to "MyClass".</p> <p>In the code behind, I have verified this works:</p> <pre><code>MyClass myObject = new MyClass(); MyClass.GetName(); </code></pre> <p>However, in a Web form, I try this:</p> <pre><code>&lt;%@ Import Namespace="My.Namespace" %&gt; </code></pre> <p>Then, in the ItemTemplate of a Repeater:</p> <pre><code>&lt;%# ((MyClass)Container.DataItem).GetName() %&gt; </code></pre> <p>Visual Studio is cool with this, Intellisense agrees with everything, and the project builds. But when I run it, I get:</p> <blockquote> <p>Compilation Error<br /> 'My.Namespace.MyClass' does not contain a definition for 'GetName'</p> </blockquote> <p>So, the code-behind will accept the extension method, but not the Web form. I suspect it's a name-spacing issue, but I've imported the same namespace in both places.</p> http://stackoverflow.com/questions/1344156/whats-the-opposite-of-is 1 What's the opposite of "is"? Deane 2009-08-27T22:47:01Z 2009-08-27T23:03:10Z <pre><code>if(myVariable is SomeType) </code></pre> <p>Out of nothing but curiosity, what's the opposite of that? I want to do something like:</p> <pre><code>if(!myVariable is SomeType) if(myVariable is not SomeType) </code></pre> <p>Neither compile.</p> <p>Given that "is" is a non-searchable word in most engines, this has been a hard one to find an answer to.</p> <blockquote> <p><strong>Duplicate:</strong> </p> <p><a href="http://stackoverflow.com/questions/811614/c-is-keyword-and-checking-for-not">C# : ‘is’ keyword and checking for Not</a></p> </blockquote> http://stackoverflow.com/questions/1273585/why-does-an-authentication-mode-of-forms-result-in-an-empty-logonuser-server-v 0 Why does an authentication mode of "Forms" result in an empty LOGON_USER server variable? Deane 2009-08-13T17:54:26Z 2009-08-13T18:12:26Z <p>Is it possible to:</p> <p>Disallow anonymous access in IIS</p> <p>AND</p> <p>Have...</p> <pre><code>&lt;authenticate mode="Forms"/&gt; </code></pre> <p>...in the Web config? We need both access to the ASP.Net Membership provider <em>and</em> access to the Windows username in the LOGON_USER server variable.</p> <p>What we've found is that disallowing anonymous access in IIS will only populate LOGON_USER if we also set the authentication mode to "Windows"...which then doesn't let us use the membership provider.</p> <p>I'm confused why a mode of "Forms" results in an empty LOGON_USER variable.</p> http://stackoverflow.com/questions/1235755/how-can-you-access-svn-over-http-in-a-windows-environment 1 How can you access SVN over HTTP in a Windows environment? Deane 2009-08-05T21:05:56Z 2009-08-05T23:43:52Z <p>What's the best practice for accessing SVN over HTTP in a Windows environment?</p> <p>In Linux, we connect SVN to Apache all the time, so we can address remote repositories over HTTP. Is there a way to connect SVN to IIS, or some equally handy way to let you access an SVN repo on a Windows machine over HTTP?</p> http://stackoverflow.com/questions/1230196/why-doesnt-my-page-have-session-state-when-called-as-the-default-document-of-a-d 0 Why doesn't my page have session state when called as the default document of a directory? Deane 2009-08-04T22:21:11Z 2009-08-04T22:39:43Z <p>If I access my page like this...</p> <pre><code>/folder/default.aspx </code></pre> <p>...everything is fine. If I access it like this...</p> <pre><code>/folder/ </code></pre> <p>...the page has no session state. Any ideas why?</p> <p>This changed from IIS6 to IIS7, incidentally. In IIS6, it was fine. The "Default Document" feature in IIS7 is enabled, set to "default.aspx".</p> http://stackoverflow.com/questions/1218057/are-sharepoint-template-files-actually-stored-on-the-file-system 2 Are Sharepoint template files actually stored on the file system? Deane 2009-08-02T03:06:01Z 2009-08-02T03:22:29Z <p>I'm new to Sharepoint and just starting to poke around with Sharepoint Designer. I'm curious about the file system I see in Sharepoint designer which doesn't seem to appear anywhere else.</p> <p>When I open a Sharepoint site in Sharepoint Designer, and I see folders for all my lists, and the Web forms created within them -- am I actually looking at the Windows file system? Or are these virtual-ish files that don't actually exist on the file system?</p> <p>Put another way, when I create a new List in Sharepoint, do a bunch of template files ("AllItems.aspx," "DispForm.aspx," etc.) get written to the file system somewhere? If so, where?</p> <p>I ask because I searched and I can't find any of the files I see in Sharepoint Designer anywhere on the actual file system.</p> http://stackoverflow.com/questions/1190650/when-i-tell-vs-to-debug-and-it-says-validating-web-site-for-10-minutes-what-i 0 When I tell VS to debug, and it says "Validating Web Site" for 10 minutes, what is it doing exactly? Deane 2009-07-27T21:14:46Z 2009-07-28T03:20:16Z <p>This drives me nuts. I have one third-party product in particular that has about 11,000 files in one of the directories. On sites using this system, from the time when I press the "Play" button to the time when it gets done "Validating Web Site" and recursing through the directory tree, it can often be 10 full minutes.</p> <p>What is VS doing, and can I prevent this delay in some way?</p> <p>This is a Web <em>site</em> project (not a Web application project).</p> http://stackoverflow.com/questions/1168324/is-it-possible-to-effect-a-join-against-a-table-of-consecutive-dates-without-havi 0 Is it possible to effect a join against a table of consecutive dates without having to maintain an actual table of consecutive dates? Deane 2009-07-22T21:21:08Z 2009-07-23T03:15:19Z <p>I have a table with dated records. I want a query that will show the number of records for each date.</p> <p>Not hard, just a GROUP BY, right? Sure.</p> <p><em>But I want to also show days where there were NO records.</em> In this case, I would need to left join against a one-column table of consecutive dates, since a GROUP BY isn't going to show a date that doesn't exist.</p> <p>Is there a better way of doing this? Or do I have to create a populate a table of dates just so I can join against it?</p> http://stackoverflow.com/questions/699737/why-dont-presendrequestheaders-and-presendrequestcontent-run-consistently 1 Why don't PreSendRequestHeaders and PreSendRequestContent run consistently? Deane 2009-03-31T01:48:37Z 2009-07-06T04:59:59Z <p>When working with HTTP modules, has anyone noticed that the final two events in the pipeline -- PreSendRequestHeaders and PreSendRequestContent -- don't always run?</p> <p>I've verified that code bound to EndRequest will run, but will not when bound to either PreSendRequestHeaders or PreSendRequestContent.</p> <p>Is there a reason why? I thought perhaps it was a caching issue (with a 304 Not Modified, you don't actually send content...), but I've cleared caches and determined that the server is returning 200 OK, which would indicate that it sent content.</p> <p>This is a problem because the StatusCode of the response defaults to 200 and my understanding is that it doesn't get updated to something like a 404 or 206 until those two final methods. If I check the StatusCode during EndRequest, it will always read 200.</p> http://stackoverflow.com/questions/1058703/why-doesnt-url-routing-work-in-visual-studio 0 Why doesn't URL routing work in Visual Studio? Deane 2009-06-29T14:40:29Z 2009-06-29T16:25:49Z <p>Does anyone else have problems with running URL routing projects in Visual Studio?</p> <p>The Visual Studio Web server doesn't seem to want to play nice with URL routing. It doesn't invoke the engine at all in fact, which means you can't debug, and have to run the project out of IIS to get it work.</p> <p>Is there a workaround for this?</p> <p><strong>Edit:</strong> By "URL routing" I mean the Microsoft framework in the "System.Web.Routing" namespace.</p> <p><strong>Edit:</strong> Using Web forms, not MVC.</p> http://stackoverflow.com/questions/1046469/how-is-xinclude-processed-and-how-does-it-resolve-references 0 How is XInclude processed, and how does it resolve references? Deane 2009-06-25T22:01:02Z 2009-06-25T22:01:02Z <p>This is a general theory question, but how is XInclude manifested? I understand the theory, but I have two questions about the implementation of it.</p> <p>First, I assume there are "XInclude processors"? Just like XML has parsers, I assume there is something with processes XML files for XInclude references -- inflating the references with the actual XML? How is this accomplished in .Net?</p> <p>Second, how does the (as yet mythical) XInclude processor resolve the files? The examples I've seen all have HREFs to other files, but what if your remote document is in a CMS somewhere, or is otherwise NOT on the file system? Do different processors have different methods of resolving XInclude references? Can you write your own resolvers for specific circumstances?</p> http://stackoverflow.com/questions/976276/whats-the-cleanest-way-to-render-the-results-of-a-method-while-data-binding 0 What's the cleanest way to render the results of a method while data binding? Deane 2009-06-10T15:17:48Z 2009-06-10T15:22:52Z <p>The best way, of course, is to convert the method to a property. But I can't do that here --</p> <p>We have an API from someone else, and we've added an extension method to one of the objects. We need at the string this method returns in a data-binding situation (a GridView).</p> <p>It doesn't seem that we can add an extension <em>property</em> (man, that would have been really nice...), so I have this method, and I want the cleanest way possible to render it in data-binding:</p> <p>While I can do this with a property:</p> <pre><code>&lt;%# Eval("MyProperty") %&gt; </code></pre> <p>I have to do this with a method:</p> <pre><code>&lt;%# ((MyClass)Container.DataItem).MyExtensionMethod() %&gt; </code></pre> <p>This is how I've done it in the past, but is there a cleaner way than that? I can't change the class (it's not mine), and I can't add an extension property, so I'm stuck with this method.</p> http://stackoverflow.com/questions/749474/why-cant-i-set-an-item-in-the-httpcontext-in-a-module-then-get-it-back-in-my-han 0 Why can't I set an item in the HttpContext in a module then get it back in my handler? Deane 2009-04-14T21:37:54Z 2009-05-25T06:18:20Z <p>In an HttpModule, I put an Item in the Context, like this:</p> <pre><code>HttpContext.Current.Items.Add("MyKey", "Hello world!"); </code></pre> <p>Directly under this code (still inside the module), I can retrieve this string from the collection, so I know it got added.</p> <p>Fast forward to my actual handler (a Web form -- .aspx). I try to get this item back:</p> <pre><code>string myString = HttpContext.Current.Items["MyKey"].ToString(); </code></pre> <p>Sadly, it's NULL -- the item is not there.</p> <p>I spun the collection, and by the time it gets to my handler, the Items collection has two keys:</p> <ul> <li>AspSession</li> <li>AspSessionIDManagerInitializeRequestCalled</li> </ul> <p>After I set the Item in the module, I call RewritePath. Not sure if that has anything to do with it.</p> http://stackoverflow.com/questions/901927/is-there-a-non-iterating-control-that-allows-data-binding-syntax-to-be-used 0 Is there a non-iterating control that allows data-binding syntax to be used? Deane 2009-05-23T17:02:49Z 2009-05-23T17:48:25Z <p>Let's say I have a single XML node of content in my code-behind. I need to get some data out of the various nodes and onto a Web form.</p> <p>Traditionally, I would create a bunch of Literals on the page, then do stuff like this in the code-behind:</p> <pre><code>MyLiteral.Text = myXmlNode.SelectSingleNode("/some/xpath").InnerText; </code></pre> <p>This is fine and good, but consider the binding syntax we use in Repeaters:</p> <pre><code>&lt;ItemTemplate&gt; &lt;p&gt; &lt;%# XPath("/some/xpath") %&gt; &lt;/p&gt; &lt;/ItemTemplate&gt; </code></pre> <p>So, I got to wondering if you can use this same syntax for non-Repeater situations. It just seems odd that there wouldn't be the same syntax available for a non-iterating situation.</p> <p>(Of course, if you didn't mind being ridiculous, you could bind your XML node to a Repeater, where it would only have one iteration. I <em>swear</em> I've never done this...)</p> <p>I can't help but thinking that the designers of the framework would have planned for this. Is there some non-iterating control I don't know about that allows you to bind a datasource and render using data binding expressions?</p> http://stackoverflow.com/questions/885041/how-do-you-use-gacd-assemblies-as-references-with-csc-exe 1 How do you use GAC'd assemblies as references with csc.exe? Deane 2009-05-19T21:09:26Z 2009-05-19T21:30:09Z <p>I'm compiling from csc.exe (well, CruiseControl is...), and I need to reference a DLL in the GAC. I do not have the correct version of this DLL as a simple file, but there is a correct version in the GAC.</p> <p>However, you can't reference assemblies in the GAC with csc -- you have to have the path to the actual file.</p> <p>I've found some references that claim you can reverse engineer the path to the actual file, but I haven't been able to get them work. I fired up Fusion logging, and I can see where the runtime is getting the file from, but using a filepath to that location in my reference does not work.</p> <p>So, how do you provide csc with a reference to an assembly version that only exists in the GAC?</p> http://stackoverflow.com/questions/841313/i-have-an-exe-that-needs-to-run-once-per-minute-should-i-do-it-as-a-scheduled-e 2 I have an EXE that needs to run once per minute. Should I do it as a scheduled EXE or a Windows Service? Deane 2009-05-08T19:01:59Z 2009-05-08T19:40:25Z <p>The title says it all, really. I know this is largely an opinion, but I'm interested if you have one and what your reasons are.</p> <p><strong>Duplicate</strong>: <a href="http://stackoverflow.com/questions/722678/how-reliable-is-windows-task-scheduler-for-scheduling-code-to-run-repeatedly">How reliable is windows task scheduler for scheduling code to run repeatedly?</a></p> http://stackoverflow.com/questions/836811/how-does-iis-know-if-its-serving-a-web-site-or-a-web-application-project 5 How does IIS know if it's serving a Web Site or a Web Application project? Deane 2009-05-07T20:15:51Z 2009-05-07T21:23:17Z <p>I understand that Web Site Projects compile source on-the-fly, and Web Application Projects pre-compile source into a DLL (much like ASP.Net 1.x).</p> <p>But how is the difference specified in IIS?</p> <p>I know that Visual Studio knows -- there are different projects for each, etc. But the running instance (IIS + Framework) <em>has</em> to know which compilation model is being used, right? Because how else does it know whether or not to compile on-the-fly?</p> <p>A request comes in, hits an ASPX file...and how does the process know whether the associated CS file needs to be compiled (Web Site), or if it was already done before deployment (Web Application)?</p> <p>I'm just curious where this difference is specified. In the web.config somewhere?</p> http://stackoverflow.com/questions/816991/how-do-you-effect-a-build-on-an-integration-server 2 How do you effect a build on an integration server? Deane 2009-05-03T12:51:44Z 2009-05-03T13:43:13Z <p>Assuming you have two developers working on a project locally on their laptops (A and B). They each have working copies of the SVN repo, and they're coding away in VS. Each one has a fully-functioning copy of the app. They commit back to SVN at every stopping point.</p> <p>You have an integration/test server (C) which has another working copy which is updated whenever you want to test.</p> <p>You also have production server (D) which has a post-build xcopy from C.</p> <p>Say the code is a Web Application Project, so it <em>requires</em> an explicit build (as opposed to a Web Site Project which just takes the source code and builds on-the-fly).</p> <p>How do you manage this on the integration server (C)?</p> <p>If the developers build on their machines (A and B), then push the DLLs to the integration server (C)...this won't work, because the integration server has to take code from both of them and develop a common DLL. So, all the source code has to get to the integration server (C), <em>be built there</em>, and just the required files and DLL pushed to production (D).</p> <p>How do you manage the build on the integration server (C)? Do you have a timed build from the command line? Do you install VS on the integration server (C) and build that way? If doing it from the command line, how to do manage the required references and other settings that VS normally manages in a CSPRJ or an SLN file?</p> http://stackoverflow.com/questions/783732/is-it-possible-to-completely-negate-a-higher-web-config-in-a-subfolder 3 Is it possible to completely negate a "higher" web.config in a subfolder? Deane 2009-04-23T22:08:25Z 2009-05-01T21:50:40Z <p>Is it possible to completely negate a web.config in a subfolder?</p> <p>Obviously, I have a web.config in the root.</p> <p>If I have a subfolder called "MyApp", can I write a bunch of code in there and have it run without any reference to the web.config at root? It would have its own web.config, and wouldn't even reference the "higher" web.config in root.</p> <p>What I'm looking for is complete App isolation. I'd like to be able to write an app in a subfolder of an existing site, which ignores the entire web.config hierarchy above it -- the app would an island all to itself.</p> <p>I know I can use the "clear" element, but is that the best way? Just put a "clear" under every top level element? Just wondering if there's another way.</p> <p>Duplicate of <a href="http://stackoverflow.com/questions/778635/will-a-child-application-inherit-from-its-parent-web-config">Will a child application inherit from its parent web.config?</a></p> http://stackoverflow.com/questions/787444/why-cant-i-share-types-with-an-assembly-loaded-dynamically-at-runtime-into-the-s 1 Why can't I share types with an assembly loaded dynamically at runtime into the same load context? Deane 2009-04-24T20:22:04Z 2009-04-24T20:49:09Z <p>I have a problem that is not uncommon when building a plug-in architecture.</p> <ol> <li><p>Assembly A is the core code -- the framework.</p></li> <li><p>Assembly B is a plugin to that code, expected to load dynamically at runtime and make code available for Assembly A to use.</p></li> </ol> <p>In Visual Studio, Project B (which generates Assembly B) has a reference to Project A (which generates Assembly A), so it can reference the types in Project A and compile just fine. Both projects compile without error and generate DLLs.</p> <p>But, at runtime, I get cast exceptions like this:</p> <pre><code>'MyType' cannot be converted to type 'MyType' </code></pre> <p>I've come to understand that a type defined in one project and referenced in another are considered different types at runtime, even if they resolve fine at compile time.</p> <p>But, I thought this could be fixed by loading Assembly B into the correct context. So I switched from "Assembly.LoadFrom" to "Assembly.Load" and put Assembly B in the probing path. The idea is that it would load into the same context as Assembly A, and they would be one big, happy family.</p> <p>I downloaded the Fusion log viewer and watched the assemblies load. Both Assembly A and Assembly B load like this:</p> <blockquote> <p>Assembly is loaded in default load context.</p> </blockquote> <p>So, I have ensured they are both loaded in the <em>same load context</em>.</p> <p>Still, I can't share types between the two Assemblies. I get casting errors when I try to pass an object (whose type is defined in Assembly A) as a parameter from code in Assembly A to a method on an object in Assembly B.</p> <p>To summarize:</p> <ol> <li><p>MyType is defined in Assembly A</p></li> <li><p>From Assembly A, I load Assembly B at runtime into the same load context using "Assembly.Load"</p></li> <li><p>From Assembly A, I use Reflection to invoke a static method on a class in Assembly B. I pass this method an object of MyType as a parameter (which is expected, and which compiled just fine).</p></li> <li><p>Fails with: 'MyType' cannot be converted to type 'MyType'</p></li> </ol> <p>Here's the code I use to invoke the method, if that matters. This code executes in Assembly A:</p> <pre><code>TypeFromAssemblyB.GetMethod("MyMethod").Invoke(null, new object[] { ObjectOfTypeDefinedInAssemblyA }); </code></pre> http://stackoverflow.com/questions/1749901/how-can-code-in-a-try-catch-block-throw-an-unhandled-exception/1749924#1749924 Comment by Deane on How can code in a "try...catch" block throw an unhandled exception? Deane 2009-11-17T16:33:02Z 2009-11-17T16:33:02Z This was in the debugger, yes. This could be it. In Visual Studio, is that a setting somewhere? http://stackoverflow.com/questions/1749901/how-can-code-in-a-try-catch-block-throw-an-unhandled-exception/1749914#1749914 Comment by Deane on How can code in a "try...catch" block throw an unhandled exception? Deane 2009-11-17T16:32:28Z 2009-11-17T16:32:28Z I'm catching &quot;Exception.&quot; Doesn't every derive from that? http://stackoverflow.com/questions/1618165/whats-the-best-way-to-pass-complex-data-into-an-asp-net-control/1618430#1618430 Comment by Deane on What's the best way to pass complex data into an ASP.Net control? Deane 2009-10-26T13:15:51Z 2009-10-26T13:15:51Z Wow, nicely done. I actually ended up using child controls which each map to a class, this is really, really slick. Excellent work. http://stackoverflow.com/questions/1618402/can-an-asp-net-control-be-configued-to-accept-any-attributes-even-ones-not-defin/1618425#1618425 Comment by Deane on Can an ASP.Net control be configued to accept ANY attributes, even ones not defined as properties in the class definition? Deane 2009-10-24T16:59:19Z 2009-10-24T16:59:19Z The problem is that parsing the control throws an error because there are attributes that don't map to properties. http://stackoverflow.com/questions/1618165/whats-the-best-way-to-pass-complex-data-into-an-asp-net-control/1618243#1618243 Comment by Deane on What's the best way to pass complex data into an ASP.Net control? Deane 2009-10-24T15:17:51Z 2009-10-24T15:17:51Z No, because then I have manage a separate file for each instance of this control that have different params. http://stackoverflow.com/questions/1531664/in-what-order-do-templates-in-an-xslt-document-execute-and-do-they-match-on-the/1542734#1542734 Comment by Deane on In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output? Deane 2009-10-10T15:49:38Z 2009-10-10T15:49:38Z Evan, your answer and sample chapter were really fantastic. I think I have a grasp on it, save one question, which I will post separately. http://stackoverflow.com/questions/1531664/in-what-order-do-templates-in-an-xslt-document-execute-and-do-they-match-on-the Comment by Deane on In what order do templates in an XSLT document execute, and do they match on the source XML or the buffered output? Deane 2009-10-07T18:20:03Z 2009-10-07T18:20:03Z The &quot;zen&quot; I have learned -- the execution process of an XSLT is XML-centric, not XSL-centric. <i>The structure of the XML drives the flow, not the structure of the XSL.</i> This was one of the big pieces I have not understood all these years. http://stackoverflow.com/questions/1532070/when-the-same-xml-element-matches-two-xslt-templates-through-different-xpaths-wh/1532146#1532146 Comment by Deane on When the same XML element matches two XSLT templates through different XPaths, which template executes and why? Deane 2009-10-07T18:04:45Z 2009-10-07T18:04:45Z So, does this mean that one element will only ever have one template executed for it? My understanding is that the processor traverses the XML, and for each element asks, &quot;Which template do I execute?&quot; Is it correct that it will only ever execute a single template for each element in the XML? http://stackoverflow.com/questions/579831/when-using-the-xpath-binding-expression-can-you-get-back-innerxml-rather-than-in/1379007#1379007 Comment by Deane on When using the XPath binding expression, can you get back InnerXml rather than InnerText? Deane 2009-09-09T22:41:20Z 2009-09-09T22:41:20Z Not what I was hoping for, but I'll make you the accepted answer since you at least told me I can't do what I want... http://stackoverflow.com/questions/1218057/are-sharepoint-template-files-actually-stored-on-the-file-system/1218075#1218075 Comment by Deane on Are Sharepoint template files actually stored on the file system? Deane 2009-08-02T15:37:58Z 2009-08-02T15:37:58Z Excellent answer. Thank you. http://stackoverflow.com/questions/1190650/when-i-tell-vs-to-debug-and-it-says-validating-web-site-for-10-minutes-what-i/1190807#1190807 Comment by Deane on When I tell VS to debug, and it says "Validating Web Site" for 10 minutes, what is it doing exactly? Deane 2009-07-28T03:19:53Z 2009-07-28T03:19:53Z This is when I'm trying to debug. http://stackoverflow.com/questions/1190650/when-i-tell-vs-to-debug-and-it-says-validating-web-site-for-10-minutes-what-i/1190724#1190724 Comment by Deane on When I tell VS to debug, and it says "Validating Web Site" for 10 minutes, what is it doing exactly? Deane 2009-07-28T03:18:39Z 2009-07-28T03:18:39Z They are. Always have been. http://stackoverflow.com/questions/1058703/why-doesnt-url-routing-work-in-visual-studio Comment by Deane on Why doesn't URL routing work in Visual Studio? Deane 2009-06-29T16:25:59Z 2009-06-29T16:25:59Z Clarified the question again. http://stackoverflow.com/questions/1058703/why-doesnt-url-routing-work-in-visual-studio Comment by Deane on Why doesn't URL routing work in Visual Studio? Deane 2009-06-29T14:59:41Z 2009-06-29T14:59:41Z Clarified the question. http://stackoverflow.com/questions/901927/is-there-a-non-iterating-control-that-allows-data-binding-syntax-to-be-used/902036#902036 Comment by Deane on Is there a non-iterating control that allows data-binding syntax to be used? Deane 2009-06-10T15:23:14Z 2009-06-10T15:23:14Z Sad. There should be a &quot;BindableRegion&quot; control or something.