User Jeromy Irvine - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:56:27Z http://stackoverflow.com/feeds/user/8223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1757505/is-there-any-difference-between-assemblies-compiled-from-webapplication-and-class/1757537#1757537 1 Answer by Jeromy Irvine for Is there any difference between assemblies compiled from WebApplication and ClassLibrary projects? Jeromy Irvine 2009-11-18T17:08:52Z 2009-11-18T17:08:52Z <p>There's no practical difference, but you might be able to tell them apart based on the names of various classes and methods. For example, the presence of a <code>Page_Load</code> method probably indicates that it's a web application.</p> http://stackoverflow.com/questions/1746756/c-a-class-design-problem-loading-property-list/1746792#1746792 2 Answer by Jeromy Irvine for C# - A class-design problem - Loading property List. Jeromy Irvine 2009-11-17T05:29:17Z 2009-11-17T05:29:17Z <p>Given your design, you shouldn't need to load the data each time the property is accessed. Instead, you could check to see if it has been set yet and only do the load if needed. This is a <a href="http://en.wikipedia.org/wiki/Lazy%5Floading" rel="nofollow">lazy loading</a> design.</p> <pre><code>private List&lt;Machine&gt; _machines; public List&lt;Machine&gt; Machines { get { //Get Machines by Stage ID and put them on List&lt;Machine&gt; //only if we have not already done so if (_machines == null) { _machines = Machine.Get(this.ID); } return _machines; } set{ _machines = value; } } </code></pre> http://stackoverflow.com/questions/1722220/inserting-to-the-database-while-uploading-a-file/1722814#1722814 1 Answer by Jeromy Irvine for Inserting to the database while uploading a file Jeromy Irvine 2009-11-12T15:01:04Z 2009-11-12T15:01:04Z <p>The file upload is a part of the HTML form post. Since the upload is a part of the form post process, it's always going to happen before <em>any</em> of your server-side code executes. The <code>PostedFile.SaveAs()</code> call doesn't cause the upload to happen, it just saves what was already uploaded as part of the request.</p> <p>If you absolutely need the database insert to happen before the upload begins, you could do as <em>@Chris Marisic</em> suggests and run the insert as an AJAX call prior to submitting the form.</p> http://stackoverflow.com/questions/1720160/how-to-create-a-bitmap-programmatically-in-c/1720261#1720261 2 Answer by Jeromy Irvine for How to create a bitmap programmatically in C# Jeromy Irvine 2009-11-12T06:16:47Z 2009-11-12T06:16:47Z <p>This should do what you need it to. It will fill the entire bitmap with the specified color.</p> <pre><code>using (Graphics gfx = Graphics.FromImage(Bmp)) using (SolidBrush brush = new SolidBrush(Color.FromArgb(redvalue, greenvalue, bluevalue))) { gfx.FillRectangle(brush, 0, 0, width, height); } </code></pre> http://stackoverflow.com/questions/1665339/error-when-passing-a-reference-to-a-derived-object-in-a-method/1665380#1665380 0 Answer by Jeromy Irvine for error when passing a reference to a derived object in a method Jeromy Irvine 2009-11-03T05:21:02Z 2009-11-03T05:26:20Z <p>Andrew Hare is correct, but in this case, you may not even want to be using the <code>ref</code>. Objects in C# are already passed by reference*. (As opposed to value types, which are not passed by reference unless you use the <code>ref</code> keyword.) There are very few cases that I can think of where you'd actually need to pass a reference type in that way. Without the <code>ref</code>, your original code should work just fine.</p> <p>*<em>Not really, but it's easier to understand that way if you come from a non-C# background. The reference is actually passed by value. <a href="http://www.yoda.arachsys.com/csharp/parameters.html" rel="nofollow">There is an excellent article</a> on the exactly how this all works.</em></p> http://stackoverflow.com/questions/1280985/do-expert-programmers-and-designers-really-exist/1281018#1281018 4 Answer by Jeromy Irvine for Do "expert" programmers and designers really exist Jeromy Irvine 2009-08-15T02:39:58Z 2009-08-15T02:39:58Z <p>Yes, "experts" do exist, and you might even be one in something. The problem is that you're talking to recruiters, and you need to understand their perspective.</p> <p>Most recruiters don't know anything about tech jobs beyond the various in-vogue acronyms and buzzwords. The actual companies doing the hiring rarely have the same expectations. Not all recruiters are equal of course (if you find a good one, keep the relationship active!), but most of them are simply doing keyword matching between positions and candidates. And most of them will up-sell both the position being offered and the people they submit for it.</p> <p>Take a close look at the job requirement; if you think you'd be a good fit and be able to do the job, then go ahead and tell the recruiter you're an "expert". For their purposes, and for their definition of the word, you probably are an expert.</p> http://stackoverflow.com/questions/135443/how-do-i-use-reflection-to-invoke-a-private-method-in-c 8 How do I use reflection to invoke a private method in C#? Jeromy Irvine 2008-09-25T19:26:14Z 2009-08-10T20:05:54Z <p>There are a group of private methods in my class, and I need to call one dynamically based on an input value. Both the invoking code and the target methods are in the same instance. The code looks like this:</p> <pre><code>MethodInfo dynMethod = this.GetType().GetMethod("Draw_" + itemType); dynMethod.Invoke(this, new object[] { methodParams }); </code></pre> <p>In this case, <code>GetMethod()</code> will not return private methods. What <code>BindingFlags</code> do I need to supply to <code>GetMethod()</code> so that it can locate private methods?</p> http://stackoverflow.com/questions/1217133/is-this-asp-net-inherited-shared-function-practice-acceptable/1217314#1217314 2 Answer by Jeromy Irvine for Is this ASP.NET Inherited Shared Function practice acceptable? Jeromy Irvine 2009-08-01T19:36:34Z 2009-08-01T19:36:34Z <p>This has a smell because it creates a false expectation of the behavior of the code.</p> <p>You mention that your reason for doing this is that '<em>it will enforce that all my forms include a shared GetForms function</em>'. This is only partly true. Yes, they will all have the <code>GetForms</code> function, but you're not actually <em>forcing</em> the derived classes to implement their own version of it. If you forget to implement the function on one of them, you'll be calling the base version, and you won't get any sort of warning about it from the compiler.</p> <p>That is the smell: it can't actually enforce the behavior that you want, but it creates an impression, at first glance, that it can. This will lead to headaches 6 months from now when you're adding a new Form type and you've forgotten the convention. You'll get no warning that something's wrong until you start getting bad results during testing.</p> <p>If you want to enforce behavior, you have to do it using instance members; using <code>MustOverride</code> (abstract) functions or an interface.</p> http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 2 Answer by Jeromy Irvine for DataTable.DefaultView.Sort Doesn't Sort Jeromy Irvine 2009-07-30T19:27:53Z 2009-07-30T20:16:20Z <p>Sorting the view won't change the sort order of the data in the table, just the order in the view. It should work if you do your <code>foreach</code> on the view instead, casting the row from the DataRowView back to your strongly typed row.</p> <pre><code>foreach (DataRowView logRowView in actionLogDT.DefaultView) { CustomerService.ActionLogStartEndRow logRow = logRowView.Row as CustomerService.ActionLogStartEndRow; // code here } </code></pre> http://stackoverflow.com/questions/1197417/why-are-plain-text-passwords-bad-and-how-do-i-convince-my-boss-that-his-treasure/1197579#1197579 2 Answer by Jeromy Irvine for Why are plain text passwords bad, and how do I convince my boss that his treasured websites are in jeopardy? Jeromy Irvine 2009-07-29T01:03:13Z 2009-07-29T01:03:13Z <p>You may wish to point out that failure to properly secure the accounts could be exposing the company to legal liability if the information were ever compromised. Ignoring a known vulnerability could wind up costing you in legal fees if a user's data was exposed as a result of your company's actions (or inaction, as the case may be).</p> <p>In the United States, there are certain types of data, such as financial and medical information, that companies are legally bound to keep secure and private. Failure to do so can have serious consequences. I'm not familiar with other countries' laws in this regard, but it's something worth looking into if your company is dealing with such data.</p> http://stackoverflow.com/questions/1001407/why-does-submissions-wheres-false-s-status-convert-toint16-rai/1001532#1001532 5 Answer by Jeromy Irvine for Why does 'Submissions.Where(s => (false && s.Status == Convert.ToInt16("")))' raise an FormatException? Jeromy Irvine 2009-06-16T13:38:04Z 2009-06-16T13:38:04Z <p>As the others have pointed out, LINQ to SQL code gets pulled apart into an expression tree before being run as SQL code against the database. Since SQL does not necessarily follow the same short-circuit boolean rules as C#, the right side of your expression code might get parsed so that the SQL can be constructed.</p> <p>From <a href="http://msdn.microsoft.com/en-us/library/bb386909.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p>C# specifies short circuit semantics based on lexical order of operands for logical operators &amp;&amp; and ||. SQL on the other hand is targeted for set-based queries and therefore provides more freedom for the optimizer to decide the order of execution.</p> </blockquote> <p>As for why you're getting an exception with this code, <code>Convert.ToInt16("")</code> will always throw precisely that exception because there's no way to convert an empty string into an integer. Your other example doesn't attempt an invalid conversion, hence it runs without a problem.</p> http://stackoverflow.com/questions/799049/c-regular-expression-problem/799062#799062 7 Answer by Jeromy Irvine for c# regular expression problem Jeromy Irvine 2009-04-28T17:37:19Z 2009-06-14T21:56:45Z <p>You're using both the @ (verbatim string) syntax and escaping your slashes in the sample you posted. You need to either remove the @, or remove the extra slashes and escape your double quotes by doubling them up, then it should work.</p> <p>(For what it's worth, if you're going to be working with regular expression on an ongoing basis, I would suggest investing in a copy of <a href="http://www.regexbuddy.com/" rel="nofollow">RegExBuddy</a>.)</p> http://stackoverflow.com/questions/941696/asp-net-user-control-property-value-options-in-designer-mode/941774#941774 2 Answer by Jeromy Irvine for ASP.NET User Control Property Value Options In Designer Mode Jeromy Irvine 2009-06-02T20:37:37Z 2009-06-02T20:43:25Z <p>The enum is the way to go. It will provide IntelliSense for the values in the Visual Studio HTML editor, and it will be more type-safe and easier to use in the code.</p> http://stackoverflow.com/questions/900903/c-ref-keyword-performance/900925#900925 5 Answer by Jeromy Irvine for C# 'ref' keyword, performance. Jeromy Irvine 2009-05-23T05:28:42Z 2009-05-23T05:28:42Z <p>Since Bitmap is a reference type, there is no practical difference for performance in this scenario as it is already being passed by reference to the method.</p> <p>I'd recommend <a href="http://www.yoda.arachsys.com/csharp/parameters.html" rel="nofollow">Jon Skeet's article on the subject</a> for a thorough explanation of how "by reference" and "by value" work in C#.</p> http://stackoverflow.com/questions/865342/is-there-a-feature-compatible-alternative-to-asplistview 1 Is there a feature compatible alternative to asp:ListView? Jeromy Irvine 2009-05-14T19:50:03Z 2009-05-14T21:29:08Z <p>Is there a feature compatible alternative to the asp:ListView control that came with ASP.NET 3.5? Due to some <a href="http://forums.asp.net/t/1422864.aspx" rel="nofollow">recent issues</a> with a certain hosting provider's installation of SP1, I'm looking for a temporary stand in for the ListView that can be dropped into place with minimal change to the rest of my code.</p> <p>One simple alternative would be to use a Repeater. Are there any major gotchas in downgrading from a ListView to a Repeater that I need to be aware of?</p> http://stackoverflow.com/questions/860057/can-asking-a-developer-whether-he-prefers-webforms-or-mvc-be-a-good-indicator-of/860121#860121 2 Answer by Jeromy Irvine for Can asking a developer whether he prefers WebForms or MVC be a good indicator of his proficiency? Jeromy Irvine 2009-05-13T20:03:58Z 2009-05-13T20:03:58Z <p>Would it be a good indicator of his proficiency? It could be, but maybe not in the way you mean. Awareness of MVC and the differences between it and WebForms may be a useful indicator of how closely the developer follows new technologies within the ASP.NET field. It could also be a possible indicator of how much self-learning the developer does, assuming their current and past jobs have been exclusively WebForms.</p> <p>On the other hand, the developer's actual preference for one over the other is not a reliable indicator of proficiency or experience. It could simply be a matter of never having had to build a site where MVC would be a better choice than WebForms. As a result, they may have a preference for WebForms over MVC for a valid reason. Or maybe they're sold on the idea of MVC, but they don't like the implementation.</p> http://stackoverflow.com/questions/797674/can-i-get-the-same-benefits-of-functional-programming-f-by-using-more-static-m/797682#797682 2 Answer by Jeromy Irvine for Can I get the same benefits of functional programming (F#) by using more static methods in C#? Jeromy Irvine 2009-04-28T12:38:27Z 2009-04-28T12:38:27Z <p>No, the two concepts are unrelated. Static methods in C# can still modify incoming objects as normal, and other variables using ref or out.</p> http://stackoverflow.com/questions/797626/is-using-a-salt-all-that-good/797665#797665 1 Answer by Jeromy Irvine for Is using a 'salt' all that good? Jeromy Irvine 2009-04-28T12:33:55Z 2009-04-28T12:33:55Z <p>The real value in a salt is not only in protecting a single record against attack, but rather making it so that if multiple users have the same password, they will appear different in their hashed form. For that to be effective, you have to use a per-record salt.</p> <p>If your security encryption/hashing mechanism results in users with the same password having the same representation in your database, then you've provided the attacker with an easy method of cracking many accounts at once.</p> http://stackoverflow.com/questions/668763/post-increment-operator-overloading/668795#668795 3 Answer by Jeromy Irvine for Post-increment Operator Overloading Jeromy Irvine 2009-03-21T05:30:29Z 2009-03-21T06:23:14Z <p>The key is in understanding how the line <code>Account b = a++;</code> works. Given how your code is written, this line is the equivalent of this:</p> <pre><code>Account b = a; a++; </code></pre> <p>And that is the order it will execute in. The assignment effectively(1) happens before the increment. So, the first effect of this line is that <em>a</em> and <em>b</em> both refer to the original object <em>a</em>.</p> <p>Now the ++ portion will be evaluated. Inside of the operator method, we increment the <code>Balance</code> of the original object. At this point <em>a</em> and <em>b</em> are both pointing at the original, with a <code>Balance</code> of 11, and <em>b</em> will continue to do so.</p> <p>However, you've created a new object inside the operator method and returned it as the output of the operator. <em>a</em> will now be updated to point at the newly created object.</p> <p>So, <em>a</em> now points to a new object, while <em>b</em> continues to point to the original. That's why the WriteLine output appears swapped.</p> <p>As @MarkusQ pointed out, the ++ operator is meant to do in-place modification. By generating a new object, you're breaking that assumption. Operator overloading on objects is a tricky subject, and this is an excellent example of why it's better avoided in most cases.</p> <p><hr /></p> <p>1 - <em>Just for accuracy's sake, the assignment does not actually happen before the increment when dealing with operators on objects, but the end result is the same in this case. Actually, the original object reference is copied, the operation is carried out on the original, and then the copied reference is assigned to the left-hand variable. It's just easier to explain if you pretend that assignment happens first.</em></p> <p>What's really happening is that this:</p> <pre><code>Account b = a++; </code></pre> <p>results in this, due to how the ++ operator works on objects:</p> <pre><code>Account copy = a; Account x = new Account("operator ++", a.Balance); a.Balance += 1; // original object's Balance is incremented a = x; // a now points to the new object, copy still points to the original Account b = copy; // b and copy now point at the same, original, object </code></pre> http://stackoverflow.com/questions/668806/minimalizing-namespaces-for-custom-functions/668815#668815 1 Answer by Jeromy Irvine for Minimalizing namespaces for custom functions Jeromy Irvine 2009-03-21T05:48:48Z 2009-03-21T05:48:48Z <p>You can't cut it all the way down to just the method name, but given that you've already got the <code>using MyProject.CommonFunction;</code> line in place, you could shorten it to:</p> <pre><code>StringUtilities.UppercaseFirst("hello world"); </code></pre> http://stackoverflow.com/questions/667841/div-content-shows-on-page-instead-of-jquery-dialog/667907#667907 1 Answer by Jeromy Irvine for DIV content shows on page instead of JQuery Dialog Jeromy Irvine 2009-03-20T20:45:24Z 2009-03-20T20:45:24Z <p>I believe you have two related issues here.</p> <p>The reason that the DIV is showing when you first load is because you haven't yet told it not to. The jQuery script that makes the DIV behave as a dialog doesn't run until the HTML DOM is loaded, and until then it will not hide the DIV. A simple solution is to hide the DIV by default using CSS.</p> <pre><code>&lt;div id="dialog" title="Membership Renewal" style="display:none;"&gt; Your membership is going to expire. &lt;/div&gt; </code></pre> <p>The button click problem is related: <code>RegisterClientScriptBlock</code> will output a script that runs as soon as it is encountered, so the jQuery code that turns it into a dialog hasn't had a chance to run yet. In order to give it a chance to do so, you can change the C# code to use <code>RegisterStartupScript</code>, which will delay execution of <code>showjQueryDialog()</code> until the page has finished loading and the jQuery code has had a chance to make the DIV into a dialog.</p> <pre><code>if (timeSpan.Days &gt;= 30) { //Show JQuery Dialog Here ScriptManager.RegisterStartupScript(this, typeof(Page), "showExpiration", "showjQueryDialog()", true); } </code></pre> http://stackoverflow.com/questions/629873/draft-version-of-database-table/629890#629890 3 Answer by Jeromy Irvine for Draft version of database table Jeromy Irvine 2009-03-10T12:20:16Z 2009-03-10T12:26:40Z <p>I don't know if it this would qualify as a pattern, but I think that the cleanest way to go about this would be to create a view that does a union of the two tables and search against that.</p> http://stackoverflow.com/questions/580429/safest-way-to-check-for-integer/580460#580460 1 Answer by Jeromy Irvine for Safest way to check for integer. Jeromy Irvine 2009-02-24T04:17:47Z 2009-02-24T04:17:47Z <p><code>Integer.TryParse</code> is designed to be the safe way to do this: that's why it was put into the framework in the first place. For an Object, you could always just call <code>ToString()</code> before using <code>TryParse</code>.</p> <p>I'd also avoid using <code>On Error Resume Next</code> in favor of a <code>Try-Catch</code> block if you need to swallow an error for some reason, as it's much less likely to cause an unwanted side effect.</p> http://stackoverflow.com/questions/553637/should-programmers-have-to-be-part-of-a-professional-body-to-practice/553696#553696 4 Answer by Jeromy Irvine for Should programmers have to be part of a professional body to practice? Jeromy Irvine 2009-02-16T15:35:04Z 2009-02-16T15:35:04Z <p>No. Anybody can download a basic compiler and start programming their very own "Hello, World" program, and nobody is hurt physically, legally, or otherwise by that. Medicine, law, and accounting, to use your examples, all have very real legal or physical consequences when an amateur starts practicing on their own without proper training and licensing.</p> <p>There's a pretty obvious difference in consequence between an untrained, unlicensed programmer writing code and an unlicensed doctor performing surgery or an untrained lawyer representing somebody in court. The untrained programmer might not write the best code, but it's not very likely that their customer is going to wind up dead or in prison as a result.</p> http://stackoverflow.com/questions/508826/set-properties-on-dynamically-added-usercontrol/508879#508879 2 Answer by Jeromy Irvine for Set properties on dynamically added UserControl Jeromy Irvine 2009-02-03T20:59:25Z 2009-02-03T21:04:57Z <p>Ah, I answered before you added the additional clarification. The short answer is, yes, just cast it as your custom type.</p> <p>I'll leave the rest of my answer here for reference, though it doesn't appear you'll need it.</p> <p><hr /></p> <p>Borrowing from the code in the other question, and assuming that all your User Controls can be made to inherit from the same base class, you could do this.</p> <p>Create a new class to act as the base control:</p> <pre><code>public class MyBaseControl : System.Web.UI.UserControl { public string MyProperty { get { return ViewState["MyProp"] as string; } set { ViewState["MyProp"] = value; } } } </code></pre> <p>Then update your user controls to inherit from your base class instead of UserControl:</p> <pre><code>public partial class SampleControl2 : MyBaseControl { .... </code></pre> <p>Then, in the place where you load the controls, change this:</p> <pre><code>UserControl uc = (UserControl)LoadControl(controlPath); PlaceHolder1.Controls.Add(uc); </code></pre> <p>to:</p> <pre><code>MyBaseControl uc = (MyBaseControl)LoadControl(controlPath); uc.MyProperty = "foo"; PlaceHolder1.Controls.Add(uc); </code></pre> http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/487785#487785 1 Answer by Jeromy Irvine for How do you write code at home? Jeromy Irvine 2009-01-28T14:22:49Z 2009-01-28T14:22:49Z <p>It really does depend both on the license that your company is using, and on what your company's policy is regarding using company-purchased licenses for non-company purposes.</p> <p>One thing that you probably want to avoid is using a company-purchased license to do any paid work on the side. If you're doing that, purchasing your own software would be a good investment. You might even be able to take a tax deduction on the cost of the license, depending on where you live, at least in the US, which can make the prices sting a bit less.</p> <p>I do just enough contract work on the side to make it worth my while to buy my own copy of Visual Studio and related tools.</p> http://stackoverflow.com/questions/451925/a-logical-error-with-my-code/451979#451979 0 Answer by Jeromy Irvine for A logical error with my code Jeromy Irvine 2009-01-16T20:59:15Z 2009-01-16T20:59:15Z <p>As the others have already mentioned, <em>in the general case</em>, there's no guarantee that the number you're searching for is in the list of randomly generated numbers. <em>In the specific case</em> that you posted, the number will <em>never</em> appear in the list because you're generating random numbers in the <strong>0-100</strong> range, then trying to find <strong>500</strong>.</p> http://stackoverflow.com/questions/448371/why-are-these-folders-share-names-appended-with-dollar-signs/448394#448394 4 Answer by Jeromy Irvine for Why are these folders' share names appended with dollar signs? Jeromy Irvine 2009-01-15T20:45:37Z 2009-01-15T20:45:37Z <p>Appending the dollar sign makes the share hidden, so it won't show up if you browse to the computer in Windows Explorer or use <code>net view</code> on the command line.</p> <p>If you want to share to show up in those cases, don't put the $ on it.</p> http://stackoverflow.com/questions/375320/drop-down-box-not-fully-displayed-all-browsers/375669#375669 0 Answer by Jeromy Irvine for Drop Down Box Not Fully Displayed (All Browsers) Jeromy Irvine 2008-12-17T19:07:26Z 2008-12-17T19:07:26Z <p>There might be no difference in the dropdowns; however, based on the code you provided, there is a difference in the <code>LI</code>s containing them.</p> <p>You have a base style set for all list items, but you also have a specific style defined for <code>li.name</code>. I would focus on the <code>div#byitem ul.horz li.name</code> style. There's not enough code for me to reproduce it locally, but my guess would be that <code>display: block</code> is the culprit.</p> http://stackoverflow.com/questions/361620/asp-net-mvc-vs-webforms-for-first-page-load-speed-for-big-projects/361689#361689 1 Answer by Jeromy Irvine for ASP.NET MVC vs WebForms for First Page Load Speed for Big Projects Jeromy Irvine 2008-12-12T02:05:15Z 2008-12-12T02:05:15Z <p>MVC still uses the same ASP.NET framework as Web Forms, so you are probably going to see similar behavior, regardless. </p> <p>The long first load time is because your project's build output is still just IL code that needs to be compiled into native code by the JIT compiler before executing. Any code changes that you make will cause the previously cached native code for your app to be discarded, so the JIT has to recompile. Naturally, the larger your project, the longer it's going to take for the JIT to process it.</p> http://stackoverflow.com/questions/1722220/inserting-to-the-database-while-uploading-a-file/1722537#1722537 Comment by Jeromy Irvine on Inserting to the database while uploading a file Jeromy Irvine 2009-11-12T17:25:16Z 2009-11-12T17:25:16Z The uploaded file is part of the HTTP post. The post, and thus the upload, is going to take place before any server code is run, and that includes the thread-spawning code. Spawning a thread to do the database insert could actually result in the file being uploaded <i>and</i> saved to disk before the insert is completed. That takes the OP even farther from his desired behavior. http://stackoverflow.com/questions/1722220/inserting-to-the-database-while-uploading-a-file/1722814#1722814 Comment by Jeromy Irvine on Inserting to the database while uploading a file Jeromy Irvine 2009-11-12T15:34:49Z 2009-11-12T15:34:49Z @Walter - This might help get you started <a href="http://www.asp.net/learn/ajax-videos/" rel="nofollow">asp.net/learn/ajax-videos</a> http://stackoverflow.com/questions/1722220/inserting-to-the-database-while-uploading-a-file/1722537#1722537 Comment by Jeromy Irvine on Inserting to the database while uploading a file Jeromy Irvine 2009-11-12T15:19:58Z 2009-11-12T15:19:58Z Sorry if I keep repeating myself on this question, but this is not a threading issue. As such, threading is not the solution. http://stackoverflow.com/questions/1722220/inserting-to-the-database-while-uploading-a-file/1722697#1722697 Comment by Jeromy Irvine on Inserting to the database while uploading a file Jeromy Irvine 2009-11-12T15:06:37Z 2009-11-12T15:06:37Z This is not a threading issue, it's an HTTP post issue. The code to run the database insert in a thread is still going to fire after the file is already uploaded as part of the HTTP post. http://stackoverflow.com/questions/1665339/error-when-passing-a-reference-to-a-derived-object-in-a-method Comment by Jeromy Irvine on error when passing a reference to a derived object in a method Jeromy Irvine 2009-11-03T05:38:21Z 2009-11-03T05:38:21Z Using <code>ref</code> is what would allow a different object to come back. If you read the link in my answer, it explains it far better than any of us can in a comment. http://stackoverflow.com/questions/1665339/error-when-passing-a-reference-to-a-derived-object-in-a-method/1665380#1665380 Comment by Jeromy Irvine on error when passing a reference to a derived object in a method Jeromy Irvine 2009-11-03T05:26:49Z 2009-11-03T05:26:49Z Indeed. I added that clarification to my answer. http://stackoverflow.com/questions/1293548/how-many-lines-should-a-method-typically-have Comment by Jeromy Irvine on How many lines should a method typically have? Jeromy Irvine 2009-08-18T13:44:13Z 2009-08-18T13:44:13Z Anybody saying that a method should fit on one screen just makes me laugh. I have 4 different monitors/resolutions that I use in any given week while coding. So, is one screen-full 39, 47, 55, or 76 lines of code? http://stackoverflow.com/questions/1217133/is-this-asp-net-inherited-shared-function-practice-acceptable/1217314#1217314 Comment by Jeromy Irvine on Is this ASP.NET Inherited Shared Function practice acceptable? Jeromy Irvine 2009-08-01T19:52:03Z 2009-08-01T19:52:03Z There's no language mechanism to allow forced overriding of shared members. The workaround is to rethink your design so the code that works with the forms either doesn't care what type they are, or to use helper functions, or perhaps factory to create handlers that can deal with each type of form as needed. http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 Comment by Jeromy Irvine on DataTable.DefaultView.Sort Doesn't Sort Jeromy Irvine 2009-07-30T20:19:03Z 2009-07-30T20:19:03Z OK, I updated the answer to account for the strongly typed row. This should hopefully do the trick for you. http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 Comment by Jeromy Irvine on DataTable.DefaultView.Sort Doesn't Sort Jeromy Irvine 2009-07-30T19:36:42Z 2009-07-30T19:36:42Z @Mike - In that case, my updated answer should work. http://stackoverflow.com/questions/1208548/datatable-defaultview-sort-doesnt-sort/1208788#1208788 Comment by Jeromy Irvine on DataTable.DefaultView.Sort Doesn't Sort Jeromy Irvine 2009-07-30T19:31:01Z 2009-07-30T19:31:01Z Does <code>ActionLogStartEndRow</code> derive from DataRow? http://stackoverflow.com/questions/1001407/why-does-submissions-wheres-false-s-status-convert-toint16-rai/1001430#1001430 Comment by Jeromy Irvine on Why does 'Submissions.Where(s => (false && s.Status == Convert.ToInt16("")))' raise an FormatException? Jeromy Irvine 2009-06-16T13:41:08Z 2009-06-16T13:41:08Z @hwschuur - See my answer for an explanation of why one works and the other doesn't. http://stackoverflow.com/questions/181597/what-are-the-naming-guidelines-for-asp-net-controls/181623#181623 Comment by Jeromy Irvine on What are the naming guidelines for ASP.NET controls? Jeromy Irvine 2009-05-26T15:14:55Z 2009-05-26T15:14:55Z Controls are about the only place I still use &quot;bad&quot; Hungarian notation because I find it has more upside than downside in distinguishing between controls and &quot;real&quot; variables. As far as the name change if you change the control type, I would argue that this is actually a <i>good</i> thing, since the methods and properties of a TextBox and DropDown, for example, can be quite different. If you do change the control type, changing the name is a simple way to find any potential problem areas in your code that assumes the old type. http://stackoverflow.com/questions/900780/if-i-have-limited-time-to-learn-a-few-design-patterns-which-ones-should-i-learn/900792#900792 Comment by Jeromy Irvine on If I have limited time to learn a few design patterns, which ones should I learn? Jeromy Irvine 2009-05-23T04:53:06Z 2009-05-23T04:53:06Z +1 for the second paragraph of your answer. It's far more useful to view design patterns as a vocabulary for describing common solutions to common problems. Asking which design patterns to learn first is like asking what medical words you should memorize first in order to become doctor. http://stackoverflow.com/questions/865342/is-there-a-feature-compatible-alternative-to-asplistview/865383#865383 Comment by Jeromy Irvine on Is there a feature compatible alternative to asp:ListView? Jeromy Irvine 2009-05-14T22:51:34Z 2009-05-14T22:51:34Z @Ben - That's a great link. It's probably the way I'd have gone if ListView hadn't been available, making it a non-issue at the time.