User Wayne - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:39:49Z http://stackoverflow.com/feeds/user/8236 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/123092/underused-features-of-html 19 Underused Features of HTML Wayne 2008-09-23T19:06:02Z 2009-02-22T14:00:57Z <p>Yes, many web developers live and breathe HTML, but there are still tags and tricks that aren't used as often as they could be. What are some of your favorites?</p> http://stackoverflow.com/questions/205190/select-from-same-table-as-an-insert-or-update/205262#205262 0 Answer by Wayne for Select from same table as an Insert or Update Wayne 2008-10-15T15:48:58Z 2008-10-15T15:48:58Z <p>I think your statement should look like this...</p> <pre><code>INSERT INTO `aTable` (`A`,`B`) SELECT MAX(`A`)^2,'name' FROM `aTable` </code></pre> http://stackoverflow.com/questions/201724/easy-way-to-turn-javascript-array-into-comma-separated-list/201733#201733 11 Answer by Wayne for Easy way to turn Javascript array into comma-separated list? Wayne 2008-10-14T15:48:48Z 2008-10-14T15:48:48Z <p>The <a href="http://www.w3schools.com/jsref/jsref_join.asp" rel="nofollow">join</a> function:</p> <pre><code>var arr = new Array(3); arr[0] = "Zero"; arr[1] = "One"; arr[2] = "Two"; document.write(arr.join(",")); </code></pre> http://stackoverflow.com/questions/201530/how-should-i-add-multiple-identical-elements-to-a-div-with-jquery/201564#201564 2 Answer by Wayne for How should I add multiple identical elements to a div with jQuery Wayne 2008-10-14T15:07:03Z 2008-10-14T15:07:03Z <p>You can use a regular loop with the Jquery <a href="http://docs.jquery.com/Manipulation/append#content" rel="nofollow">append</a> function.</p> <pre><code>for(i=0;i&lt;10; i++){ $('#container').append("&lt;div&gt;&lt;/div&gt;"); } </code></pre> http://stackoverflow.com/questions/199142/passing-a-outside-variable-into-a-aspsqldatasource-tag-asp-net-2-0/199148#199148 3 Answer by Wayne for Passing a outside variable into a <asp:sqldatasource> tag. ASP.NET 2.0 Wayne 2008-10-13T21:51:20Z 2008-10-13T21:57:06Z <p>I believe Oracle uses the colon ":", not the at-symbol "@". <hr> "user" is probably a reserved word. Change it to "userID", or something similar.</p> http://stackoverflow.com/questions/198670/jquery-select-box-and-loop-help/198950#198950 3 Answer by Wayne for JQuery Select Box and Loop Help Wayne 2008-10-13T20:38:58Z 2008-10-13T20:38:58Z <p>I was able to replicate your results for all selects on a page in IE7 using this code, which I find much simpler than the span method you are using, but you can replace the "resize" function with whatever code suits your needs.</p> <pre><code>function resize(selectId, size){ var objSelect = document.getElementById(selectId); var maxlength = 0; if(objSelect){ if(size){ objSelect.style.width = size; } else { for (var i=0; i&lt; objSelect.options.length; i++){ if (objSelect[i].text.length &gt; maxlength){ maxlength = objSelect[i].text.length; } } objSelect.style.width = maxlength * 9; } } } $(document).ready(function(){ $("select").focus(function(){ resize($(this).attr("id")); }); $("select").blur(function(){ resize($(this).attr("id"), 40); }); }); </code></pre> http://stackoverflow.com/questions/193540/has-anyone-used-created-fisheye-table-columns/193857#193857 2 Answer by Wayne for Has anyone used/created "fisheye" table columns? Wayne 2008-10-11T08:38:43Z 2008-10-11T22:28:16Z <p>While not a table-based solution, this is a quick proof-of-concept I whipped up using JQuery just to see if I could do a column based accordion effect. Maybe it can give you some inspiration...</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $("#table &gt; div:even").addClass("row"); $("#table &gt; div:odd").addClass("altrow"); $("#table &gt; div &gt; div").addClass("normal"); $("div[class*='col']").hover( function () { var myclass = $(this).attr("class"); $("div[class*='col']").css("width","20px"); $("div[class*='"+myclass+"']").css("width","80px").css("overflow","auto"); }, function () { $("div[class*='col']").css("width","40px").css("overflow","hidden"); } ) }); &lt;/script&gt; &lt;style type="text/css"&gt; .row{ background-color: #eee; float:left; } .altrow{ background-color: #fff; float:left; } .normal{ width: 40px; overflow: hidden; float:left; padding :3px; text-align:center; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="table"&gt; &lt;div&gt; &lt;div class="col1"&gt;Column1&lt;/div&gt; &lt;div class="col2"&gt;Column2&lt;/div&gt; &lt;div class="col3"&gt;Column3&lt;/div&gt; &lt;/div&gt; &lt;br style="clear:both" /&gt; &lt;div&gt; &lt;div class="col1"&gt;Column1&lt;/div&gt; &lt;div class="col2"&gt;Column2&lt;/div&gt; &lt;div class="col3"&gt;Column3&lt;/div&gt; &lt;/div&gt; &lt;br style="clear:both" /&gt; &lt;div&gt; &lt;div class="col1"&gt;Column1&lt;/div&gt; &lt;div class="col2"&gt;Column2&lt;/div&gt; &lt;div class="col3"&gt;Column3&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/193773/what-are-the-most-important-parts-of-the-net-framework-for-a-beginner/193793#193793 -1 Answer by Wayne for What are the most important parts of the .Net framework for a beginner? Wayne 2008-10-11T07:10:26Z 2008-10-11T07:10:26Z <p>System.Data, particularly Datatable, </p> http://stackoverflow.com/questions/192028/from-string-to-blob/192057#192057 1 Answer by Wayne for From String to Blob Wayne 2008-10-10T16:06:46Z 2008-10-10T17:05:50Z <p>You need to cast as a char..</p> <pre><code>SELECT item.title, GROUP_CONCAT( CAST(CONCAT_WS(',', attachments.id, attachments.type, attachments.name ) as CHAR ) ) as attachments FROM story AS item LEFT OUTER JOIN story_attachment AS attachments ON item.id = attachments.item_id GROUP BY item.id </code></pre> http://stackoverflow.com/questions/187482/how-can-i-use-the-button-tag-with-asp-net/187944#187944 3 Answer by Wayne for How can I use the button tag with ASP.NET? Wayne 2008-10-09T15:59:18Z 2008-10-09T17:21:20Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.usesubmitbehavior.aspx" rel="nofollow">Button.UseSubmitBehavior</a> property as discussed in <a href="http://www.xerratus.com/2006/11/22/HowToGetASPNET20ButtonWebControlToRenderAsInputTypebutton.aspx" rel="nofollow">this article about rendering an ASP.NET Button control as a button</a>. <hr> EDIT: Sorry.. that's what I get for skimming questions on my lunch break. Are there reasons why you wouldn't just use a &lt;button runat="server"&gt; tag or an <a href="http://msdn.microsoft.com/en-us/library/a8fd2268(VS.80).aspx" rel="nofollow">HtmlButton</a>? </p> http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/188190#188190 3 Answer by Wayne for What is the most useful script you've written for everyday life? Wayne 2008-10-09T16:58:23Z 2008-10-09T16:58:23Z <p>Various Shortcuts to "net start" and "net stop" commands so I can start and stop services without having to go into the Services MMC</p> http://stackoverflow.com/questions/175782/how-useful-is-a-mcad-certification/175804#175804 7 Answer by Wayne for How Useful is a MCAD Certification? Wayne 2008-10-06T19:28:36Z 2008-10-06T19:28:36Z <p>I would say that if you're going to pursue a MS certification that you go after your <a href="http://www.microsoft.com/Learning/MCP/MCPD/default.mspx" rel="nofollow">MCPD</a>. MCAD is for .Net 1.1 and they're already on .Net 3.5.</p> <p>That said, I don't think it really helps you that much. MCPDs are fairly easy to get by using BrainDumps (bascially copies of the tests, so you can memorize the answers) so most people hiring aren't too impressed by them.</p> <p>If you don't take the the short cut and actually study and learn the material to pass, then you will have a much deeper understanding of the Framework which can only help you become a better .Net programmer.</p> <p>I didn't get certified until this job (after ~4 years as .NET developer) and that was only because of the incentives my job offered for getting certified. Having hired consultants before, I paid very little attention to any certifications, only glanced at the formal education and put a lot more stock on portfolios and the technical questioning parts of the interview.</p> http://stackoverflow.com/questions/175247/microsoft-certified-partner-important-to-developers/175275#175275 5 Answer by Wayne for Microsoft Certified Partner? Important to Developers? Wayne 2008-10-06T17:23:01Z 2008-10-06T17:23:01Z <p>Yes. As a partner, you not only get access to the software, but the company gets vouchers for certification testing, making it more likely that your employer would not only support, but encourage you to get certified. I work for a MS Gold Partner and every single developer here is MCPD certified.</p> http://stackoverflow.com/questions/168802/where-can-i-find-a-tutorial-to-get-started-learning-jquery/168808#168808 3 Answer by Wayne for Where can I find a tutorial to get started learning jQuery? Wayne 2008-10-03T20:43:40Z 2008-10-03T20:43:40Z <p>Here's a 4 part (so far) series on <a href="http://dotnetslackers.com/Community/blogs/xun/archive/2008/09/13/jquery-the-very-very-basics-lesson-1.aspx" rel="nofollow">Jquery Basics</a>.</p> http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168526#168526 3 Answer by Wayne for What's your #1 way to be careful with a live database? Wayne 2008-10-03T19:33:43Z 2008-10-03T19:33:43Z <p>If you're using Oracle or another database that supports it, verify your changes before doing a COMMIT.</p> http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168496#168496 13 Answer by Wayne for What's your #1 way to be careful with a live database? Wayne 2008-10-03T19:30:06Z 2008-10-03T19:30:06Z <p>Always make sure your UPDATEs and DELETEs have the proper WHERE clause.</p> http://stackoverflow.com/questions/167808/ajax-postbacks-and-browser-refreshes/167841#167841 3 Answer by Wayne for AJAX, postbacks and browser refreshes Wayne 2008-10-03T16:52:43Z 2008-10-03T19:00:26Z <p>You could try using the <a href="http://www.theserverside.com/patterns/thread.tss?thread_id=20936" rel="nofollow">Post/Redirect/Get</a> pattern. Basically instead of letting the postback send the data, redirect to the page. That way, if a user refreshes, s/he is refreshing the GET command rather than the POST. <hr /> Sorry.. missed the UpdatePanel piece. Make sure that your submit button is also within that UpdatePanel. A page refresh would not affect your AJAX call, but when the button is outside the panel, it's doing a regular postback so you would be sending the Add Request again.</p> http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/167928#167928 5 Answer by Wayne for How do you stop interim solutions from lasting forever? Wayne 2008-10-03T17:16:41Z 2008-10-03T17:24:51Z <ul><li>I make sure that I'm vocal about the priority of the long term fix ESPECIALLY after the short term fix has gone in.</li><li>I detail the reasons why it's a hack and not a good long term solution and use those to get the stakeholders (managers, clients, etc) to understand why it needs to be fixed</li><li> Depending on the case, I may even inject a bit of worst case scenario fear in there. "If this safely line snaps, the whole bridge could collapse!"</li><li>I take responsibility for coming up with a long term solution and make sure that it gets deployed</li></ul> http://stackoverflow.com/questions/167432/what-is-the-best-vbscript-code-to-add-decimal-places-to-all-numbers-in-a-string/167651#167651 0 Answer by Wayne for What is the best vbscript code to add decimal places to all numbers in a string? Wayne 2008-10-03T16:12:57Z 2008-10-03T16:12:57Z <pre><code>function convert(str) Set RegEx = New RegExp RegEx.Global = True RegEx.Pattern = "([IJKCXY]\d*\.?\d*)" Set Matches = regEx.Execute(str) For Each Match in Matches if instr(Match.value, ".") = 0 then str = Replace(str, Match.value, Match.value &amp; ".") end if Next convert = str end function </code></pre> http://stackoverflow.com/questions/162681/how-to-parse-formatted-email-address-into-display-name-and-email-address/162701#162701 1 Answer by Wayne for How to parse formatted email address into display name and email address? Wayne 2008-10-02T14:46:02Z 2008-10-02T14:56:06Z <pre><code>new MailAddress("jim@example.com", "Jimbo"); </code></pre> <p>to parse out the string you gave:</p> <pre><code>string input = "\"Jimbo\" jim@example.com"; string[] pieces = input.Split(' '); MailAddress ma = new MailAddress(pieces[1].Replace("&lt;", string.Empty).Replace("&gt;",string.Empty), pieces[0].Replace("\"", string.Empty)); </code></pre> http://stackoverflow.com/questions/162326/how-to-get-the-checked-option-in-a-group-of-radio-inputs-with-javascript/162429#162429 2 Answer by Wayne for How to get the checked option in a group of radio inputs with JavaScript? Wayne 2008-10-02T14:01:26Z 2008-10-02T14:01:26Z <p>If you need the actual element and not just the selected value, try this:</p> <pre><code>function findSelected(){ for (i=0;i&lt;document.formname.radioname.length;i++){ if (document.formname.radioname[i].checked){ return document.formname.radioname[i]; } } } </code></pre> http://stackoverflow.com/questions/161093/do-this-with-a-single-sql/161109#161109 0 Answer by Wayne for Do this with a single SQL Wayne 2008-10-02T06:38:04Z 2008-10-02T06:38:04Z <p>The first result from this recordset is what you're looking for. Depending on your Database, you may be able to only return this row by using LIMIT, or TOP</p> <pre><code>SELECT CLNDR_DATE FROM TABLE WHERE CLNDR_DATE &gt; (SELECT MAX(CLNDR_DATE) FROM TABLE WHERE EFFECTIVE_DATE IS NOT NULL) ORDER BY CLNDR_DATE </code></pre> http://stackoverflow.com/questions/160971/what-are-your-language-hangups/161042#161042 14 Answer by Wayne for What are your language "hangups"? Wayne 2008-10-02T05:56:34Z 2008-10-02T05:56:34Z <p>I hate Hate HATE "End Function" and "End IF" and "If... Then" parts of VB. I would much rather see a curly bracket instead.</p> http://stackoverflow.com/questions/160975/diet-advice-for-programmers/161009#161009 1 Answer by Wayne for Diet advice for programmers Wayne 2008-10-02T05:31:37Z 2008-10-02T05:31:37Z <p>I suggest you check out <a href="http://www.fourmilab.ch/hackdiet/www/hackdiet.html" rel="nofollow">The Hacker's Diet</a></p> http://stackoverflow.com/questions/160666/html-display-an-image-as-large-as-possible-while-preserving-aspect-ratio/160717#160717 5 Answer by Wayne for HTML - display an image as large as possible while preserving aspect ratio Wayne 2008-10-02T03:03:19Z 2008-10-02T03:03:19Z <p>Here's a quick function that will adjust the height or width to 100% depending on which is bigger. Tested in FF3, IE7 &amp; Chrome</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script&gt; function resizeToMax(id){ myImage = new Image() var img = document.getElementById(id); myImage.src = img.src; if(myImage.width &gt; myImage.height){ img.style.width = "100%"; } else { img.style.height = "100%"; } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;img id="image" src="test.gif" onload="resizeToMax(this.id)"&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/158818/create-json-with-net/158842#158842 5 Answer by Wayne for Create JSON with .net Wayne 2008-10-01T17:46:29Z 2008-10-01T17:46:29Z <p><a href="http://james.newtonking.com/pages/json-net.aspx" rel="nofollow">Json.Net</a> is an easy to use library with some cool features.</p> http://stackoverflow.com/questions/158729/what-information-has-been-released-regarding-the-net-framework-4-0/158732#158732 0 Answer by Wayne for What information has been released regarding the .NET Framework 4.0? Wayne 2008-10-01T17:27:48Z 2008-10-01T17:27:48Z <p><a href="http://news.google.com/news?hl=en&amp;ned=us&amp;q=net+Framework+4.0&amp;btnG=Search+News" rel="nofollow">http://news.google.com/news?hl=en&amp;ned=us&amp;q=net+Framework+4.0&amp;btnG=Search+News</a> is a good place to start</p> http://stackoverflow.com/questions/158534/reading-a-windows-dmp-file/158561#158561 2 Answer by Wayne for Reading a windows *.dmp file Wayne 2008-10-01T16:40:04Z 2008-10-01T16:40:04Z <p>Here's a link to an article from Microsoft on <a href="http://support.microsoft.com/kb/315263" rel="nofollow">reading the small memory dump files that Windows creates for debugging</a></p> http://stackoverflow.com/questions/156436/sorting-a-collection-in-classic-asp/156496#156496 3 Answer by Wayne for Sorting a collection in classic ASP Wayne 2008-10-01T06:51:17Z 2008-10-01T06:59:22Z <p>I'd go with the RecordSet approach. Use the Text Driver. You'll need to change the directory in the connection string and the filename in the select statement. the Extended Property "HDR=Yes" specifies that there's a header row in the CSV which I suggest as it will make writing the psuedo SQL easier.</p> <pre><code>&lt;% Dim strConnection, conn, rs, strSQL strConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\inetpub\wwwroot\;Extended Properties='text;HDR=Yes;FMT=Delimited';" Set conn = Server.CreateObject("ADODB.Connection") conn.Open strConnection Set rs = Server.CreateObject("ADODB.recordset") strSQL = "SELECT * FROM test.csv order by date desc" rs.open strSQL, conn, 3,3 WHILE NOT rs.EOF Response.Write(rs("date") &amp; "&lt;br/&gt;") rs.MoveNext WEND rs.Close Set rs = Nothing conn.Close Set conn = Nothing %&gt; </code></pre> http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156456#156456 0 Answer by Wayne for Regexp recognition of email address hard? Wayne 2008-10-01T06:29:51Z 2008-10-01T06:29:51Z <p>It's really hard because there are a lot of things that can be valid in an email address according to the Email Spec, <a href="http://www.faqs.org/rfcs/rfc2822.html" rel="nofollow">RFC 2822</a>. Things that you don't normally see such as + are perfectly valid characters for an email address.. according to the spec. </p> <p>There's an entire section devoted to email addresses at <a href="http://regexlib.com/DisplayPatterns.aspx?cattabindex=0&amp;categoryId=1" rel="nofollow">http://regexlib.com</a>, which is a great resource. I'd suggest that you determine what criteria matters to you and find one that matches. Most people really don't need full support for all possibilities allowed by the spec.</p> http://stackoverflow.com/questions/202323/stackoverflow-atom-feed-to-use-with-vs2008-start-page/202347#202347 Comment by Wayne on StackOverflow atom feed to use with VS2008 Start Page Wayne 2008-10-14T19:00:12Z 2008-10-14T19:00:12Z Something in either the feed or VS's page doesn't display that correctly. http://stackoverflow.com/questions/202305/create-php-dom-xml-file-and-create-a-save-file-link-prompt-without-writing-the-fi Comment by Wayne on Create PHP DOM xml file and create a save file link/prompt without writing the file to the server when headers already sent. Wayne 2008-10-14T18:43:26Z 2008-10-14T18:43:26Z What's preventing you from using the headers to send a file download prompt? http://stackoverflow.com/questions/192028/from-string-to-blob/192057#192057 Comment by Wayne on From String to Blob Wayne 2008-10-10T17:06:00Z 2008-10-10T17:06:00Z Added.. thanks. :) http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156456#156456 Comment by Wayne on Regexp recognition of email address hard? Wayne 2008-10-03T20:30:19Z 2008-10-03T20:30:19Z @David Schmitt : The addresses: Abc\@def@example.com, customer/department=shipping@example.com and !def!xyz%abc@example.com are all valid.. however 99.99% of people won't run into these types of addresses in a production site. http://stackoverflow.com/questions/158729/what-information-has-been-released-regarding-the-net-framework-4-0/158732#158732 Comment by Wayne on What information has been released regarding the .NET Framework 4.0? Wayne 2008-10-02T05:01:52Z 2008-10-02T05:01:52Z No worries. :) I guess I look at the question as part of a knowledge base for the future. The answer of the question is dynamic when you account for time, so what you see SHOULD be different if newer information is available. It's very similar to linking to a Wikipedia entry. http://stackoverflow.com/questions/160666/html-display-an-image-as-large-as-possible-while-preserving-aspect-ratio/160717#160717 Comment by Wayne on HTML - display an image as large as possible while preserving aspect ratio Wayne 2008-10-02T03:37:30Z 2008-10-02T03:37:30Z Auto is the default. It's the same as not setting the property. http://stackoverflow.com/questions/158729/what-information-has-been-released-regarding-the-net-framework-4-0/158732#158732 Comment by Wayne on What information has been released regarding the .NET Framework 4.0? Wayne 2008-10-01T17:47:38Z 2008-10-01T17:47:38Z Vote it down all you want.. in 6 months, this will still be a valid link where the others will be dated http://stackoverflow.com/questions/157898/class-for-url-querystring-manipulation/157971#157971 Comment by Wayne on Class for URL Querystring Manipulation? Wayne 2008-10-01T15:02:06Z 2008-10-01T15:02:06Z Those special cases can all be handlded with httpserverutility.htmlencode and httpserverutility.htmldecode http://stackoverflow.com/questions/156436/sorting-a-collection-in-classic-asp/156485#156485 Comment by Wayne on Sorting a collection in classic ASP Wayne 2008-10-01T07:00:08Z 2008-10-01T07:00:08Z Completely offtopic, but I had that same icon as a userpic in my livejournal. :) http://stackoverflow.com/questions/155739/detecting-unsaved-changes-using-javascript Comment by Wayne on Detecting Unsaved Changes using JavaScript Wayne 2008-10-01T00:53:51Z 2008-10-01T00:53:51Z The solution I posted below can be used in plain HTML/Javscript. Simply change the &quot;codebehind&quot; to attributes in the HTML tags themselves. http://stackoverflow.com/questions/155217/good-c-code-samples/155232#155232 Comment by Wayne on Good C# code samples? Wayne 2008-09-30T21:57:24Z 2008-09-30T21:57:24Z If you have VS 2008, you can enable Framework debugging as well: <a href="http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx" rel="nofollow">weblogs.asp.net/scottgu/archive/&hellip;</a> http://stackoverflow.com/questions/149823/accessing-a-dynamitcally-added-buttoncolumns-in-a-datagrid-click-event-c-as Comment by Wayne on Accessing a dynamitcally added buttoncolumn's (in a Datagrid) click event. C#/ASP.NET Wayne 2008-09-29T17:51:56Z 2008-09-29T17:51:56Z Do you need to actually access that individual button's Click event, or simply perform an action whenever a button in that column is clicked? http://stackoverflow.com/questions/141562/sql-to-find-the-number-of-distinct-values-in-a-column/141573#141573 Comment by Wayne on SQL to find the number of distinct values in a column Wayne 2008-09-26T20:16:55Z 2008-09-26T20:16:55Z Yup.. edited. Thanks :) http://stackoverflow.com/questions/135365/classic-asp-when-to-use-response-flush/135376#135376 Comment by Wayne on Classic asp - When to use Response.flush? Wayne 2008-09-25T19:23:59Z 2008-09-25T19:23:59Z <a href="http://www.io.com/~maus/HttpKeepAlive.html" rel="nofollow">io.com/~maus/HttpKeepAlive.html</a> http://stackoverflow.com/questions/134288/interview-question-puzzle/134308#134308 Comment by Wayne on Interview Question/Puzzle Wayne 2008-09-25T16:26:02Z 2008-09-25T16:26:02Z Hell no.. take the monkeys, too!