User Chuck - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:52:48Z http://stackoverflow.com/feeds/user/1921 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1926223/z-index-transaparent-image/1926287#1926287 2 Answer by Chuck for Z-Index Transaparent Image Chuck 2009-12-18T04:33:11Z 2009-12-18T04:33:11Z <p>Have you looked at an Image Map?</p> <p><a href="http://www.w3schools.com/TAGS/tag%5Fmap.asp" rel="nofollow">http://www.w3schools.com/TAGS/tag%5Fmap.asp</a></p> <pre><code>&lt;img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" /&gt; &lt;map name="planetmap"&gt; &lt;area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" /&gt; &lt;area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" /&gt; &lt;area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" /&gt; &lt;/map&gt; </code></pre> http://stackoverflow.com/questions/1926206/human-readable-guid/1926267#1926267 1 Answer by Chuck for Human Readable GUID Chuck 2009-12-18T04:25:39Z 2009-12-18T04:25:39Z <p>I'm assuming you're getting an email address when they purchase the voucher (you should). If so, why not just email them a single-use GUID? That way both you and they have a record of it, you can track redemptions, you don't run the risk of guessing (or at least not one worth bothering with), the user doesn't have to remember anything because it's there in the email, and you don't have to code anything. </p> <p>They give you email address. You email GUID (with link). They click link and get song. GUID use is registered in system and will no longer work.</p> http://stackoverflow.com/questions/1915124/should-code-coverage-be-used-as-a-milestone-that-can-block-a-projects-progress/1915208#1915208 0 Answer by Chuck for Should code coverage be used as a "Milestone" that can block a project's progression? Chuck 2009-12-16T15:04:42Z 2009-12-16T15:04:42Z <p>If you're dealing with "legacy code" using coverage as a blocker will cause you pain. Require any new code written/refactored to be under coverage and your % of legacy code under test should naturally increase over time and you will be less likely to get the artificial feeling of safety that will come if you use coverage as a blocker. </p> http://stackoverflow.com/questions/1889615/version-numbering-basics/1889655#1889655 1 Answer by Chuck for Version numbering basics? Chuck 2009-12-11T17:37:58Z 2009-12-11T17:37:58Z <p>I've used </p> <p>Major.Minor.Release.Build 1.02.4.15</p> <p>and also</p> <p>Year.Month.Date</p> <p>2009.12.10</p> <p>but anything that allows you to individually track releases would work. As long as you're consistent.</p> http://stackoverflow.com/questions/1888456/can-i-detect-the-source-of-a-focus-javascript-jquery/1888608#1888608 0 Answer by Chuck for Can I detect the source of a focus? (Javascript, jQuery) Chuck 2009-12-11T14:56:48Z 2009-12-11T14:56:48Z <p>Try getting the keyCode - here's a link to an article that goes into detail on how. The comments at the bottom may be useful as well.</p> <p><a href="http://www.geekpedia.com/tutorial138%5FGet-key-press-event-using-JavaScript.html" rel="nofollow">http://www.geekpedia.com/tutorial138%5FGet-key-press-event-using-JavaScript.html</a></p> <p>Here's the code from the article. It doesn't show it, but the keyCode for tab is 9.</p> <pre><code>&lt;script type="text/javascript"&gt; document.onkeyup = KeyCheck; function KeyCheck(e) { var KeyID = (window.event) ? event.keyCode : e.keyCode; switch(KeyID) { case 16: document.Form1.KeyName.value = "Shift"; break; case 17: document.Form1.KeyName.value = "Ctrl"; break; case 18: document.Form1.KeyName.value = "Alt"; break; case 19: document.Form1.KeyName.value = "Pause"; break; case 37: document.Form1.KeyName.value = "Arrow Left"; break; case 38: document.Form1.KeyName.value = "Arrow Up"; break; case 39: document.Form1.KeyName.value = "Arrow Right"; break; case 40: document.Form1.KeyName.value = "Arrow Down"; break; } } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/50238/what-are-some-good-resources-for-learning-asp-net-aside-from-stack-overflow-of/50250#50250 2 Answer by Chuck for What are some good resources for learning ASP.NET? (Aside from Stack Overflow, of course) Chuck 2008-09-08T17:36:15Z 2009-12-07T19:25:03Z <p>"Best" is subjective but here a few good ones:</p> <ul> <li><p><a href="http://rads.stackoverflow.com/amzn/click/0672330113" rel="nofollow">ASP.NET 3.5 Unleashed.</a> </p></li> <li><p><a href="http://rads.stackoverflow.com/amzn/click/1590598938" rel="nofollow">Pro ASP.NET 3.5</a></p></li> <li><p><a href="http://rads.stackoverflow.com/amzn/click/0470187573" rel="nofollow">Professional ASP.NET 3.5</a></p></li> </ul> http://stackoverflow.com/questions/1852268/when-you-decide-to-stop-writing-code-what-will-be-your-next-move/1857699#1857699 1 Answer by Chuck for When you decide to stop writing code, what will be your next move? Chuck 2009-12-07T03:49:39Z 2009-12-07T03:49:39Z <p>I usually watch some T.V., then go to sleep. When I wake up the next morning, I start writing code again. Unless it's the weekend or a holiday. Then, I spend time with my family.</p> http://stackoverflow.com/questions/356603/how-can-i-fix-my-directory-structure-in-visual-sourcesafe/1850851#1850851 0 Answer by Chuck for How can I fix my directory structure in Visual Sourcesafe? Chuck 2009-12-05T02:05:34Z 2009-12-05T02:05:34Z <p>You're going to need to get an old priest and a young priest... or a better version control system. </p> http://stackoverflow.com/questions/1836303/check-multiple-boxes-without-scripting/1836337#1836337 0 Answer by Chuck for Check multiple boxes without scripting? Chuck 2009-12-02T22:32:31Z 2009-12-02T22:32:31Z <p>I am not aware of any way to trigger an event, such as the onclick or onchange, without client side script. </p> http://stackoverflow.com/questions/1836011/what-to-learn-before-using-a-javascript-library-framework/1836055#1836055 0 Answer by Chuck for What to learn before using a JavaScript library / framework? Chuck 2009-12-02T21:48:59Z 2009-12-02T21:48:59Z <p>They should read this <a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">http://www.amazon.com/exec/obidos/ASIN/0596517742/wrrrldwideweb</a> And check out some of the links here <a href="http://www.crockford.com/" rel="nofollow">http://www.crockford.com/</a></p> http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1810273#1810273 0 Answer by Chuck for two decisons just one button Chuck 2009-11-27T19:08:33Z 2009-11-27T19:29:32Z <p>EDIT: Updated the code to open the search window.</p> <p>The following may help you. It's not performing a search, but you should be able to get the general idea. ASPX:</p> <pre><code> &lt;form id="form1" runat="server"&gt; &lt;asp:ScriptManager ID="ScriptManager" runat="server"&gt;&lt;/asp:ScriptManager&gt; &lt;div&gt; &lt;asp:TextBox ID="SearchFor" runat="server"&gt;&lt;/asp:TextBox&gt;&lt;br /&gt; &lt;asp:RadioButton ID="RadioGoogle" runat="server" GroupName="SearchSelect" Text="Google" /&gt; &lt;asp:RadioButton ID="RadioCustom" runat="server" GroupName="SearchSelect" Text="Custom" /&gt;&lt;br /&gt; &lt;asp:Button ID="Search" runat="server" onclick="Search_Click" Text="Search" /&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>Codebehind:</p> <pre><code>protected void Search_Click(object sender, EventArgs e) { if (RadioGoogle.Checked) GoogleSearch(SearchFor.Text); if (RadioCustom.Checked) Response.Write("Search Custom for " + SearchFor.Text); } private void GoogleSearch(string searchFor) { string targetURL = "http://www.google.com/search?q=" + Regex.Replace(searchFor, " ", "+"); string clientScript = "window.open('" + targetURL + "');"; ClientScript.RegisterStartupScript(GetType(), "popup", clientScript, true); } </code></pre> <p>Swap the Response.Write's for a call to a method that does your search.</p> http://stackoverflow.com/questions/1806734/best-way-to-indicate-draggability-in-a-web-app-or-in-general/1806765#1806765 1 Answer by Chuck for Best way to indicate "draggability" in a web app (or in general)? Chuck 2009-11-27T04:40:32Z 2009-11-27T04:40:32Z <p>I'm not fond of any of the 3, but don't have an immediate better solution. Of the 3, the second is best but there should also be something visually distinguishable about the elements (a title bar,color, or "handle") that indicates they can be moved.</p> http://stackoverflow.com/questions/1804023/what-is-the-most-convenient-way-of-handling-nested-config-data-in-net/1804089#1804089 0 Answer by Chuck for What is the most convenient way of handling nested config data in .Net? Chuck 2009-11-26T14:46:38Z 2009-11-26T14:46:38Z <p>For web apps in the past I've used a key in the machine.config to identify the environment (i.e. QA, UAT, Prod, etc.) and then in the web.config used keys like this:</p> <p>machine.config</p> <pre><code> &lt;add key="server_environment" value="qa"/&gt; </code></pre> <p>web.config</p> <pre><code>&lt;configuration&gt; &lt;appSettings&gt; &lt;add key="qa_foo" value="foo value"/&gt; &lt;add key="uat_foo" value="foo value"/&gt; &lt;add key="prod_foo" value="foo value"/&gt; &lt;/appSettings&gt; &lt;/configuration&gt; </code></pre> <p>I get the server_environment value and pair it with the key I'm looking for - changing the environment is as simple as changing the value in the machine.config. As has been mentioned already, section groups are something you'll probably want to investigate as well.</p> http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods/1743659#1743659 1 Answer by Chuck for Should I document my private methods? Chuck 2009-11-16T17:33:16Z 2009-11-18T13:50:32Z <p>If your method names don't make their purpose immediately obvious then they aren't well-named. Relying on documentation over well-named classes &amp; methods will invariably come back to bite you. All it takes is a few instances of people forgetting to update the documentation and you end up with a horrible mess. example:</p> <p><strong>BAD</strong></p> <pre><code>private void Update(string sValue, DateTime dValue) {...} </code></pre> <p><strong>BETTER</strong></p> <pre><code>private void UpdateEmployeeInformation(string jobTitle, DateTime hireDate) {...} </code></pre> <p>What about the second version needs documenting? The name identifies what its purpose is and the param names make it obvious what is expected to be passed.</p> <p>If your methods are so long and complex that they require a novel to explain you need to break them up into logical bits of functionality that can be well-named and highly focused. That, IMHO, is much easier to understand than some poorly written inline documentation that may or may not be up to date - I'm STILL going to read through all of the code to make sure it matches what the documentation says it should do and in most cases I'm going to assume that the documentation hasn't been maintained and ignore it.</p> <p>You should also have unit tests that flex the code and make the functionality even MORE obvious. With well-named classes, methods, and unit tests what purpose does additional documentation serve?</p> http://stackoverflow.com/questions/1746386/teamcity-alternatives/1746432#1746432 1 Answer by Chuck for TeamCity Alternatives Chuck 2009-11-17T03:39:12Z 2009-11-17T03:39:12Z <p><a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> is quite nice. For .net, check <a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome+to+CruiseControl.NET" rel="nofollow">CruiseControl.net</a>. For Ruby, <a href="http://cruisecontrolrb.thoughtworks.com/" rel="nofollow">CruiseControl.rb</a></p> http://stackoverflow.com/questions/33746/xml-attribute-vs-xml-element/33757#33757 25 Answer by Chuck for XML attribute vs XML element Chuck 2008-08-29T01:28:13Z 2009-11-10T16:34:25Z <p>I use this rule of thumb:</p> <ol> <li>An Attribute is something that is self-contained, i.e., a color, an ID, a name.</li> <li>An Element is something that does or could have attributes of its own or contain other elements.</li> </ol> <p>So yours is close. I would have done something like:</p> <p><strong>EDIT</strong>: Updated the original example based on feedback below.</p> <pre><code> &lt;ITEM serialNumber="something"&gt; &lt;barcode encoding="Code39"&gt;something&lt;/barcode&gt; &lt;Location&gt;XYX&lt;/LOCATION&gt; &lt;TYPE modelNumber="something"&gt; &lt;VENDOR&gt;YYZ&lt;/VENDOR&gt; &lt;/TYPE&gt; &lt;/ITEM&gt; </code></pre> http://stackoverflow.com/questions/1688465/resharper-warning-access-to-modified-closure/1688519#1688519 2 Answer by Chuck for ReSharper Warning - Access to Modified Closure Chuck 2009-11-06T15:59:53Z 2009-11-06T15:59:53Z <p>Check this SO Question &amp; accepted answer, might be helpful.</p> <p><a href="http://stackoverflow.com/questions/235455/access-to-modified-closure">http://stackoverflow.com/questions/235455/access-to-modified-closure</a></p> http://stackoverflow.com/questions/1685190/can-webforms-and-mvc-live-in-a-single-project/1685220#1685220 1 Answer by Chuck for Can WebForms and MVC live in a single project? Chuck 2009-11-06T03:24:28Z 2009-11-06T03:24:28Z <p>I haven't done it - but it appears to be possible according to this Chad Myer's blog post. It's a bit old. <a href="http://www.chadmyers.com/Blog/archive/2007/11/30/asp.net-webforms-and-mvc-in-the-same-project.aspx" rel="nofollow">http://www.chadmyers.com/Blog/archive/2007/11/30/asp.net-webforms-and-mvc-in-the-same-project.aspx</a></p> http://stackoverflow.com/questions/1667307/preventing-users-from-using-back-button-with-javascript/1667357#1667357 1 Answer by Chuck for Preventing users from using Back button with Javascript Chuck 2009-11-03T13:32:32Z 2009-11-03T13:32:32Z <p>As has been stated, you should really look to handle the back button gracefully. If you absolutely cannot, you can place this bit of javascript to catch it in SOME cases:</p> <pre><code>window.history.forward(); </code></pre> <p>This will make sure that, within your pages, the user is forced to stay on the most current page in their history stack. </p> <p>Again - this is BAD UX and you should really look to handle this gracefully some other way.</p> http://stackoverflow.com/questions/1624566/how-do-i-make-curved-text-boxes-in-html-with-css/1624607#1624607 0 Answer by Chuck for How do I make curved text boxes in html with css Chuck 2009-10-26T12:50:50Z 2009-10-26T12:50:50Z <p>See the solutions on this page. </p> <p><a href="http://www.cssportal.com/form-elements/text-box.htm" rel="nofollow">http://www.cssportal.com/form-elements/text-box.htm</a></p> http://stackoverflow.com/questions/1624404/delete-insert-vs-update-insert/1624436#1624436 0 Answer by Chuck for DELETE, INSERT vs UPDATE || INSERT Chuck 2009-10-26T12:07:35Z 2009-10-26T12:07:35Z <p>Why would you delete the old table and reinsert old values? Insert &amp; Update. Some more specifics of what you're trying to accomplish might help provide a better answer.</p> http://stackoverflow.com/questions/1614752/raindrop-setup-question 0 Raindrop setup question [closed] Chuck 2009-10-23T17:07:05Z 2009-10-23T17:13:14Z <p>Okay, this is likely to be an incredibly stupid question but I've tried everything.</p> <p>I've installed Raindrop on Win7 and it's running - the problem is I cannot get it to load my .raindrop configuration file to get my account information. I think I'm placing the .raindrop file in the wrong place, but the documentation isn't spelling it out quite clearly enough for my old brain. Here's what it says:</p> <blockquote> <p>...you want to use in raindrop via a .raindrop file: </p> <p>configure raindrop by editing ~/.raindrop</p> </blockquote> <p>I've set up my .raindrop file (there wasn't one anywhere I could find in the installation dir). In windows, the only way I know to name a file without an extension is to ALT+255 the file name - could that be causing the problem?</p> <p>Anyone know what dir the ~ above is referring to? </p> <p>Feel free to smack me around if I'm being stupid and missing something simple. I'd love to play with this code but need a little help getting it running. Thanks in advance!</p> http://stackoverflow.com/questions/1604552/how-do-i-get-the-number-of-the-item-selected-in-a-listbox-c/1604578#1604578 0 Answer by Chuck for How do I get the number of the item selected in a listbox (C#) Chuck 2009-10-22T01:33:41Z 2009-10-22T01:33:41Z <p>You want the selected index?</p> <pre><code>listBox1.SelectedIndex </code></pre> <p>or the selected item?</p> <pre><code>listBox1.SelectedItem </code></pre> http://stackoverflow.com/questions/1604540/how-do-i-move-from-being-a-software-developer-to-being-a-software-architect/1604562#1604562 -1 Answer by Chuck for How do I move from being a software developer to being a software architect? Chuck 2009-10-22T01:28:36Z 2009-10-22T01:28:36Z <p>Why do you want to be an "architect"? Your other post asked about being a PM at Microsoft? Which do you want to be? Or are you just trying to spam the site tonight?</p> http://stackoverflow.com/questions/1589983/should-i-do-mcts-exam-in-sql-server-or-net-programming/1590044#1590044 2 Answer by Chuck for Should i do MCTS exam in SQL Server or .NET Programming Chuck 2009-10-19T17:34:48Z 2009-10-19T17:34:48Z <p>If you want to be a programmer, your time would be better spent learning the basics of programming - not focusing on a specific technology for getting a cert. Certifications have limited value; they're good at demonstrating TEST aptitude and your ability to memorize trivia and they do help get past recruiters who use them as a baseline for candidate acceptability (right or wrong, they do it). They tell little to nothing about your programming skill.</p> <p>"Proving you can program" requires considerably more than a certification. Pick a language and write an app for yourself; something you'd find useful. Get good with the basics of your language (C#, Java, Ruby, whatever). Do code kata's (<a href="http://codekata.pragprog.com/" rel="nofollow">http://codekata.pragprog.com/</a>, <a href="http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata" rel="nofollow">http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata</a>), participate in local user groups, read blogs. </p> <p>Write. Code.</p> http://stackoverflow.com/questions/1582948/asp-net-application-time-and-cost-estimate/1582999#1582999 0 Answer by Chuck for ASP.NET Application - Time and Cost estimate Chuck 2009-10-17T19:19:41Z 2009-10-17T19:19:41Z <p>Time estimates are not something that a single formula can provide you. Time will depend on your experience, the project, and a number of "intangibles". Breaking down a large project into pieces, estimating each piece, totaling them and then adding a percentage for error will get you close. Cost is then a simple matter of (time * hourly rate) + cost of any 3rd party provided resources.</p> <p>Don't take this the wrong way (I'm not trying to be mean), but if you're at a point in your career where you can't estimate how long something will take I would question whether you should be doing it at all. You should at least have an idea of how long it takes you to do a simple page/class/widget and apply that experience to your current task(s). </p> http://stackoverflow.com/questions/1568487/ie7-versus-ff-floating-issue/1568622#1568622 0 Answer by Chuck for IE7 versus FF floating issue Chuck 2009-10-14T20:00:33Z 2009-10-14T20:36:28Z <p>I tweaked your original example a little and the code below looks the same in IE, FF, Chrome, and Opera.</p> <pre><code> &lt;html&gt; &lt;head&gt; &lt;style&gt; #wrapper{ width: 923px; vertical-align: top; } .boxRight{ background-color:#FFFFFF; border:3px solid #DDDDCA; float:right; margin:3px 0; width:560px; } #boxleft{ color:#277491; width:357px; float: left; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="wrapper"&gt; &lt;div id="boxleft"&gt;leftdiv&lt;/div&gt; &lt;div id="boxr1" class="boxRight"&gt;test&lt;br/&gt;test&lt;br/&gt;&lt;/div&gt; &lt;div id="boxr2" class="boxRight"&gt;test2&lt;br/&gt;test2&lt;br/&gt;&lt;/div&gt; &lt;/div&gt; &lt;div style="clear:both;"&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><strong>EDIT:</strong> I updated my code after your edit to your original post. The above works in FF, Chrome, IE, Opera. </p> http://stackoverflow.com/questions/1568203/how-do-i-keep-the-master-page-from-flickering/1568410#1568410 0 Answer by Chuck for How do I keep the master page from flickering? Chuck 2009-10-14T19:18:45Z 2009-10-14T19:18:45Z <p>You don't need to move the updatepanel, your redirect is causing the browser to load a new page. </p> http://stackoverflow.com/questions/1565933/can-i-use-visual-studio-2008-for-a-regular-asp-project/1565955#1565955 2 Answer by Chuck for can i use visual studio 2008 for a regular asp project Chuck 2009-10-14T12:30:16Z 2009-10-14T15:08:48Z <p>Yes. We are currently using it that way to support a legacy .asp application. We have a project in one of the solutions for the .asp pages.</p> <p>edit:</p> <p>In response to your edit I wouldn't see a need to change anything when migrating to MVC. You'll be adding new project(s) to your solution containing the .asp code. If anything, having it all in one place might make your life a little easier during the transition. Our ASP.net site(s) are in the same solution as the .asp project.</p> <p>edit (part deux): Using Notepad++ should present no issues. The edits would be to the .asp files (and .css, etc), not to the VS .proj file. I often use UE to edit the .asp files if I don't need to open the IDE. Assuming you're using a source repository of some sort...</p> http://stackoverflow.com/questions/1562113/how-do-i-maintain-state-across-multiple-web-servers/1562143#1562143 2 Answer by Chuck for How do I maintain state across multiple web servers? Chuck 2009-10-13T18:39:04Z 2009-10-13T18:39:04Z <p>Some options:</p> <p>The load balancer can be configured to have sticky sessions. Make sure your app session timeout is less than the load balancers or you'll get bounced around with unpredictable results.</p> <p>You can use a designated state server to handle session. Then it won't matter where they get bounced by the LB.</p> <p>You can use SQL server to manage session.</p> <p>Check this on serverfault. <a href="http://serverfault.com/questions/19717/load-balanced-iis-servers-with-asp-net-inproc-session">http://serverfault.com/questions/19717/load-balanced-iis-servers-with-asp-net-inproc-session</a></p> http://stackoverflow.com/questions/1929012/net-button-fired-only-once Comment by Chuck on .net Button fired only once Chuck 2009-12-18T16:06:26Z 2009-12-18T16:06:26Z can you post some code so we can see what you're doing? http://stackoverflow.com/questions/1926206/human-readable-guid/1926267#1926267 Comment by Chuck on Human Readable GUID Chuck 2009-12-18T13:20:30Z 2009-12-18T13:20:30Z Good point! If I like the band that wouldn't deter me but I may be the exception rather than the rule. http://stackoverflow.com/questions/1908147/how-would-you-manipulate-an-html-list-on-the-server-side/1908213#1908213 Comment by Chuck on How would you manipulate an html list on the server side? Chuck 2009-12-15T15:35:22Z 2009-12-15T15:35:22Z Care to give a comment on why this got down-voted? http://stackoverflow.com/questions/1837488/dealing-with-dependencies-in-a-large-project-is-it-possible-to-reliably-alter/1837523#1837523 Comment by Chuck on Dealing with dependencies in a large project... Is it possible to reliably alter build order without using project dependencies in C#/VS2008? Chuck 2009-12-03T04:03:17Z 2009-12-03T04:03:17Z Here's a link to the MSBuild reference. <a href="http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1810273#1810273 Comment by Chuck on two decisons just one button Chuck 2009-12-02T13:19:30Z 2009-12-02T13:19:30Z I just retested the code above in Chrome, IE, and FF and in all three the google pop-up opened with the search results (after I allowed pop-ups). There is no other code in the test file I created besides what I have pasted above. Have you tried a brand new, blank aspx page? http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1810273#1810273 Comment by Chuck on two decisons just one button Chuck 2009-11-30T23:40:00Z 2009-11-30T23:40:00Z Page. is the same thing. I have a using statement that negates the need to prefix the call with Page. As to not opening the new window - are you using a pop-up blocker? It worked fine when I ran the test in Chrome. http://stackoverflow.com/questions/1738558/asp-net-dropdownlist-error Comment by Chuck on asp.net dropdownlist error Chuck 2009-11-15T19:54:47Z 2009-11-15T19:54:47Z Can you post some more of the code? The line you have referenced above cannot be causing that error. http://stackoverflow.com/questions/1647278/need-to-create-a-summary-of-a-large-switch-statement-in-c Comment by Chuck on need to create a summary of a large switch statement in C# Chuck 2009-10-30T00:49:25Z 2009-10-30T00:49:25Z so, is the purpose of your program to respond in a conversational manner? i.e. the user enters &quot;hello&quot; and it replies &quot;goodbye&quot;? Your detail didn't add enough clarity (at least for me). http://stackoverflow.com/questions/1614926/why-does-this-date-parse-not-work-in-c-net-1-1 Comment by Chuck on Why does this date parse not work in C# .net 1.1? Chuck 2009-10-23T17:55:29Z 2009-10-23T17:55:29Z I get a BadFormat exception in 3.5 as well. http://stackoverflow.com/questions/1614752/raindrop-setup-question Comment by Chuck on Raindrop setup question Chuck 2009-10-23T17:43:45Z 2009-10-23T17:43:45Z voting to close- i was thinking it would be programming related since I plan to play with the source but the question itself isn't. http://stackoverflow.com/questions/1604540/how-do-i-move-from-being-a-software-developer-to-being-a-software-architect/1604562#1604562 Comment by Chuck on How do I move from being a software developer to being a software architect? Chuck 2009-10-22T01:36:15Z 2009-10-22T01:36:15Z I don't know what their PM's do. For that matter, I don't know what architects really do either so I guess it's a toss up :) Sorry about the spam comment, posts seemed fishy at first. http://stackoverflow.com/questions/1568487/ie7-versus-ff-floating-issue/1568622#1568622 Comment by Chuck on IE7 versus FF floating issue Chuck 2009-10-14T20:38:15Z 2009-10-14T20:38:15Z Updated code. I also moved the wrapper style from the element and created one class for the box on the right since they both were the same. No need for 2 classes to maintain. I also moved the left box to be first in the list. http://stackoverflow.com/questions/1562113/how-do-i-maintain-state-across-multiple-web-servers/1562143#1562143 Comment by Chuck on How do I maintain state across multiple web servers? Chuck 2009-10-13T19:13:49Z 2009-10-13T19:13:49Z I actually haven't used SQL server to manage so I can't speak to scalability. I wouldn't have just one LB - I'd have a min of 2 and possibly as many as 5 (2x prod, 2x test, 1x dev) http://stackoverflow.com/questions/1561413/asprepeater-within-aspcontent Comment by Chuck on asp:Repeater within asp:Content Chuck 2009-10-13T16:55:58Z 2009-10-13T16:55:58Z Definitely need more of the page to find the error. http://stackoverflow.com/questions/1499188/c-datagridview-color-text-of-single-row/1499349#1499349 Comment by Chuck on C# DataGridView Color text of single row Chuck 2009-09-30T18:34:51Z 2009-09-30T18:34:51Z That's a good idea :-)