User Robert C. Barth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T11:56:11Z http://stackoverflow.com/feeds/user/9209 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795242/how-to-figure-out-if-an-html-block-does-not-contain-any-text-nodes 0 How To Figure Out if an HTML Block Does Not Contain Any Text Nodes Robert C. Barth 2009-11-25T07:32:16Z 2009-11-26T06:36:59Z <p>How do you/is there a way to figure out if a block of HTML contains zero text nodes?</p> <p>e.g. this:</p> <pre><code>&lt;p&gt;&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/p&gt; </code></pre> <p>contains zero text nodes whereas this:</p> <pre><code>&lt;p&gt;Stuff&lt;/p&gt;&lt;div&gt;&lt;span&gt;other stuff&lt;/span&gt;&lt;/div&gt; </code></pre> <p>contains two. </p> <p>Additionally, you're guaranteed that the HTML is XHTML-compliant and the content is probably less than 4k in size. I'm using .net, so if some kind of server-side suggestion is made, please make it in C#. I suppose I could load the thing into an XmlDocument and traverse the DOM tree looking for non-empty XmlText nodes, but that would be a last resort as speed is of paramount concern.</p> http://stackoverflow.com/questions/266115/pass-an-instantiated-system-type-as-a-type-parameter-for-a-generic-class 8 Pass An Instantiated System.Type as a Type Parameter for a Generic Class Robert C. Barth 2008-11-05T18:19:51Z 2009-06-29T09:59:11Z <p>The title is kind of obscure. What I want to know is if this is possible:</p> <pre><code>string typeName = &lt;read type name from somwhere&gt;; Type myType = Type.GetType(typeName); MyGenericClass&lt;myType&gt; myGenericClass = new MyGenericClass&lt;myType&gt;(); </code></pre> <p>Obviously, MyGenericClass is described as:</p> <pre><code>public class MyGenericClass&lt;T&gt; </code></pre> <p>Right now, the compiler complains that 'The type or namespace 'myType' could not be found." There has got to be a way to do this.</p> http://stackoverflow.com/questions/679248/sql-cast-mystery/679305#679305 0 Answer by Robert C. Barth for SQL Cast Mystery Robert C. Barth 2009-03-24T21:23:42Z 2009-03-24T21:23:42Z <p>Just a guess, but it may be that when Private = 1, PerNr cannot be anything but a castable number in your data (as it is in the PerNr can equal '9A [or whatever else]', breaking the cast in the group by and order by clauses).</p> http://stackoverflow.com/questions/659265/asp-net-sqldatasource-and-session-variable/659829#659829 0 Answer by Robert C. Barth for ASP.net: Sqldatasource and Session variable Robert C. Barth 2009-03-18T19:45:12Z 2009-03-18T19:45:12Z <p>You can't paramterize an IN statement in SQL like that. You'll have to use string concatenation of the SQL instead (bad) or some other technique like parsing a delimited string.</p> http://stackoverflow.com/questions/655859/automatic-event-wiring-in-global-asax/657205#657205 0 Answer by Robert C. Barth for Automatic Event Wiring in Global.asax Robert C. Barth 2009-03-18T07:00:36Z 2009-03-18T07:00:36Z <p>All of the events of the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.aspx" rel="nofollow"><code>HttpApplication</code></a> class can have a handler in the global.asax.</p> http://stackoverflow.com/questions/656267/iis-asp-net-app-and-subapp-how-to-use-two-host-names-without-redirecting/657201#657201 0 Answer by Robert C. Barth for IIS/ASP.NET app and subapp: how to use two host names without redirecting? Robert C. Barth 2009-03-18T06:55:11Z 2009-03-18T06:55:11Z <p>As DreamSonic said, use a different website for each application, with different IP addresses for each. To add more than a single IP to the server, use the advanced button on the Internet Protocol (tcp/Ip) dialog box in Network Properties. In IIS, set the website to respond to the specified IP instead of the default of [All Unassigned]. You don't need two (or more) NIC's.</p> <p>Other than that, you'll need to do some URL rewriting, which can be a pain because all of the links in your app will need to "fixed" or else you'll eventually end up with the undesirable URL in the client's browser.</p> http://stackoverflow.com/questions/657104/can-a-request-be-handled-and-ended-prematurely-early-in-the-pipeline/657182#657182 1 Answer by Robert C. Barth for Can a request be handled and ended prematurely, early in the pipeline? Robert C. Barth 2009-03-18T06:43:14Z 2009-03-18T06:43:14Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.completerequest%28vs.80%29.aspx" rel="nofollow"><code>HttpContext.Current.ApplicationInstance.CompleteRequest();</code></a></p> http://stackoverflow.com/questions/622437/none-or-not-used-foreign-key-when-using-guids-as-primary-key/622448#622448 1 Answer by Robert C. Barth for 'None' or 'Not Used' foreign key when using GUIDs as primary key Robert C. Barth 2009-03-07T20:33:33Z 2009-03-07T20:33:33Z <p>Make the foreign key field in the child table NULLable and keep the field NULL when there's no admin user. Magical values like "0" identity columns is a disaster waiting to occur.</p> http://stackoverflow.com/questions/608703/how-to-sort-namevaluecollection-using-a-key-in-c/608769#608769 3 Answer by Robert C. Barth for How to sort NameValueCollection using a key in C#? Robert C. Barth 2009-03-04T00:05:11Z 2009-03-04T00:05:11Z <p>Use a <a href="http://msdn.microsoft.com/en-us/library/f7fta44c.aspx" rel="nofollow">SortedDictionary</a> instead.</p> http://stackoverflow.com/questions/597226/viewstate-usercontrol-and-ispostback/597510#597510 0 Answer by Robert C. Barth for ViewState, UserControl and IsPostback Robert C. Barth 2009-02-28T04:54:28Z 2009-02-28T04:54:28Z <p>Add the control to the page sometime before OnLoad. E.g. OnInit. Between OnInit and OnLoad, the viewstate is loaded and postback events are run.</p> http://stackoverflow.com/questions/580321/patterns-for-implementing-transactions-outside-of-a-database/580407#580407 1 Answer by Robert C. Barth for Patterns for implementing transactions outside of a database Robert C. Barth 2009-02-24T03:48:26Z 2009-02-24T03:48:26Z <p>Since you can't un-send an e-mail, and it's relatively inexpensive to write a file, I'd just do those things in the proper order:</p> <ol> <li>Try to write the file/write the file. If unssuccessful, stop, otherwise continue to:</li> <li>Call the web service. If unsuccessful, delete the file and stop, otherwise continue to:</li> <li>Send e-mail -- email is asynchronous anyhow, so you'd never really know if it was sent or not since most e-mail servers are set to retry for a couple of days if an error occurs and you never get back an acknowledgment that the e-mail went through even if it <em>was</em> successful.</li> </ol> http://stackoverflow.com/questions/577854/why-does-this-sproc-reference-find-the-correct-table-to-update/577932#577932 3 Answer by Robert C. Barth for Why does this sproc reference find the correct table to update? Robert C. Barth 2009-02-23T15:11:20Z 2009-02-23T15:11:20Z <p>The sproc is built under the ImportSet2 schema, so, by default, it will reference objects in the ImportSet2 schema if no schema name is specified.</p> <p>I believe it is best-practice, however, to fully-qualify objects with their schema name.</p> http://stackoverflow.com/questions/577839/const-vs-protected-static-readonly/577919#577919 0 Answer by Robert C. Barth for Const vs protected static readonly. Robert C. Barth 2009-02-23T15:06:35Z 2009-02-23T15:06:35Z <p>Create an inner class with the constants. The deriving classes can then later override the inner class and change the constants as necessary.</p> <p>e.g. base class:</p> <pre><code>public class Stuff { public class HeaderInformation { public const int HEADER_DATA_LENGTH_IX = 0; public const int HEADER_DATA_LENGTH_LENGTH = 2; } } </code></pre> <p>Then the derived class can do this:</p> <pre><code>public class DerivedStuff : Stuff { public new class HeaderInformation : Stuff.HeaderInformation { public new const int HEADER_DATA_LENGTH_IX = 10; } } </code></pre> <p>This way, you have flexibility. In <code>DerivedStuff</code>, the HeaderInformation class has all of the constants in the base <code>Stuff.HeaderInformation</code> class, but can change any of them, or keep the ones it has.</p> http://stackoverflow.com/questions/573791/asp-net-static-class-race-condition/574095#574095 0 Answer by Robert C. Barth for ASP.NET/Static class Race Condition? Robert C. Barth 2009-02-22T01:10:25Z 2009-02-22T01:10:25Z <p>This is very easy to fix:</p> <pre><code>private _clientsLock = new Object(); public static ClientData GetClientData(Guid fk_client) { if (_clients == null) lock (_clientsLock) // Check again because another thread could have created a new // dictionary in-between the lock and this check if (_clients == null) _clients = new Dictionary&lt;Guid, ClientData&gt;(); if (_clients.ContainsKey(fk_client)) // Don't need a lock here UNLESS there are also deletes. If there are // deletes, then a lock like the one below (in the else) is necessary return _clients[fk_client]; else { ClientData client = new ClientData(fk_client); lock (_clientsLock) // Again, check again because another thread could have added this // this ClientData between the last ContainsKey check and this add if (!clients.ContainsKey(fk_client)) _clients.Add(fk_client, client); return client; } } </code></pre> <p>Keep in mind that whenever you mess with static classes, you have the potential for thread synchronization problems. If there's a static class-level list of some kind (in this case, _clients, the <code>Dictionary</code> object), there's <em>DEFINITELY</em> going to be thread synchronization issues to deal with.</p> http://stackoverflow.com/questions/572298/css-how-to-stop-text-from-taking-up-more-than-1-line/572303#572303 1 Answer by Robert C. Barth for CSS: how to stop text from taking up more than 1 line? Robert C. Barth 2009-02-21T05:04:10Z 2009-02-21T05:04:10Z <p>white-space: nowrap</p> http://stackoverflow.com/questions/571338/anyone-using-memcached-with-asp-net-on-a-distributed-farm/571373#571373 1 Answer by Robert C. Barth for Anyone using Memcached with ASP.NET on a distributed farm? Robert C. Barth 2009-02-20T21:51:21Z 2009-02-20T21:51:21Z <p>Best practice (according to the memcached site) is to run memcached on the same box as your web server app or else you're making http calls (which isn't all that bad, but it's not optimal). If you're running a 64-bit app server (which you probably should if you're going to be running memcached), then you can load up each of the servers with loads of memory and it will be available to memcached. There's not much in the way of CPU resources used by memcached, so if your current app server isn't very taxed, it will remain that way.</p> http://stackoverflow.com/questions/562468/dynamically-load-application-settings-from-sql-server-at-regular-interval/562521#562521 0 Answer by Robert C. Barth for Dynamically load Application settings from SQL Server at regular interval Robert C. Barth 2009-02-18T19:39:43Z 2009-02-18T19:39:43Z <p>Have you looked at the Enterprise Library's configuration application block?</p> <p>If you do it yourself, MS SQL 2005+ supports cache invalidation natively, so it can notify your program when cached data is changed.</p> http://stackoverflow.com/questions/562479/why-does-sortedlist-implementation-use-throwhelper-instead-of-throwing-directly/562493#562493 4 Answer by Robert C. Barth for Why does SortedList implementation use ThrowHelper instead of throwing directly? Robert C. Barth 2009-02-18T19:32:47Z 2009-02-18T19:32:47Z <p>Look at what ThrowHelper does. It gets resources and stuff for the error messages. In this particular instance, there's no error text, so it seems like it's useless, but their pattern probably requires it, so the developer who wrote it followed the pattern like s/he should.</p> http://stackoverflow.com/questions/546702/iis-7-cant-connect-to-sqlserver-2008/546715#546715 2 Answer by Robert C. Barth for IIS 7 can't connect to SQLServer 2008 Robert C. Barth 2009-02-13T16:51:51Z 2009-02-14T07:59:48Z <p>Make sure you have TCP/IP set up as a transport in your SQL Server configuration tool.</p> http://stackoverflow.com/questions/542865/advantages-of-sql-server-enterprise-vs-standard-2008/542948#542948 1 Answer by Robert C. Barth for Advantages of SQL Server Enterprise vs. Standard (2008) Robert C. Barth 2009-02-12T19:53:01Z 2009-02-12T20:00:46Z <p>I don't believe the CAL license permits you to sit SQL Server behind a web server application. You must purchase a per-processor license to do that. Even if not, if you have more than 25 users/devices, the per-processor model is less costly (you need a CAL for each user or each device connected).</p> <p>Per-processor pricing for Enterprise is $24,999 and for Standard it's $5,999. You might also look into Web edition, which is $15/mo. per processor.</p> <p>In answer to your question, there is some stuff like indexed views, but if you have less than 10,000 users total, your schema and query design will have way more of an impact on performance than any features not included in standard or web edition.</p> http://stackoverflow.com/questions/524899/changing-favicon-based-on-theme/524903#524903 3 Answer by Robert C. Barth for Changing favicon based on theme Robert C. Barth 2009-02-08T00:55:26Z 2009-02-09T15:46:32Z <p>As long as your user is not using IE, that should be fine. IE (up to at least version 7) only reads the favicon.ico file and completely ignores the link tag.</p> http://stackoverflow.com/questions/494260/creating-an-ajax-script-control/494622#494622 1 Answer by Robert C. Barth for Creating an AJAX Script Control Robert C. Barth 2009-01-30T06:07:46Z 2009-01-30T06:07:46Z <p>What you are doing here is building a composite control, not a script control, per se. What you really want to be doing is inheriting from <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.compositecontrol.aspx" rel="nofollow">CompositeControl</a> (<a href="http://msdn.microsoft.com/en-us/library/3257x3ea.aspx" rel="nofollow">and following the model for creating a composite control</a>), and implementing <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.iscriptcontrol.aspx" rel="nofollow">IScriptControl</a>, instead. You're asking for a lot of heartburn doing it your way (ViewState and postback problems, etc.).</p> http://stackoverflow.com/questions/493142/hardware-lossless-compression-for-hard-drives/493225#493225 1 Answer by Robert C. Barth for Hardware Lossless Compression for Hard Drives? Robert C. Barth 2009-01-29T20:19:23Z 2009-01-29T20:19:23Z <p>Who remembers Stacker? This was all already <a href="http://en.wikipedia.org/wiki/Disk_compression" rel="nofollow">done-to-death in the '80's/90's</a>. Speed was never a problem, and neither was it "tricky." It's just completely unnecessary these days.</p> http://stackoverflow.com/questions/492706/how-do-you-handle-clients-who-dont-understand-or-forgot-their-own-sane-require/492814#492814 1 Answer by Robert C. Barth for How do you handle clients who don't understand or forgot their own (sane) requirements? Robert C. Barth 2009-01-29T18:25:51Z 2009-01-29T18:25:51Z <p>I've had this problem on a government project where we were calculating revenue amounts based on some <em>insane</em> rules (all of which were codified in the state statutes). In addition, this was a replacement of a previous system. We had a couple of problems:</p> <ol> <li><p>The rules from state law were not necessarily the rules the personnel were familiar with. As time went on and employee turn-over happened, I guess people forgot or communicated the rules incorrectly.</p></li> <li><p>Complete ignorance of the rules by the employees.</p></li> <li><p>The rules programmed into the old system were often wrong.</p></li> </ol> <p>The first problem was worse than the second, and the third was the worst. We had to show, from the state law, how the rules were to be applied. As you can guess, the state law can be quite esoteric, so it ended up being math problems on a whiteboard. After a couple of months of this, the users finally figured out that the new software was right and the old software was simply wrong. Each time, however, we had to do some analysis, make sure it wasn't wrong, then show the users how either their understand of the rules was incorrect, or the old software was incorrect. It took a decent amount of patience, but it all worked out.</p> <p>To handle this kind of thing, you need patience, a good working rapport with your users (which begins on day one of the assignment), and open lines of communication.</p> http://stackoverflow.com/questions/484994/jquery-hyperlinking-like-google/485156#485156 1 Answer by Robert C. Barth for jquery hyperlinking like google Robert C. Barth 2009-01-27T20:45:19Z 2009-01-27T20:45:19Z <p>Microsoft also has AJAX history manipulation as of .net 3.5 sp1. <a href="http://msdn.microsoft.com/en-us/library/bb310856.aspx" rel="nofollow">Click here</a>. Take a look at <a href="http://msdn.microsoft.com/en-us/library/cc488025.aspx" rel="nofollow">Sys.Application.addHistoryPoint</a> and <a href="http://msdn.microsoft.com/en-us/library/cc488024.aspx" rel="nofollow">Sys.Application.navigate</a>. Actually AJAX-ifying your grid is really up to you.</p> http://stackoverflow.com/questions/485086/single-threaded-apartments-vs-multi-threaded-apartments/485099#485099 1 Answer by Robert C. Barth for Single-Threaded Apartments vs Multi-Threaded Apartments Robert C. Barth 2009-01-27T20:32:16Z 2009-01-27T20:32:16Z <p>You don't have to worry about it unless you're doing COM-interop, in which case there are marshalling issues. It has no ramifications for .net itself.</p> http://stackoverflow.com/questions/484502/how-to-render-text-in-net-in-the-same-size-as-browsers-does-given-css-for-the-te/485061#485061 1 Answer by Robert C. Barth for How to render text in .NET in the same size as browsers does given CSS for the text. Robert C. Barth 2009-01-27T20:21:18Z 2009-01-27T20:26:30Z <p>Actually, the docs say "em-size", not "em-point" ("The em-size, in points, of the new font"). It's asking you to specify the size in points. There are 72 points per inch. You need to figure out the DPI of the user's screen and the DPI of the canvas you're drawing on and multiply the 16px size by the difference in that ratio.</p> <p>e.g.</p> <pre><code>(CSS_Font_Size_Pixels * Canvas_DPI) / (User_Screen_DPI * 72) = Equivalent_Point_Size </code></pre> <p>You could save yourself a mathematical operation by using the Font constructor overload that takes a GraphicUnit and specify Pixels. This way, the appropriate size would be:</p> <pre><code>(CSS_Font_Size_Pixels / User_Screen_DPI) * Canvas_DPI </code></pre> http://stackoverflow.com/questions/484135/select-where-clause-evaluation-order/484201#484201 1 Answer by Robert C. Barth for Select "where clause" evaluation order Robert C. Barth 2009-01-27T16:53:11Z 2009-01-27T16:53:11Z <p>The MS SQL Server query optimizer does short circuit, yes. Guaranteed.</p> <p>Run this:</p> <pre><code>select 1 where 1 = 0 and 1 / 0 = 10 </code></pre> <p>It will run just fine and not error even though you're dividing by zero because the query optimizer will short-circuit evaluate the where clause. This has implications for any where clause where you're "and"-ing and one of the and parts is a constant.</p> http://stackoverflow.com/questions/480946/asp-net-dopostback-not-rendered-sometime/481206#481206 0 Answer by Robert C. Barth for asp.net: __doPostBack not rendered sometime Robert C. Barth 2009-01-26T20:28:05Z 2009-01-26T20:28:05Z <p>Usually this happens when you have malformed javascript somewhere on the page (usually, before the __dopostback function).</p> <p>Have you viewed the page source and looked to see if the __dopostback function is actually rendered in the page, regardless of whether you're getting the error or not?</p> http://stackoverflow.com/questions/481142/asp-net-how-to-pass-multiple-parameters-to-eval/481199#481199 1 Answer by Robert C. Barth for ASP.NET: How to pass multiple parameters to Eval()? Robert C. Barth 2009-01-26T20:25:57Z 2009-01-26T20:25:57Z <p>If the LinkButton is not inside some other thing (like a grid), just set the OnClientClick attribute in the code-behind like normal, using string.Format.</p> <p>If it IS in a grid (or repeater, or something of that nature), set it in the RowDataBound event using FindControl or e.Row.Cells[] and string.Format. If you use e.Row.Cells[], you can probably dump the LinkButton server control and just output a normal anchor tag.</p> http://stackoverflow.com/questions/1795242/how-to-figure-out-if-an-html-block-does-not-contain-any-text-nodes/1795947#1795947 Comment by Robert C. Barth on How To Figure Out if an HTML Block Does Not Contain Any Text Nodes Robert C. Barth 2009-11-26T05:01:26Z 2009-11-26T05:01:26Z I understand your point, but the possibility of this happening is near-zero in my circumstance; the XHTML is generated by a tool (TinyMCE) and the user may not edit it. http://stackoverflow.com/questions/1795242/how-to-figure-out-if-an-html-block-does-not-contain-any-text-nodes/1795400#1795400 Comment by Robert C. Barth on How To Figure Out if an HTML Block Does Not Contain Any Text Nodes Robert C. Barth 2009-11-26T04:59:55Z 2009-11-26T04:59:55Z innerText is an IE-only property; there is no corss-browser equivalent. http://stackoverflow.com/questions/1795242/how-to-figure-out-if-an-html-block-does-not-contain-any-text-nodes/1795282#1795282 Comment by Robert C. Barth on How To Figure Out if an HTML Block Does Not Contain Any Text Nodes Robert C. Barth 2009-11-26T04:59:21Z 2009-11-26T04:59:21Z Unfortunately, I've used the XmlDocument object enough to know that it's not my first choice. However, it may be my only choice. http://stackoverflow.com/questions/1670185/sql-server-database-design-problem-challenge/1670201#1670201 Comment by Robert C. Barth on SQL Server Database Design Problem/Challenge Robert C. Barth 2009-11-03T21:46:59Z 2009-11-03T21:46:59Z The manipulation and definition of the hierarchy is a business rule and therefore belongs in the business rules layer, not the DAL, if you're going to resort to code. http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261862#1261862 Comment by Robert C. Barth on Subversion - should anyone be developing off the trunk? Robert C. Barth 2009-08-26T20:50:52Z 2009-08-26T20:50:52Z Another thing: how do you do parallel development with a dynamic trunk without becoming inconsistent in your process? Static trunk permits this as you just create another branch, same as always. What happens if you're using dynamic trunk, and need to release a hotfix after development has started on a new version? Now you have development going on in both the trunk and in a branch, breaking consistency in your dynamic trunk model. IMO, dynamic trunk works find for small teams; once the team/product becomes larger, the static trunk model works much better. http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261862#1261862 Comment by Robert C. Barth on Subversion - should anyone be developing off the trunk? Robert C. Barth 2009-08-26T20:35:37Z 2009-08-26T20:35:37Z A stable trunk permits a single place to go to get the released source code. Also, it permits experimentation, and the possibility of forgetting to branch the previous release before someone starts messing with the trunk is not a possibility, making it impossible to lose the production source if needed for a rebuild/rollback. http://stackoverflow.com/questions/719924/what-to-return-from-the-dal-to-bll/720002#720002 Comment by Robert C. Barth on What to return from the DAL to BLL Robert C. Barth 2009-04-10T20:11:06Z 2009-04-10T20:11:06Z Further, if you modify the layout of the returned data from the storage provider, you'd need to rewrite both the BLL and DAL having the static method in the BLL. http://stackoverflow.com/questions/719924/what-to-return-from-the-dal-to-bll/720002#720002 Comment by Robert C. Barth on What to return from the DAL to BLL Robert C. Barth 2009-04-10T20:10:21Z 2009-04-10T20:10:21Z I subtracted one for the reason already mentioned, putting a method that uses a DataReader in the BLL breaks the separation of concerns between BLL and DAL -- it causes the BLL to have to know specifics of the storage. What if you change your storage? Now you have to rewrite the BLL &amp; DAL. http://stackoverflow.com/questions/701322/how-can-you-get-the-first-digit-in-an-int-c/701355#701355 Comment by Robert C. Barth on How can you get the first digit in an int (C#)? Robert C. Barth 2009-03-31T22:24:11Z 2009-03-31T22:24:11Z This doesn't work so hot if i is negative (i.e. it doesn't work at all). http://stackoverflow.com/questions/659272/what-is-the-best-way-to-reference-jquery-in-asp-net/659299#659299 Comment by Robert C. Barth on What is the best way to reference jquery in asp.net? Robert C. Barth 2009-03-18T19:53:27Z 2009-03-18T19:53:27Z pageLoad and document.ready fire at different times. pageLoad fires AFTER document.ready. I've been burnt by this. I use pageLoad myself because it's more reliable. I have document.ready fire when the document was not actually fully loaded. http://stackoverflow.com/questions/659366/how-to-make-visual-studio-2008-asp-net-designer-faster Comment by Robert C. Barth on How to make visual studio 2008 ASP.NET designer faster? Robert C. Barth 2009-03-18T17:58:51Z 2009-03-18T17:58:51Z Design view is officially banned from my VS IDE. http://stackoverflow.com/questions/659384/why-does-ms-sql-mgmt-studio-express-keep-forgetting-my-passwords Comment by Robert C. Barth on Why does MS SQL Mgmt Studio Express keep forgetting my passwords? Robert C. Barth 2009-03-18T17:57:22Z 2009-03-18T17:57:22Z I have the same problem. http://stackoverflow.com/questions/657104/can-a-request-be-handled-and-ended-prematurely-early-in-the-pipeline/657182#657182 Comment by Robert C. Barth on Can a request be handled and ended prematurely, early in the pipeline? Robert C. Barth 2009-03-18T17:34:12Z 2009-03-18T17:34:12Z This will end all further processing of the request. Your handler is not the only handler in the pipeline, so this will cancel further processing of other handlers after yours and send the response immediately to the client. http://stackoverflow.com/questions/657144/how-do-you-modify-style-in-the-code-behind-file-for-divs-in-asp-net/657165#657165 Comment by Robert C. Barth on How do you modify style in the code behind file for divs in ASP.net? Robert C. Barth 2009-03-18T06:38:16Z 2009-03-18T06:38:16Z testSpace.Attributes.Add(&quot;style&quot;, &quot;display: none;&quot;); would also work. http://stackoverflow.com/questions/657093/facebook-status-bar/657171#657171 Comment by Robert C. Barth on facebook status bar Robert C. Barth 2009-03-18T06:35:29Z 2009-03-18T06:35:29Z Considering the browser can only speak HTTP, I doubt there's another protocol being used.