User Bloodhound - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:43:07Z http://stackoverflow.com/feeds/user/6617 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208828/what-conventions-exist-for-ordering-arguments-in-methods 5 What conventions exist for ordering arguments in methods? Bloodhound 2008-10-16T14:40:15Z 2008-10-16T14:57:26Z <p>A colleague and I are discussing best practices regarding ordering method parameters. The goal is to establish a standard in our organization to improve readability and productivity by giving our methods common signatures. We are merely establishing guidelines for the recent grads we are hiring. </p> <p><strong>Example (userId is always passed in to audit the calls):</strong></p> <p>GetOrders(string userId, int customerId); GetOrders(string userId, int[] orderIds); GetCustomer(string userId, int customerId);</p> <p>My argument is the following:</p> <ol> <li>common arguments are left most.</li> <li>remaining arguments are based on importance</li> <li>optional (nullable) arguments last.</li> </ol> <p>His argument is essentially the opposite.</p> <p>I'm not asking for a right or wrong answer here, nor a discussion. I just want to see what standards exist already.</p> <p>Thanks!</p> http://stackoverflow.com/questions/103051/how-do-you-move-from-the-proof-of-concept-phase-to-working-on-a-production-ready/103125#103125 1 Answer by Bloodhound for How do you move from the Proof of Concept phase to working on a production-ready solution? Bloodhound 2008-09-19T15:49:53Z 2008-09-19T15:49:53Z <p>For me it would depend on how sloppy my POC was. If it is something I would be ashamed to pass onto another developer, I would rewrite it. Otherwise, just go with what you got. </p> http://stackoverflow.com/questions/103000/should-i-store-a-database-id-field-in-viewstate/103073#103073 0 Answer by Bloodhound for Should I store a database ID field in ViewState? Bloodhound 2008-09-19T15:44:40Z 2008-09-19T15:44:40Z <p>I personally am very leery about putting anything in the session. Too many times our worker processes have cycled and we lost our session state. </p> <p>As you described your problem, I would put it in a hidden field or in the viewstate of the page. </p> <p>Also, when determining where to put data like this, always look at the scope of the data. Is it scoped to a single page, or to the entire session? If the answer is 'session' for us, we put it in a cookie. (Disclaimer: We write intranet apps where we know cookies are enabled.)</p> http://stackoverflow.com/questions/97054/at-which-point-in-the-lifecycle-does-getconnectioninterface-get-called/98250#98250 0 Answer by Bloodhound for At which point in the lifecycle does GetConnectionInterface get called? Bloodhound 2008-09-19T00:14:27Z 2008-09-19T00:14:27Z <p>According to this document, it looks like Load.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms366536.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms366536.aspx</a></p> http://stackoverflow.com/questions/97532/what-are-the-advantages-and-disadvantages-of-dtos-from-a-website-performance-per/97627#97627 0 Answer by Bloodhound for What are the advantages and disadvantages of DTO's from a website performance perspective? Bloodhound 2008-09-18T22:24:05Z 2008-09-18T22:24:05Z <p>Personally, we haven't seen any issues with DTOs. Our issues have always been on the initial retrieval of data, not the conversion that happens after that. </p> http://stackoverflow.com/questions/94042/what-can-cause-an-asp-net-worker-process-to-be-recycled/94051#94051 1 Answer by Bloodhound for What can cause an ASP.NET worker process to be recycled? Bloodhound 2008-09-18T16:15:25Z 2008-09-18T16:15:25Z <p>The worker process is probably cycling. <a href="http://www.lattimore.id.au/2006/06/03/iis-dropping-sessions/" rel="nofollow">http://www.lattimore.id.au/2006/06/03/iis-dropping-sessions/</a> </p> http://stackoverflow.com/questions/93625/float-divs/93681#93681 0 Answer by Bloodhound for float divs Bloodhound 2008-09-18T15:39:01Z 2008-09-18T15:39:01Z <p>li { width: 100%;}</p> <p>.a { float: left;}</p> <p>.b { float: left;}</p> http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92169#92169 17 Answer by Bloodhound for How do you vent stress as a programmer? Bloodhound 2008-09-18T12:40:00Z 2008-09-18T12:40:00Z <p>Shooting range....</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/83916#83916 11 Answer by Bloodhound for What's Your Motto As A Developer/Programmer? Bloodhound 2008-09-17T14:37:37Z 2008-09-17T14:37:37Z <p>"Any sufficiently advanced technology is indistinguishable from magic." -Arthur C. Clarke</p> http://stackoverflow.com/questions/82393/poll-asp-net-data-access-methodologies/82400#82400 3 Answer by Bloodhound for Poll: ASP.Net Data Access Methodologies Bloodhound 2008-09-17T12:10:39Z 2008-09-17T12:10:39Z <p>I vote for LLBLGen</p> http://stackoverflow.com/questions/82345/charting-in-web-based-applications/82363#82363 0 Answer by Bloodhound for Charting in web-based applications Bloodhound 2008-09-17T12:05:43Z 2008-09-17T12:05:43Z <p>We have used <a href="http://demos.telerik.com/aspnet/prometheus/Chart/Examples/Overview/DefaultCS.aspx" rel="nofollow">Telerik's RadChart</a> and MSSQL Reporting Services. </p> http://stackoverflow.com/questions/76208/good-way-to-time-sql-queries-when-using-linq-to-sql/76235#76235 0 Answer by Bloodhound for Good way to time SQL queries when using Linq to SQL Bloodhound 2008-09-16T19:53:27Z 2008-09-16T19:53:27Z <p>We use SQL Profiler to test our queries with LLBLGen Pro. </p> http://stackoverflow.com/questions/72298/should-i-add-the-visual-studio-suo-and-user-files-to-source-control/72329#72329 3 Answer by Bloodhound for Should I add the Visual Studio .suo and .user files to source control Bloodhound 2008-09-16T13:42:45Z 2008-09-16T13:42:45Z <p>Visual Studio will automatically create them. I don't recommend putting them in source control. There have been numerous times where a local developer's SOU file was causing VS to behave erratically on that developers box. Deleting the file and then letting VS recreate it always fixed the issues. </p> http://stackoverflow.com/questions/72036/best-way-to-implement-mutliple-default-buttons-on-a-asp-net-webform/72049#72049 1 Answer by Bloodhound for Best way to implement mutliple Default Buttons on a ASP.NET Webform Bloodhound 2008-09-16T13:15:10Z 2008-09-16T13:15:10Z <p>Capture the enter key press for each area of the screen and then fire the corresponding button's click even. </p> http://stackoverflow.com/questions/71956/vb-net-tutorials/71960#71960 1 Answer by Bloodhound for VB.Net Tutorials Bloodhound 2008-09-16T13:04:23Z 2008-09-16T13:04:23Z <p>Try this: <a href="http://www.startvbdotnet.com/" rel="nofollow">http://www.startvbdotnet.com/</a></p> http://stackoverflow.com/questions/71201/hints-for-a-high-traffic-web-service-c-asp-net-sql2000/71445#71445 1 Answer by Bloodhound for Hints for a high-traffic web service, c# asp.net sql2000 Bloodhound 2008-09-16T11:41:29Z 2008-09-16T11:41:29Z <p>If you go the file route, keep this in mind.</p> <p><a href="http://petesbloggerama.blogspot.com/2008/02/aspnet-writing-files-vs-application.html" rel="nofollow">http://petesbloggerama.blogspot.com/2008/02/aspnet-writing-files-vs-application.html</a></p> http://stackoverflow.com/questions/71201/hints-for-a-high-traffic-web-service-c-asp-net-sql2000/71237#71237 2 Answer by Bloodhound for Hints for a high-traffic web service, c# asp.net sql2000 Bloodhound 2008-09-16T11:03:42Z 2008-09-16T11:03:42Z <p>I think caching is a reasonable approach and you can take it a step further and add a SQL Dependency to it. </p> <p><a href="http://www.c-sharpcorner.com/UploadFile/mosessaur/sqlcachedependency01292006135138PM/sqlcachedependency.aspx?ArticleID=3caa7d32-dce0-44dc-8769-77f8448e76bc" rel="nofollow">ASP.NET Caching: SQL Cache Dependency With SQL Server 2000</a></p> http://stackoverflow.com/questions/68720/windows-server-2008-virtual-hosting/68744#68744 1 Answer by Bloodhound for Windows Server 2008 Virtual Hosting? Bloodhound 2008-09-16T02:02:10Z 2008-09-16T02:59:45Z <p>$59.95 <a href="http://www.WebHost4Life.com/default.asp?refid=mb34124" rel="nofollow">www.webhost4life.com</a></p> http://stackoverflow.com/questions/68624/how-to-parse-a-query-string-into-a-namevaluecollection-in-net/68644#68644 0 Answer by Bloodhound for How to parse a query string into a NameValueCollection in .NET Bloodhound 2008-09-16T01:46:27Z 2008-09-16T01:46:27Z <p>Just access Request.QueryString. AllKeys mentioned as another answer just gets you an array of keys. </p> http://stackoverflow.com/questions/68610/text-centering-problem-using-css-with-ie/68621#68621 2 Answer by Bloodhound for Text Centering Problem Using CSS with IE Bloodhound 2008-09-16T01:41:55Z 2008-09-16T01:41:55Z <p>Can we see more code? My first hunch is the table cell needs the text-align: center.</p> http://stackoverflow.com/questions/68495/how-to-get-through-spam-filters/68505#68505 1 Answer by Bloodhound for how to get through spam filters? Bloodhound 2008-09-16T01:21:57Z 2008-09-16T01:21:57Z <p>Your mail server's IP may have been black listed. This is common on shared servers. <a href="http://www.mxtoolbox.com/blacklists.aspx" rel="nofollow">http://www.mxtoolbox.com/blacklists.aspx</a> </p> http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68168#68168 2 Answer by Bloodhound for JavaScript to scroll long page to DIV Bloodhound 2008-09-16T00:15:57Z 2008-09-16T00:15:57Z <p>Why not a named anchor?</p> http://stackoverflow.com/questions/67475/good-references-tips-for-designing-rule-systems/67493#67493 1 Answer by Bloodhound for Good references / tips for designing rule systems? Bloodhound 2008-09-15T22:04:55Z 2008-09-15T22:04:55Z <p>We have had luck with this: <a href="http://msdn.microsoft.com/en-us/library/bb472424.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb472424.aspx</a></p> http://stackoverflow.com/questions/66964/how-do-i-create-a-link-to-a-footnote-in-html/66977#66977 0 Answer by Bloodhound for How do I create a link to a footnote in HTML? Bloodhound 2008-09-15T21:07:21Z 2008-09-15T21:07:21Z <p>anchor tags using named anchors</p> <p><a href="http://www.w3schools.com/HTML/html_links.asp" rel="nofollow">http://www.w3schools.com/HTML/html_links.asp</a></p> http://stackoverflow.com/questions/66385/dynamic-database-schema/66397#66397 1 Answer by Bloodhound for Dynamic Database Schema Bloodhound 2008-09-15T20:05:56Z 2008-09-15T20:05:56Z <p>A strongly typed xml field in MSSQL has worked for us. </p> http://stackoverflow.com/questions/65034/remove-border-from-iframe/65053#65053 0 Answer by Bloodhound for Remove border from IFrame Bloodhound 2008-09-15T17:45:52Z 2008-09-15T17:45:52Z <p>frameborder="0"</p> <p><a href="http://www.htmlcodetutorial.com/frames/_IFRAME_FRAMEBORDER.html" rel="nofollow">http://www.htmlcodetutorial.com/frames/_IFRAME_FRAMEBORDER.html</a></p> http://stackoverflow.com/questions/61850/is-there-a-way-to-asynchronously-filter-an-ilist/64747#64747 0 Answer by Bloodhound for Is there a way to asynchronously filter an IList? Bloodhound 2008-09-15T17:05:01Z 2008-09-15T17:05:01Z <p>Wrap only the repeater you want to rebind with an update panel of its own. The only viewstate transferred when doing this is the portion inside the update panel. You may have to play around with the triggers and update mode of the panels to get everything to play nicely. </p> <p>Another option is instead of using repeaters, serialize your objects into XML and then write a page method that returns an html string of your transformed data using xsl. Then client side call your path method and update the DOM as appropriate. </p> <p>A third option is to use use a service reference/page method to return JSON objects and update the DOM manually.</p> <p><a href="http://www.asp.net/AJAX/Documentation/Live/tutorials/ASPNETAJAXWebServicesTutorials.aspx" rel="nofollow">http://www.asp.net/AJAX/Documentation/Live/tutorials/ASPNETAJAXWebServicesTutorials.aspx</a></p> <p>Good luck! I have done all 3,</p> http://stackoverflow.com/questions/64279/how-do-you-tell-iis-6-to-set-the-net-version-to-2-0-not-1-1-when-new-sites-are/64289#64289 0 Answer by Bloodhound for How do you tell IIS 6 to set the .NET version to 2.0 (not 1.1) When New sites are created? Bloodhound 2008-09-15T16:09:43Z 2008-09-15T16:09:43Z <p>I believe all you have to do is change the default website's version to 2.0. </p> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63695#63695 37 Answer by Bloodhound for Confessions of your worst WTF Moment. (What not to do.) Bloodhound 2008-09-15T15:02:27Z 2008-09-15T15:02:27Z <p><a href="http://thedailywtf.com" rel="nofollow">http://thedailywtf.com</a></p> http://stackoverflow.com/questions/62995/access-global-resx-file-in-asp-net-view-page/63083#63083 2 Answer by Bloodhound for Access Global .resx file in ASP.Net View Page Bloodhound 2008-09-15T13:54:35Z 2008-09-15T13:54:35Z <p>&lt;%= Resources.&lt;ResourceName&gt;.&lt;Property&gt; %></p> http://stackoverflow.com/questions/103158/iis-asp-caching Comment by Bloodhound on IIS ASP Caching Bloodhound 2008-09-19T15:52:44Z 2008-09-19T15:52:44Z Are you an admin on that box? http://stackoverflow.com/questions/102082/c-net-datagrid Comment by Bloodhound on C#.net datagrid Bloodhound 2008-09-19T14:16:55Z 2008-09-19T14:16:55Z Are you asking about databinding? http://stackoverflow.com/questions/101645/how-can-i-make-a-datepicker-work Comment by Bloodhound on How can I make a datePicker work Bloodhound 2008-09-19T13:01:12Z 2008-09-19T13:01:12Z Please provide more details. http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer Comment by Bloodhound on How do you vent stress as a programmer? Bloodhound 2008-09-18T12:56:02Z 2008-09-18T12:56:02Z That is why I haven't done it. http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer Comment by Bloodhound on How do you vent stress as a programmer? Bloodhound 2008-09-18T12:49:48Z 2008-09-18T12:49:48Z I noticed yesterday that a lot of people are adding 'as a programmer' to the end of their questions. I want to post a question like, &quot;What should I have for lunch today, as a programmer?&quot; http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92199#92199 Comment by Bloodhound on How do you vent stress as a programmer? Bloodhound 2008-09-18T12:44:33Z 2008-09-18T12:44:33Z I do that, and then nothing gets done! http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer Comment by Bloodhound on How do you vent stress as a programmer? Bloodhound 2008-09-18T12:42:35Z 2008-09-18T12:42:35Z Change your question &quot;How do you vent stress as a programmer?&quot; or the SO FAQ nazis will get you! http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88188#88188 Comment by Bloodhound on What's your favorite "programmer" cartoon? Bloodhound 2008-09-18T12:30:28Z 2008-09-18T12:30:28Z No, but at least the responses are....well, used to be. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629 Comment by Bloodhound on What's your favorite "programmer" cartoon? Bloodhound 2008-09-18T12:26:20Z 2008-09-18T12:26:20Z We ran across a Mary Null once that reeked havoc on a legacy system of ours.... Too many LastName != 'Null' conditions... http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81764#81764 Comment by Bloodhound on What's Your Motto As A Developer/Programmer? Bloodhound 2008-09-17T17:00:36Z 2008-09-17T17:00:36Z No, he sounds like a guy with the right focus! http://stackoverflow.com/questions/74261/when-is-it-time-to-change-database-backends Comment by Bloodhound on When is it time to change database backends? Bloodhound 2008-09-16T16:45:46Z 2008-09-16T16:45:46Z You're missing Access! :D http://stackoverflow.com/questions/68720/windows-server-2008-virtual-hosting/68744#68744 Comment by Bloodhound on Windows Server 2008 Virtual Hosting? Bloodhound 2008-09-16T02:03:33Z 2008-09-16T02:03:33Z Won't let me for some reason. http://stackoverflow.com/questions/66385/dynamic-database-schema/66397#66397 Comment by Bloodhound on Dynamic Database Schema Bloodhound 2008-09-15T23:34:37Z 2008-09-15T23:34:37Z I did the same for you. http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63695#63695 Comment by Bloodhound on Confessions of your worst WTF Moment. (What not to do.) Bloodhound 2008-09-15T21:41:59Z 2008-09-15T21:41:59Z Good enhancement for their site! I don't think it is appropriate though for this site based on the FAQ. &quot;Avoid asking questions that are subjective, argumentative, or require extended discussion.&quot; http://stackoverflow.com/questions/66007/auto-updating-in-corporate-environments-c Comment by Bloodhound on Auto-updating in Corporate Environments (C#) Bloodhound 2008-09-15T20:03:39Z 2008-09-15T20:03:39Z ClickOnce has worked for us. As far as 'cryptic' error messages. I have only seen those when my application has been misconfigured using mage.