User Bloodhound - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:43:07Zhttp://stackoverflow.com/feeds/user/6617http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208828/what-conventions-exist-for-ordering-arguments-in-methods5What conventions exist for ordering arguments in methods?Bloodhound2008-10-16T14:40:15Z2008-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#1031251Answer by Bloodhound for How do you move from the Proof of Concept phase to working on a production-ready solution?Bloodhound2008-09-19T15:49:53Z2008-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#1030730Answer by Bloodhound for Should I store a database ID field in ViewState?Bloodhound2008-09-19T15:44:40Z2008-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#982500Answer by Bloodhound for At which point in the lifecycle does GetConnectionInterface get called?Bloodhound2008-09-19T00:14:27Z2008-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#976270Answer by Bloodhound for What are the advantages and disadvantages of DTO's from a website performance perspective?Bloodhound2008-09-18T22:24:05Z2008-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#940511Answer by Bloodhound for What can cause an ASP.NET worker process to be recycled?Bloodhound2008-09-18T16:15:25Z2008-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#936810Answer by Bloodhound for float divsBloodhound2008-09-18T15:39:01Z2008-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#9216917Answer by Bloodhound for How do you vent stress as a programmer?Bloodhound2008-09-18T12:40:00Z2008-09-18T12:40:00Z<p>Shooting range....</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/83916#8391611Answer by Bloodhound for What's Your Motto As A Developer/Programmer?Bloodhound2008-09-17T14:37:37Z2008-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#824003Answer by Bloodhound for Poll: ASP.Net Data Access MethodologiesBloodhound2008-09-17T12:10:39Z2008-09-17T12:10:39Z<p>I vote for LLBLGen</p>
http://stackoverflow.com/questions/82345/charting-in-web-based-applications/82363#823630Answer by Bloodhound for Charting in web-based applicationsBloodhound2008-09-17T12:05:43Z2008-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#762350Answer by Bloodhound for Good way to time SQL queries when using Linq to SQLBloodhound2008-09-16T19:53:27Z2008-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#723293Answer by Bloodhound for Should I add the Visual Studio .suo and .user files to source controlBloodhound2008-09-16T13:42:45Z2008-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#720491Answer by Bloodhound for Best way to implement mutliple Default Buttons on a ASP.NET WebformBloodhound2008-09-16T13:15:10Z2008-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#719601Answer by Bloodhound for VB.Net TutorialsBloodhound2008-09-16T13:04:23Z2008-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#714451Answer by Bloodhound for Hints for a high-traffic web service, c# asp.net sql2000Bloodhound2008-09-16T11:41:29Z2008-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#712372Answer by Bloodhound for Hints for a high-traffic web service, c# asp.net sql2000Bloodhound2008-09-16T11:03:42Z2008-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#687441Answer by Bloodhound for Windows Server 2008 Virtual Hosting?Bloodhound2008-09-16T02:02:10Z2008-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#686440Answer by Bloodhound for How to parse a query string into a NameValueCollection in .NETBloodhound2008-09-16T01:46:27Z2008-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#686212Answer by Bloodhound for Text Centering Problem Using CSS with IEBloodhound2008-09-16T01:41:55Z2008-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#685051Answer by Bloodhound for how to get through spam filters?Bloodhound2008-09-16T01:21:57Z2008-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#681682Answer by Bloodhound for JavaScript to scroll long page to DIVBloodhound2008-09-16T00:15:57Z2008-09-16T00:15:57Z<p>Why not a named anchor?</p>
http://stackoverflow.com/questions/67475/good-references-tips-for-designing-rule-systems/67493#674931Answer by Bloodhound for Good references / tips for designing rule systems?Bloodhound2008-09-15T22:04:55Z2008-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#669770Answer by Bloodhound for How do I create a link to a footnote in HTML?Bloodhound2008-09-15T21:07:21Z2008-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#663971Answer by Bloodhound for Dynamic Database SchemaBloodhound2008-09-15T20:05:56Z2008-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#650530Answer by Bloodhound for Remove border from IFrameBloodhound2008-09-15T17:45:52Z2008-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#647470Answer by Bloodhound for Is there a way to asynchronously filter an IList?Bloodhound2008-09-15T17:05:01Z2008-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#642890Answer 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?Bloodhound2008-09-15T16:09:43Z2008-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#6369537Answer by Bloodhound for Confessions of your worst WTF Moment. (What not to do.)Bloodhound2008-09-15T15:02:27Z2008-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#630832Answer by Bloodhound for Access Global .resx file in ASP.Net View PageBloodhound2008-09-15T13:54:35Z2008-09-15T13:54:35Z<p><%= Resources.<ResourceName>.<Property> %></p>
http://stackoverflow.com/questions/103158/iis-asp-cachingComment by Bloodhound on IIS ASP CachingBloodhound2008-09-19T15:52:44Z2008-09-19T15:52:44ZAre you an admin on that box?http://stackoverflow.com/questions/102082/c-net-datagridComment by Bloodhound on C#.net datagridBloodhound2008-09-19T14:16:55Z2008-09-19T14:16:55ZAre you asking about databinding?http://stackoverflow.com/questions/101645/how-can-i-make-a-datepicker-workComment by Bloodhound on How can I make a datePicker workBloodhound2008-09-19T13:01:12Z2008-09-19T13:01:12ZPlease provide more details.http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmerComment by Bloodhound on How do you vent stress as a programmer?Bloodhound2008-09-18T12:56:02Z2008-09-18T12:56:02ZThat is why I haven't done it. http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmerComment by Bloodhound on How do you vent stress as a programmer?Bloodhound2008-09-18T12:49:48Z2008-09-18T12:49:48ZI 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, "What should I have for lunch today, as a programmer?"http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92199#92199Comment by Bloodhound on How do you vent stress as a programmer?Bloodhound2008-09-18T12:44:33Z2008-09-18T12:44:33ZI do that, and then nothing gets done!http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmerComment by Bloodhound on How do you vent stress as a programmer?Bloodhound2008-09-18T12:42:35Z2008-09-18T12:42:35ZChange your question "How do you vent stress as a programmer?" or the SO FAQ nazis will get you!http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88188#88188Comment by Bloodhound on What's your favorite "programmer" cartoon?Bloodhound2008-09-18T12:30:28Z2008-09-18T12:30:28ZNo, but at least the responses are....well, used to be. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84629#84629Comment by Bloodhound on What's your favorite "programmer" cartoon?Bloodhound2008-09-18T12:26:20Z2008-09-18T12:26:20ZWe 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#81764Comment by Bloodhound on What's Your Motto As A Developer/Programmer?Bloodhound2008-09-17T17:00:36Z2008-09-17T17:00:36ZNo, he sounds like a guy with the right focus! http://stackoverflow.com/questions/74261/when-is-it-time-to-change-database-backendsComment by Bloodhound on When is it time to change database backends?Bloodhound2008-09-16T16:45:46Z2008-09-16T16:45:46ZYou're missing Access! :Dhttp://stackoverflow.com/questions/68720/windows-server-2008-virtual-hosting/68744#68744Comment by Bloodhound on Windows Server 2008 Virtual Hosting?Bloodhound2008-09-16T02:03:33Z2008-09-16T02:03:33ZWon't let me for some reason. http://stackoverflow.com/questions/66385/dynamic-database-schema/66397#66397Comment by Bloodhound on Dynamic Database SchemaBloodhound2008-09-15T23:34:37Z2008-09-15T23:34:37ZI did the same for you. http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/63695#63695Comment by Bloodhound on Confessions of your worst WTF Moment. (What not to do.)Bloodhound2008-09-15T21:41:59Z2008-09-15T21:41:59ZGood enhancement for their site! I don't think it is appropriate though for this site based on the FAQ.
"Avoid asking questions that are subjective, argumentative, or require extended discussion."http://stackoverflow.com/questions/66007/auto-updating-in-corporate-environments-cComment by Bloodhound on Auto-updating in Corporate Environments (C#)Bloodhound2008-09-15T20:03:39Z2008-09-15T20:03:39ZClickOnce has worked for us. As far as 'cryptic' error messages. I have only seen those when my application has been misconfigured using mage.