User Chris Lively - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:18:42Z http://stackoverflow.com/feeds/user/2424 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1744508/why-does-delphi-2009-sometimes-more-often-that-not-insist-i-build/1744549#1744549 0 Answer by Chris Lively for Why does Delphi 2009 sometimes (more often that not) insist I build? Chris Lively 2009-11-16T20:08:25Z 2009-11-16T20:08:25Z <p>Without the errors, etc it's going to be really hard to have an answer for this. You might want to contact product support for Delphi. </p> <p>I don't know who owns that product anymore otherwise I'd give you a link.</p> http://stackoverflow.com/questions/1744471/methods-for-automatic-user-uploads/1744519#1744519 0 Answer by Chris Lively for Methods for Automatic User Uploads Chris Lively 2009-11-16T20:02:41Z 2009-11-16T20:02:41Z <p>sftp is about the only way to go. Why do you need a web server involved?</p> http://stackoverflow.com/questions/1743355/how-can-i-make-different-html-links-different-colors/1743379#1743379 1 Answer by Chris Lively for how can i make different html links different colors . . Chris Lively 2009-11-16T16:47:02Z 2009-11-16T19:39:07Z <p>There are a couple different ways. CSS can appear in your head tag, so it doesn't have to be a separate style sheet. </p> <p>One is to use the style attribute:</p> <pre><code>&lt;a style="color:blue;"&gt;...&lt;/a&gt; </code></pre> <p>Another is to use css classes:</p> <pre><code>&lt;style&gt; .navLink { color: blue; } &lt;/style&gt; &lt;a class="navLink"&gt;...&lt;/a&gt; </code></pre> <p>There are lots of options. See <a href="http://www.echoecho.com/csslinks.htm" rel="nofollow">http://www.echoecho.com/csslinks.htm</a></p> http://stackoverflow.com/questions/1743059/mail-doesnt-get-send-untill-i-terminate-my-application-system-mail-net/1743104#1743104 2 Answer by Chris Lively for Mail doesn't get send untill I terminate my application - System.Mail.Net Chris Lively 2009-11-16T15:57:52Z 2009-11-16T16:25:59Z <p>I wonder if your application has a lock on the attachment which is preventing the mail component from doing its work until your application starts shutting down. Can you verify that all locks are cleared prior to sending the mail?</p> <p>You might start with a new small app that only sends an email. Once that it working properly, add a hard coded attachment. Verify it's still working. If everything is good, add your code for how you are handling attachments. If it breaks, tweak your code. Rinse and repeat. ;)</p> http://stackoverflow.com/questions/1742869/net-2-0-app-on-windows-server-2003-doesnt-load-a-config-file/1743238#1743238 0 Answer by Chris Lively for .NET 2.0 app on Windows Server 2003 doesn’t load a .config file Chris Lively 2009-11-16T16:23:21Z 2009-11-16T16:23:21Z <p>Two things come to mind: First, is the config file located in the same directory as the executable? </p> <p>Second, is the "working directory" of the executable the same as it's path? If the working directory isn't correct, then it won't be able to locate the file.</p> <p>One more thing to do would be to get a copy of <a href="http://technet.microsoft.com/en-us/sysinternals/default.aspx" rel="nofollow">sysinternals</a>, specifically the process explorer tool to see what file (and path) it's trying to load.</p> http://stackoverflow.com/questions/1743131/must-know-iis-features-for-net-architect-lead/1743166#1743166 9 Answer by Chris Lively for "Must Know" IIS features for .NET Architect/Lead Chris Lively 2009-11-16T16:08:41Z 2009-11-16T16:08:41Z <p>They should understand (in no particular order) </p> <ul> <li>web gardens</li> <li>application pools</li> <li>Different options for Session and reasons for / against its usage.</li> <li>Browser inconsistencies with form request size (particularly safari)</li> <li>Load balancing</li> <li>Use of secondary servers for static content (images, css, etc)</li> <li>Browser inconsistencies around cookie handling</li> <li>Performance monitoring deployed applications</li> </ul> <p>If you need proper google/search engine support</p> <ul> <li>URL Rewriting</li> <li>The types of Redirects</li> </ul> <p>And the Number 1 thing EVERY web architect should understand</p> <ul> <li>Security. How to break in and how to defend against it.</li> </ul> <p>If they don't know security then I wouldn't hire them. It is too serious a subject to learn on the job; everything else can be acquired pretty quickly.</p> http://stackoverflow.com/questions/1731717/ms-access-db-over-network-share 1 MS Access db over network share Chris Lively 2009-11-13T20:32:16Z 2009-11-15T00:23:42Z <p>I have a simple web site that needs to connect to an access database over a unc share.</p> <p>The server is a windows 2003 box running IIS 6. The connection is via ODBC.</p> <p>We're receiving an error message that says "<br> ERROR [42000] [Microsoft][ODBC Microsoft Access Driver] Not a valid password.<br> ERROR [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed </p> <p>I'm guessing that the IIS server doesn't have access to the share. The app pool is running under Network Service.</p> <p>How can I fix this?</p> <p><strong>UPDATE</strong><br> This just got weird. IF I have ReadOnly checked in the ODBC configuration AND No one else is attached to that database, then it works. </p> <p>If someone else attaches to it then it gives me an error "HY000][Microsoft][ODBC Microsoft Access Driver] COuld not use '(unknown)'; file already in use." </p> <p>If I uncheck the readonly configuration (no other changes), then it says "Not a valid password".</p> http://stackoverflow.com/questions/1724174/mysql-php-update-query-with-dates-not-updating/1724314#1724314 0 Answer by Chris Lively for MySQL/PHP update query with dates not updating Chris Lively 2009-11-12T18:22:06Z 2009-11-12T18:22:06Z <p>Three things I would look for:</p> <ol> <li><p>Is the code attaching to the same database you are looking at? (I spent a few hours on this one ;)</p></li> <li><p>Is another update statement (or this one) running immediately afterwards that would change the values back? Here you need some logging to figure it out.</p></li> <li><p>If you echo the sql, what happens when you run it directly yourself?</p></li> </ol> http://stackoverflow.com/questions/188870/how-to-use-c-to-sanitize-input-on-an-html-page 7 How to use C# to sanitize input on an html page? Chris Lively 2008-10-09T19:41:05Z 2009-11-10T12:53:18Z <p>Is there a library or acceptable method for sanitizing the input to an html page?</p> <p>In this case I have a form with just a name, phone number, and email address. </p> <p>Code must be C#.</p> <p>For example:</p> <pre><code>"&lt;script src='bobs.js'&gt;John Doe&lt;/script&gt;" should become "John Doe" </code></pre> http://stackoverflow.com/questions/437882/c-equivalent-of-nan-or-isnumeric/437886#437886 30 Answer by Chris Lively for C# equivalent of NaN or IsNumeric Chris Lively 2009-01-13T03:35:30Z 2009-11-09T19:07:00Z <p>This doesn't have the regex overhead</p> <pre><code>double myNum = 0; String testVar = "Not A Number"; if (Double.TryParse(testVar, out myNum)) { // it is a number } else { // it is not a number } </code></pre> <p>Incidentally, all of the standard data types, with the glaring exception of GUIDs, support TryParse.</p> http://stackoverflow.com/questions/1646305/what-is-the-easiest-way-to-convert-table-tags-into-standard-css/1646401#1646401 0 Answer by Chris Lively for What is the easiest way to convert table tags into standard css? Chris Lively 2009-10-29T20:38:46Z 2009-10-29T20:38:46Z <p>Step 1. Think hard about why (and whether) you want to do this.</p> <p>Step 2. Start from scratch and rebuild what you have, or go with a design that actually lends itself to css styling.</p> <p>Step 3. See Step 1 when the inevitable flow and layout problems arise across different browser definitions.</p> http://stackoverflow.com/questions/1646341/what-is-the-best-practice-for-naming-and-casing-multi-word-css-classes-and-ids/1646363#1646363 2 Answer by Chris Lively for What is the best practice for naming and casing multi-word CSS classes and ids? Chris Lively 2009-10-29T20:32:39Z 2009-10-29T20:32:39Z <p>I see the following casing styles a lot:</p> <p>characterSkills, CharacterSkills </p> <p>But, at the end of the day it doesn't matter which style you pick. Just be consistent within your own app.</p> http://stackoverflow.com/questions/1633799/how-do-i-connect-a-pair-of-clients-together-via-a-server-for-an-online-game/1633851#1633851 1 Answer by Chris Lively for How do I connect a pair of clients together via a server for an online game? Chris Lively 2009-10-27T21:45:12Z 2009-10-27T21:45:12Z <p>Typically game engines send UDP packets because of latency. The fact is that TCP is just not fast enough and reliability is less of a concern than speed is.</p> <p>Web services would compound the latency issues inherent in TCP due to additional overhead. Further, they would eat up memory depending on number of expected players. Finally, they have a large amount of payload overhead that you just don't need (xml anyone?).</p> <p>There are several ways to go about this. One way is centralized messaging (client/server). This means that you would have a java server listening for udp packets from the clients. It would then rebroadcast them to any of the relevant users. </p> <p>A second way is decentralized (peer to peer). A client registers with the server to state what game / world it's in. From that it gets a list of other clients in that world. The server maintains that list and notifies the other clients of people who join / drop out.</p> <p>From that point forward clients broadcast udp packets directly to the other users. </p> http://stackoverflow.com/questions/1633505/team-foundation-server-visual-studio-2008-pro-a-worthwhile-combination/1633570#1633570 5 Answer by Chris Lively for Team Foundation Server + Visual Studio 2008 Pro. A worthwhile combination? Chris Lively 2009-10-27T20:49:09Z 2009-10-27T21:21:50Z <p>First, workgroup is limited to 5 people so that path isn't available to you.</p> <p>Second, and more importantly, why use TFS? (I don't ask this lightly as I am a very big proponent of TFS). </p> <p>IF you decide to use TFS without purchasing the Team level visual studio products then, yes, you will need to buy a license for each TFS user which will be accessing the server. The license pricing varies, but I think it's around $450 (USD) per seat plus $2700 (USD) for the server itself in a single server installation. The Team products all come with those licenses which is why you don't have to buy them. You will need a license for anyone that accesses any type of reports, source control, etc.</p> <p>The reason why I ask about why you want to use TFS is that if you are using VS Pro AND FogBuz then you are already throwing away most of the TFS features. What's left is simply source control and build management. Source control can be acquired for free with SVN and you could use something for build management like Cruise Control. Testing could be handled by nUnit.</p> <p>The whole point in TFS is the fact that everything is integrated. So that when you do a check in you can tie that to a particular work item, etc. Reports are available for looking at check ins, work item tracking, bug tracking, etc.</p> http://stackoverflow.com/questions/1633478/what-value-has-visual-studios-css-support/1633503#1633503 0 Answer by Chris Lively for What value has Visual Studios CSS support? Chris Lively 2009-10-27T20:37:41Z 2009-10-27T20:37:41Z <p>Typically I turn off all of the Visual Studio CSS stuff. It's not exactly well made. Instead I've been using MS Expression to build master pages and manage CSS files. It is light years ahead of VS.</p> <p>That said, I see firebug as a complimentary product, not really a replacement. I use FireBug and the equivalents in safari, chrome, and IE 8 to see what's going on with the internals of a particular element on a page. I use Expression to edit and maintain the css.</p> http://stackoverflow.com/questions/1633236/sql-query-first-next-last-rows-in-a-set/1633410#1633410 0 Answer by Chris Lively for Sql Query First, Next, Last Rows in a Set Chris Lively 2009-10-27T20:19:30Z 2009-10-27T20:29:03Z <p>Here's one solution</p> <pre><code>select r.jobid, min(rn.routingid) as nextroutingid, max(rl.routingid) as lastroutingid, max(rn.routingid) as currentroutingid from routing r left join routing rn on (rn.jobid = r.jobid) and (rn.sentdate is null) left join routing rl on (rl.jobid = r.jobid) group by r.jobid </code></pre> http://stackoverflow.com/questions/1633379/using-a-form-to-change-css-stylesheet/1633436#1633436 0 Answer by Chris Lively for Using a form to change css stylesheet Chris Lively 2009-10-27T20:25:09Z 2009-10-27T20:25:09Z <p>This type of thing is in the domain of a Content Management System. So, you have a couple of choices. </p> <ol> <li><p>Try to integrate your work into an existing CMS like drupal, joomla, DotnetNuke, etc (depending on what language you are coding in); or,</p></li> <li><p>Build your own. </p></li> </ol> <p>You can certainly leverage existing components such as a rich text editor (like the one you used to post the question) in combination with writing the files to a DB or straight to the file system.</p> <p>Either way, you have a fair amount of work ahead of you.</p> http://stackoverflow.com/questions/1633167/how-can-i-determine-why-a-build-runs-slowly-in-visual-studio-2005/1633304#1633304 0 Answer by Chris Lively for How can I determine why a build runs slowly in Visual Studio 2005? Chris Lively 2009-10-27T19:57:41Z 2009-10-27T19:57:41Z <p>Some computers are naturally going to perform builds faster than others.. This is, in part, a function of processor, ram, and HD speeds.</p> <p>Regarding why you see 7 minute build times there could be any number of reasons. Amount of code in project(s). Number of projects in solution. Amount of post / pre build steps. Speed of network in downloading anything from source control it needs. Number of other processes running on your computers. Amount of RAM and other resources available to perform the builds..</p> <p>You get the idea.</p> http://stackoverflow.com/questions/1595282/ie7-ie8-padding-margin-problems/1595317#1595317 0 Answer by Chris Lively for IE7 & IE8 Padding/margin problems Chris Lively 2009-10-20T15:08:16Z 2009-10-20T15:08:16Z <p>I would start by simplifying everything. In other words, start a new html file, then start putting in the framework. Make sure it looks right, then add more. Go slow, at some point you'll find the problem.</p> http://stackoverflow.com/questions/1595257/work-experience-internship-years/1595286#1595286 0 Answer by Chris Lively for Work Experience - Internship Years Chris Lively 2009-10-20T15:02:45Z 2009-10-20T15:02:45Z <p>The purpose of an internship is to gain experience. So, yes, I would include that in any "years of experience" calculation.</p> <p>Regarding the larger issue of salary: salary is a completely negotiable item. At the end of the day it doesn't matter what is "standard". What matters is whether the company feels you are worth the amount of money you are asking for.</p> <p>Go ahead and use the "standard" to get an idea of a range. Then start at the top of the range and see where the negotiation takes you.</p> http://stackoverflow.com/questions/1574359/cant-see-any-c-add-wizard-method-in-visual-studio/1574386#1574386 0 Answer by Chris Lively for Can't see any C# Add Wizard Method in Visual Studio Chris Lively 2009-10-15T19:06:26Z 2009-10-15T19:06:26Z <p>Are you using the same version of .net as what is referenced in that article? The article dates to 2000... Which is 1.0</p> http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1566568#1566568 1 Answer by Chris Lively for Most horrifying line of code you have ever seen? Chris Lively 2009-10-14T14:18:35Z 2009-10-14T14:18:35Z <p>The one that always sets my alarm bells off is</p> <p>using System.Linq;</p> http://stackoverflow.com/questions/1560534/reading-huge-amounts-of-small-files-in-sequence/1560587#1560587 1 Answer by Chris Lively for Reading huge amounts of small files in sequence. Chris Lively 2009-10-13T14:28:15Z 2009-10-13T14:28:15Z <p>Are you sure you will never want to delete files from, say, 1200 to 1400? What happens when you are done transferring? Is the data archived or will it continuously grow?</p> <p>I really don't see why appending all of the data to a single file would improve performance. Instead it's likely to cause more issues for you down the line. So, why would you combine them?</p> <p>Other things to consider are, what happens if the massive file gets some corruption in the middle from bad sectors on the disk? Looks like you lose everything. Keeping them separate should increase their survivability.</p> <p>You can certainly work with large files without loading the entire thing in memory, but that's not exactly easy and you will ultimately have to drop down to some low level coding to do it. Don't constrain yourself. Also, what if the file requires a bit of hand editing? Most programs would force you to load and lock the entire thing.</p> <p>Further, having a single large file would mean that you can't have multiple processes reading / writing the data. This limits scalability.</p> <p>If you know you need files from #1000 to 1100, you can use the built in (c#) code to get a collection of files meeting that criteria.</p> http://stackoverflow.com/questions/1560504/encoding-amount-in-paypal-payment/1560542#1560542 1 Answer by Chris Lively for Encoding amount in paypal payment Chris Lively 2009-10-13T14:19:59Z 2009-10-13T14:19:59Z <p>I'm sorry to say, but you can not prevent people from fiddling with the html / post variables. One common security mantra is "Don't trust the client". </p> <p>The process should be to have the client post back to your server. It recomputes the totals or whatever, then send that to paypal. Obviously there should be some sanity checks like preventing zero or negative quantities; however, the client itself should NOT have control of the totals.</p> http://stackoverflow.com/questions/34204/vs2008-tfs-get-latest-of-solution-from-command-line-or-macro/1560520#1560520 0 Answer by Chris Lively for VS2008/TFS: Get Latest of solution from command line or macro Chris Lively 2009-10-13T14:15:07Z 2009-10-13T14:15:07Z <p>One more possible solution is to use powershell. The following link is to a code project sample which shows how to get a solution from TFS and build it locally. Powershell is a much better solution than regular batch files.</p> <p><a href="http://www.codeproject.com/KB/install/ExtractAndBuild.aspx" rel="nofollow">http://www.codeproject.com/KB/install/ExtractAndBuild.aspx</a></p> http://stackoverflow.com/questions/1012973/can-powershell-autoconvert-error-output-into-exceptions/1013113#1013113 1 Answer by Chris Lively for Can PowerShell autoconvert error output into exceptions? Chris Lively 2009-06-18T14:52:10Z 2009-10-12T15:25:42Z <p>You will need to either write a function to do this or within the script constantly check for the errorlevel.</p> <p>Some information on a function to do this is at:</p> <p><a href="http://www.eggheadcafe.com/conversation.aspx?messageid=31829234&amp;threadid=31829225" rel="nofollow">http://www.eggheadcafe.com/conversation.aspx?messageid=31829234&amp;threadid=31829225</a></p> <p>and other useful information can be found on the <a href="http://blogs.msdn.com/powershell/archive/2006/09/15/ErrorLevel-equivalent.aspx" rel="nofollow">windows powershell blog</a>.</p> http://stackoverflow.com/questions/1527530/asp-net-website-deployment-best-practices-resource-suggestions/1527649#1527649 1 Answer by Chris Lively for ASP.NET website deployment best practices resource suggestions Chris Lively 2009-10-06T19:38:05Z 2009-10-06T19:38:05Z <p>I agree with Rich.</p> <p>Further information:</p> <ol> <li><p>Deploying your SOURCE code ala the .vb files to the server is a BAD idea. Compile it. Obfuscate if you can, just don't deploy straight source. Imagine an attacker which gains access to the system. They could easily change your code and you might not ever notice. Yes, you can use a tool like reflector to decompile. But it's really hard to decompile a full site, make the changes you want, and put them back into production. </p></li> <li><p>Deploying a single file might very well cause some type of problem in a related module. I'm guessing you guys don't really do QA. Tell them it's time to grow up.</p></li> <li><p>Compiling your site will reduce JIT (just in time) compilation. Think performance.</p></li> <li><p>I'm also going to guess that pretty much everyone has production server access. This is bad from the company's perspective as you have no controls in place. What happens when an employee decides to cause some havoc before leaving?</p></li> <li><p>What you are describing is inline with Cowboy coding. Sure, it's fun to ride to the rescue but this style frequently blows everything up. </p></li> </ol> http://stackoverflow.com/questions/1527517/any-orms-that-work-with-ms-access-for-prototyping/1527590#1527590 1 Answer by Chris Lively for Any ORMs that work with MS-Access (for prototyping)? Chris Lively 2009-10-06T19:28:16Z 2009-10-06T19:28:16Z <p>At this stage, if you are unsure whether you need a "real" database or not, I'd skip MS Access and go straight to sql server express. It's free and still allows you to do everything you need to.</p> <p>Plus, if you later decide you need to scale up, then you can without any pain.</p> http://stackoverflow.com/questions/240382/how-do-you-change-the-extension-that-net-pages-will-run-under 1 How do you change the extension that .Net pages will run under? Chris Lively 2008-10-27T15:51:10Z 2009-10-06T19:07:07Z <p>I need my .net application to use the .html extension instead of .aspx </p> <p>I'm converting a php app and there are external applications which depend on that extension to function.</p> <p>What is the best way to do this?</p> <p>Thanks</p> http://stackoverflow.com/questions/1522458/sql-server-express-2008-redundancy/1522512#1522512 0 Answer by Chris Lively for SQL Server Express 2008 redundancy Chris Lively 2009-10-05T21:30:46Z 2009-10-05T21:30:46Z <p>The Express edition of MS products have two purposes. First, they allow new developers a way to get familiar with the microsoft stack without a financial investment.</p> <p>Second, they are geared towards small non-mission critical apps. It's kind of like peeing in your wetsuit. Sure you can do it, but would you really want to?</p> http://stackoverflow.com/questions/1744471/methods-for-automatic-user-uploads/1744519#1744519 Comment by Chris Lively on Methods for Automatic User Uploads Chris Lively 2009-11-20T14:26:06Z 2009-11-20T14:26:06Z In this case, I might consider using a web service based on REST or something similiar. Pass the credentials at the same time as the file data. I still think sftp is best because it's easy and even boneheads can work it manually if necessary. http://stackoverflow.com/questions/1739039/i-need-finishing-my-ocaml-assignment/1739182#1739182 Comment by Chris Lively on I need finishing my ocaml assignment. Chris Lively 2009-11-16T20:16:09Z 2009-11-16T20:16:09Z It's as good as any other. http://stackoverflow.com/questions/1743459/css-styles-on-label-in-firefox Comment by Chris Lively on CSS styles on <label> in Firefox Chris Lively 2009-11-16T20:13:55Z 2009-11-16T20:13:55Z Just tried your exact code in a plain jane html file. FF 3.5.5 rendered exactly as IE 8 did. http://stackoverflow.com/questions/1744471/methods-for-automatic-user-uploads/1744519#1744519 Comment by Chris Lively on Methods for Automatic User Uploads Chris Lively 2009-11-16T20:11:25Z 2009-11-16T20:11:25Z Incidentally, what do you consider as &quot;large&quot;? Maybe I'm thinking bigger than you are. http://stackoverflow.com/questions/1744471/methods-for-automatic-user-uploads/1744519#1744519 Comment by Chris Lively on Methods for Automatic User Uploads Chris Lively 2009-11-16T20:10:23Z 2009-11-16T20:10:23Z So, technically speaking, they already have user accounts... Why not just have your application manage those accounts? The reason I persist is that sftp is geared towards sending large data streams, restarting failed requests, etc. HTTP isn't. Sure, you can do it with HTTP, but that's not ideal. http://stackoverflow.com/questions/1744469/architecture-using-different-classes-on-development-production/1744487#1744487 Comment by Chris Lively on Architecture: using different classes on development / production Chris Lively 2009-11-16T20:01:04Z 2009-11-16T20:01:04Z I think he's looking at the flipside of what you describe, code that runs in dev/stage but not production. Regardless +1 because it's still a bad idea. http://stackoverflow.com/questions/1744188/how-can-i-prevent-that-users-browse-my-site-with-a-specific-browser Comment by Chris Lively on How can i prevent that users browse my site with a specific browser? Chris Lively 2009-11-16T19:59:52Z 2009-11-16T19:59:52Z Here's a thought. If you don't want users to have the ability to download an MP3, then don't put the MP3 on the server.. http://stackoverflow.com/questions/1743355/how-can-i-make-different-html-links-different-colors/1743379#1743379 Comment by Chris Lively on how can i make different html links different colors . . Chris Lively 2009-11-16T19:39:27Z 2009-11-16T19:39:27Z @Welbog: You're right, I was in a hurry. Updated. http://stackoverflow.com/questions/1743131/must-know-iis-features-for-net-architect-lead Comment by Chris Lively on "Must Know" IIS features for .NET Architect/Lead Chris Lively 2009-11-16T16:41:31Z 2009-11-16T16:41:31Z @Kev: It shouldn't matter. http://stackoverflow.com/questions/1743009/how-can-i-ensure-that-changes-to-a-form-dom-are-complete-before-posting/1743043#1743043 Comment by Chris Lively on How can I ensure that changes to a form DOM are complete before POSTing? Chris Lively 2009-11-16T16:30:44Z 2009-11-16T16:30:44Z I agree with this. In your server side code, the absence of the checkbox means that there is no value. This is enough to tell you it's a zero. If you are depending on the presence of textboxes to know what to do then you have an entirely different security problem. http://stackoverflow.com/questions/1743131/must-know-iis-features-for-net-architect-lead/1743166#1743166 Comment by Chris Lively on "Must Know" IIS features for .NET Architect/Lead Chris Lively 2009-11-16T16:16:44Z 2009-11-16T16:16:44Z @ck: Absolutely. That can be a mine field if they don't know what they are doing. http://stackoverflow.com/questions/1743059/mail-doesnt-get-send-untill-i-terminate-my-application-system-mail-net/1743097#1743097 Comment by Chris Lively on Mail doesn't get send untill I terminate my application - System.Mail.Net Chris Lively 2009-11-16T16:00:51Z 2009-11-16T16:00:51Z I would be very careful with this. See <a href="http://stackoverflow.com/questions/930236/net-best-method-to-send-email-system-net-mail-has-issues" rel="nofollow" title="net best method to send email system net mail has issues">stackoverflow.com/questions/930236/&hellip;</a> for more info http://stackoverflow.com/questions/1731717/ms-access-db-over-network-share/1736106#1736106 Comment by Chris Lively on MS Access db over network share Chris Lively 2009-11-16T15:55:55Z 2009-11-16T15:55:55Z I wholeheartedly agree about the jet being a completely inappropriate datastore for web sites. The client knows this and is trying to correct, but I'm not holding my breath. I'll have them check into the folder permissions. As a side note, I did find out that the Access db is located on a Windows XP machine. It just gets better and better... ;) http://stackoverflow.com/questions/1731717/ms-access-db-over-network-share Comment by Chris Lively on MS Access db over network share Chris Lively 2009-11-16T15:53:39Z 2009-11-16T15:53:39Z @Remou: not sure. Looking into it now. http://stackoverflow.com/questions/1016709/how-should-web-sites-deal-with-localization-settings-from-what-are-common-ui-m/1060079#1060079 Comment by Chris Lively on How should web sites deal with localization settings? (from “What are common UI misconceptions and annoyances?”) Chris Lively 2009-11-13T14:38:12Z 2009-11-13T14:38:12Z @twic: I agree, which is why I put in #2. I don't have any feeling for the numbers of people that have incorrect settings. However, if we treat it as the default and give the end user the option to override then we solve all of the issues.