User Frank Rosario - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T15:25:50Z http://stackoverflow.com/feeds/user/10922 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1604501/document-body-not-working-in-ie-on-a-page-that-has-been-redirected-to 0 document.body not working in IE on a page that has been redirected to? Frank Rosario 2009-10-22T01:06:17Z 2009-10-22T15:08:23Z <p>Hello all, hoping you can help with this.</p> <p>I have a link that redirects to a page on another one of our sites</p> <p>However, when this redirect happens, I get a "document.body is null" error from JQuery, and a similar error from SWFAddress (_d.body is null); but only in IE.</p> <p>However, when I enter the redirected to URL directly in IE (aka sans interstitial redirect), the JS error disappears. It seems this error only comes up when this page is being redirected to. Any ideas?</p> <p>I heard similar issues happened when the document doesn't validate with its given Doctype (XHTML 1.0 Transitional in this case). The page had minor issues, but I've recoded the page to make sure it validated via the W3C validator on our DMZ server. Unfortunately, that doesn't seem to resolve the issue.</p> <p>Any ideas what could be causing this? I talked to several Presentation coders on my team and they seem to be stumped. Any assistance at all is greatly appreciated.</p> <p>Thanks in advance, - Frank</p> http://stackoverflow.com/questions/1604501/document-body-not-working-in-ie-on-a-page-that-has-been-redirected-to/1607874#1607874 0 Answer by Frank Rosario for document.body not working in IE on a page that has been redirected to? Frank Rosario 2009-10-22T15:05:12Z 2009-10-22T15:05:12Z <p>We found a work around. We setup a page that does a JS redirect instead of the original server side redirect we used. Using this method seems to have resolved the issue. Still, a very odd bug though...</p> http://stackoverflow.com/questions/1418840/how-much-math-do-you-use-as-a-computer-scientist/1418898#1418898 2 Answer by Frank Rosario for How much math do you use as a computer scientist? Frank Rosario 2009-09-13T21:36:27Z 2009-09-13T21:36:27Z <p>Depends what field of development you're in. I have a CS degree and became a web developer. When I worked in finance, math came up more because we were calculating derivatives, etc. </p> <p>These days I work at a digital ad agency doing backend work mostly. Advanced math doesn't come in often for me, but I did find that having a good understanding of Linear Math, Discrete Math, and basic Calc I has been useful in deciding how to code pages for high performance (no, you can't just cache everything). My math background gave me a deeper understanding of how a few hits on a server calling a poorly architected backend could cause the CPU to max out. For example, if I'm calling a sorting algorithm on each request; do I want to use quicksort(n^2 worst case, but on average is NLogN) or say merge sort (which is nlogn worst case). Because of my background in math, I easily understand which algorithm provides more consistent performance and can choose the appropriate sorting algorithm. I know that if I'm regularly dealing with large values of N, I definitely want to go with mergesort; since if I have a large value of N and it happens to be a dataset that causes quicksort to perform at N^2, my CPU usage could spike heavily. Multiply that by a few similar concurrent requests, and you have a site that will occasionally perform poorly; because you didn't understand the difference between N^2 and NlogN. I know this because I have a solid foundation in Linear Algebra and Calc I. It might not have seemed all that relevant when I was learning it at the time; but now I'm glad I had to learn it.</p> http://stackoverflow.com/questions/1191517/digg-com-and-meta-descriptions 0 Digg.com and meta descriptions? Frank Rosario 2009-07-28T01:37:13Z 2009-07-28T01:37:13Z <p>Hi,</p> <p>I'm working on the following site:</p> <p><a href="http://www.fragrancecollection.com/" rel="nofollow">http://www.fragrancecollection.com/</a></p> <p>When I submit the site to Digg; odd characters show up in the description field. I tried forcing the character encoding to UTF-8 (which the document is saved as) via meta tags; but that did nothing. I tried replacing complex characters with simpler literals (such as (TM) and (R); that helped but I still couldn't use an ampersand (tried both &amp; and &amp;).</p> <p>I have 2 questions.</p> <p>1.) Is there documentation somewhere where I can get specifications on how to format content for proper submission to Digg? Frequent Googling has turned up nothing so far.</p> <p>2.) Is it possible to specify a meta description for Digg.com; via a digg specific meta tag like or by a user agent sniffing (useragent.contains("digg-crawler") == true)?</p> <p>Any assistance on this is greatly appreciated.</p> <p>Thanks, - Frank</p> http://stackoverflow.com/questions/1049531/should-i-cache-data-pre-emptively/1049664#1049664 1 Answer by Frank Rosario for Should I cache data pre-emptively Frank Rosario 2009-06-26T15:12:44Z 2009-06-26T15:12:44Z <p>I don't think you can answer this question until you've quantified how many times a client on average retrieves messages for a given device. If a given device is only queried for messages once in a blue moon, then it's fine to purge the message cache on each client request. However, if a given device's message queue is queried many times, then a preemptive caching on device sync is likely the best option; given the device syncs are less frequent then the client requests.</p> <p>Your best might be writing a system that adaptively caches based on load. If a given device's message queue is queried often, it refreshes the cache on device sync. If a device message queue is rarely queried, you refresh the cache on client request.</p> http://stackoverflow.com/questions/77637/swfaddress-deeplinks-and-c-library 1 SWFAddress Deeplinks and C# library? Frank Rosario 2008-09-16T21:58:03Z 2009-06-01T19:56:55Z <p>Is there a C# class for interacting with SWFAddress deeplink URL strings (reading deeplink parameters, building SWFAddress URLs, etc.)? Planning to write one myself otherwise; but I wanted to make sure I wasn't reinventing the wheel first. </p> http://stackoverflow.com/questions/885974/reasons-for-not-using-an-orm/885985#885985 7 Answer by Frank Rosario for Reasons for not using an ORM Frank Rosario 2009-05-20T03:12:41Z 2009-05-20T03:12:41Z <p>I use ORMs for DB transactions that will have little overhead anyway; simple, atomic CRUD tasks that don't occur multiple times a second for example. However, when you have a large query that requires many joins and parameters and will return a potentially large dataset, you really need to get down to the SQL level to fine tune it to get the exact data you need and to make sure the query is optimized.</p> http://stackoverflow.com/questions/874591/float-div-that-fills-all-empty-space-of-box/874629#874629 -1 Answer by Frank Rosario for Float div that fills all empty space of box Frank Rosario 2009-05-17T13:29:55Z 2009-05-17T13:29:55Z <p>From the looks at what you're doing, it looks to me that you might be better off just using a table then a div.</p> <p>Mind you, I'm assuming your text items will be displayed as a vertical list, then you would code it as such.</p> <pre><code>&lt;style&gt; #list { width:150px; padding:0px; /*set this to what ever you want*/ } td.arrowCol { width:22px } td.arrowCol img { float:right; } &lt;/style&gt; &lt;table id="list" &gt; &lt;tr&gt; &lt;td id="copyCol" &gt; first &lt;/td&gt; &lt;td id="arrowCol" &gt; &lt;img src="arrow.gif" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>The copyCol column will automatically have the width of 150 - 22. If you decide to change to 200, copyCol will scale to 200 - 22.</p> http://stackoverflow.com/questions/861129/convert-streaming-live-video-to-mp4/861167#861167 1 Answer by Frank Rosario for convert streaming live video to mp4 Frank Rosario 2009-05-14T01:28:19Z 2009-05-14T01:28:19Z <p>I believe <a href="http://tversity.com/" rel="nofollow">TVersity</a> has this functionality.</p> http://stackoverflow.com/questions/855360/when-and-why-to-return-false-in-javascript/855434#855434 1 Answer by Frank Rosario for When and why to 'return false' in javascript? Frank Rosario 2009-05-12T23:39:17Z 2009-05-12T23:39:17Z <p>I think a better question is, why in a case where you're evaluating a boolean set of return values, would you NOT use true/<strong>false</strong>? I mean, you could probably have true/null, true/-1, other misc. Javascript "falsy" values to substitute, but why would you do that?</p> http://stackoverflow.com/questions/815782/what-is-a-more-unique-delimiter-than-comma-for-separating-strings/815814#815814 0 Answer by Frank Rosario for What is a more unique delimiter than comma for separating strings? Frank Rosario 2009-05-02T22:46:19Z 2009-05-02T22:46:19Z <p>I prefer to use a combination of characters that would not likely be entered a by a normal person as my delimiter when possible. For example, I've used ")^&amp;^(" and set it up as a const "cDelimiter" in my code; then concatenated all of my fields with that. By using a small unique string, I greatly reduce the likely hood of the user accidentally entering my delimiter. The likely hood of a user entering a | or a ~ is admittedly unlikely, but it doesn't mean it won't happen.</p> http://stackoverflow.com/questions/805942/vbs-combining-consts/805966#805966 6 Answer by Frank Rosario for vbs combining consts Frank Rosario 2009-04-30T08:49:17Z 2009-04-30T08:49:17Z <p>If I recall correctly from my VBS days; you can't do that in VBS. A constant can only be set to a literal.</p> http://stackoverflow.com/questions/805168/what-is-a-strictly-typed-language/805200#805200 2 Answer by Frank Rosario for What is a strictly typed language? Frank Rosario 2009-04-30T03:01:49Z 2009-04-30T03:11:12Z <p>Strictly typed languages enforce typing on all data being interacted with.</p> <p>For example</p> <pre><code>int i = 3 string s = "4" </code></pre> <p>From here on out, whenever you use i, you can only interact with it as an integer type. That means you are restricted to using with methods that work with integers.</p> <p>As for string s you can only interact with it as a string type. You can concatenate it with other string, print it out, etc. However, even though it contains that character "4", you cannot add to an integer without using some function to convert the string to an integer type.</p> <p>In a dynamically typed language, you have a lot more flexibility:</p> <pre><code>i = 3 s = "4" </code></pre> <p>Types are inferred; meaning they are determined based on the data they are set to. i is obstensively an number type, and s is a string type, based on how they were set. However when you have i + s; type inference is used and depending on your environment, you may get the result i + s = 7; since s was implicitly converted to an int by the programming environment. However, this operation could also result in the string "34", if the environment infers an int + string should equal a concatenation operation vs an addition operation.</p> <p>This flexibility has made loosely typed languages very popular. However, because these type inference can sometimes produce unexpected results; they can also result in more bugs in your code if you're not careful. In a typed language, if I perform i + s, I am forced by the compiler to change s into an int first, so I know by adding i to s, I will get 7 because I was forced to convert s to an explicit int first. In a dynamic language, it attempts to do this for you implicitly, but the results may not be what you were expecting, since anything can be in i or s; a string, a number, or even an object. You don't know until you run your code and see what happens.</p> http://stackoverflow.com/questions/804161/how-do-i-remove-the-height-style-from-a-div-using-jquery/804174#804174 0 Answer by Frank Rosario for How do I remove the height style from a DIV using jQuery? Frank Rosario 2009-04-29T20:43:57Z 2009-04-29T20:43:57Z <pre><code>$('div#someDiv').attr("height",""); </code></pre> http://stackoverflow.com/questions/790127/is-iuser-is-a-good-name-for-an-interface/790142#790142 0 Answer by Frank Rosario for Is IUser is a good name for an interface? Frank Rosario 2009-04-26T02:31:19Z 2009-04-26T02:31:19Z <p>Personally, my preference is to specify token attributes, follow them with an underscore, then give the proper name.</p> <p>Using your example, I would have IUser as i_User.</p> <p>But naming conventions are a kind of personal thing for a team or just one programmer. If your sticking with your convention, I don't see why IUser can't be iUser; which certainly doesn't look like "loser".</p> http://stackoverflow.com/questions/784182/asp-net-continuous-learning/784204#784204 3 Answer by Frank Rosario for ASP.NET Continuous learning Frank Rosario 2009-04-24T01:28:09Z 2009-04-24T02:34:08Z <p>I'm in the same boat; been a .Net developer for 6 years. While I do have a CS degree, I don't have any formal training in ASP.Net; I learn it on the job as projects come up.</p> <p>I found the best way to figure out what to learn is to keep your eye on .Net developer blogs. Some I follow:</p> <p>David Hayden <a href="http://www.davidhayden.com/blog.aspx" rel="nofollow">http://www.davidhayden.com/blog.aspx</a> CodingHorror.com (you might be familiar with it ;-) Scott Hanselman <a href="http://www.hanselman.com/blog/" rel="nofollow">http://www.hanselman.com/blog/</a></p> <p>Usually from reading their blogs, I pick up on what the latest .Net solutions that are out there and point me in the direction of new tech I should look into further.</p> <p>Overall though, I can only give you the advice I give junior devs at my company; realize you can't possibly be expected to know everything but always be eager to learn. Good luck!</p> http://stackoverflow.com/questions/782603/large-sets-of-sql-parameters-in-query/782625#782625 1 Answer by Frank Rosario for Large sets of sql parameters in query Frank Rosario 2009-04-23T16:55:53Z 2009-04-23T16:58:01Z <p>Syntax might be off slightly, as my server to server MSSQL is rusty, but...</p> <pre><code>Select * from table where id in (select id from [Server_Two\Some_Instance].[SomeDatabase].[user].table2) </code></pre> http://stackoverflow.com/questions/769372/custom-error-handling-for-a-specific-page-in-asp-net 0 Custom error handling for a specific page in ASP.Net Frank Rosario 2009-04-20T17:52:01Z 2009-04-20T18:51:57Z <p>Hello friends.</p> <p>On a site I run, I have 404's and 500 errors mapped to redirect to a custom error page for end users; using the following code in my web.config:</p> <pre><code> ... ... &lt;system.web&gt; &lt;customErrors defaultRedirect="/404/default.aspx" mode="RemoteOnly"&gt; &lt;error statusCode="404" redirect="/404/default.aspx" /&gt; &lt;/customErrors&gt; ... ... </code></pre> <p>However, I have one specific page that I do not want redirected; a health check page to make sure the site is 100% operational. I tried setting a location specific custom error handler using the code below in my web.config:</p> <pre><code> ... ... &lt;/system.web&gt; &lt;location path="health.aspx"&gt; &lt;system.web&gt; &lt;customErrors defaultRedirect="" mode="RemoteOnly"&gt;&lt;/customErrors&gt; &lt;/system.web&gt; &lt;/location&gt; ... ... </code></pre> <p>However, it doesn't seem to work. When I rename health.aspx to something else like badhealth.aspx, then make a request, I expect to get a generic 404 error via the Yellow Screen of Death page. Similarly, by intentionally changing the code to throw an error, I should get 500 error via the YSOD page. In both cases, I end up being redirected to our custom 404 page, rathen then getting a YSOD. Thoughts?</p> <p>Any assistance is greatly appreciated.</p> <p>Thanks all, - Frank</p> http://stackoverflow.com/questions/769372/custom-error-handling-for-a-specific-page-in-asp-net/769616#769616 0 Answer by Frank Rosario for Custom error handling for a specific page in ASP.Net Frank Rosario 2009-04-20T18:51:57Z 2009-04-20T18:51:57Z <p>Nevermind, we solved the issue. It seems when you have a location specific customError directive; if you leave the defaultRedirect as "", it will default to the sitewide defaultRedirect URL. The solution was simply to turn off CustomError handling for this specific path.</p> <p>Thanks anyway, Jose.</p> http://stackoverflow.com/questions/752473/url-rewriting-in-response-filter/765920#765920 0 Answer by Frank Rosario for URL Rewriting in Response Filter Frank Rosario 2009-04-19T19:14:16Z 2009-04-19T19:14:16Z <p>How are your hyperlinks being generated? If you're using ASP.Net link controls to generate your URLs; you could just subclass the link control with a custom link control. This new link control, upon detecting the proxy, would rewrite your links on the fly; so the links are altered as needed before the HTML is even generated.</p> http://stackoverflow.com/questions/480677/install-asp-net-mvc-without-administrator-rights 0 Install ASP.Net MVC without administrator rights? Frank Rosario 2009-01-26T17:46:25Z 2009-02-12T20:08:09Z <p>Unfortunately, my company's IT policy doesn't allow me admin privileges to my own machine. However, I want to start working ASP.Net MVC; but the installer won't install the framework w/o admin rights. Is there anyway I can install MVC manually; like copying relevant DLLs somewhere, etc. Any constructive advice is greatly appreciated.</p> http://stackoverflow.com/questions/357672/use-xsl-to-generate-dynamic-xsl-that-is-executed-within-the-same-script 1 Use XSL to generate dynamic XSL that is executed within the same script? Frank Rosario 2008-12-10T21:29:56Z 2008-12-11T14:22:25Z <p>Hello all,</p> <p>I want to dynamically create variables with dynamic names for later use in my transform, but to do this I'd need to dynamically generate XSL and then run it in the same script.</p> <p>This is just a rough pseudo code example of what I'm looking for.</p> <pre><code> &lt;xsl:for-each select="//constants/constant" &gt; &lt;xsl:variable &gt; &lt;xsl:attribute name="name"&gt; &lt;xsl:value-of select="@name"/&gt; &lt;/xsl:attribute&gt; &lt;xsl:attribute name="select"&gt; &lt;xsl:value-of select="@value"/&gt; &lt;/xsl:attribute&gt; &lt;/xsl:variable&gt; &lt;/xsl:for-each&gt; </code></pre> <p>Can I use XSL to dynamically build XSL to be run later in the same script?</p> <p>Note: our XML is transformed via a batch process running a CL XSL transform engine; so just referencing an XSL stylesheet in the XSL document isn't an option.</p> http://stackoverflow.com/questions/357672/use-xsl-to-generate-dynamic-xsl-that-is-executed-within-the-same-script/358352#358352 1 Answer by Frank Rosario for Use XSL to generate dynamic XSL that is executed within the same script? Frank Rosario 2008-12-11T03:19:12Z 2008-12-11T03:19:12Z <p>Hi Dimitre,</p> <p>First of all, thanks for your terrific response; I learned quite a lot from it. My XSL is at an intermediate level at best; your pointer was a real help, where many google searches failed me.</p> <p>My follow up question is this; <strong>is it possible to execute my dynamically generated XSL after generating it in the same script at runtime</strong>? I know I could just dump the output to another XSL stylesheet and then run another XSL transform; but that would require a significant reworking of our batch script and I want to see what my options are.</p> <p>To give a similar example of what I'm trying to accomplish: if I was doing something similar in Javascript for example; I could simply generate the Javascript to declare my variables in a string and then call <em>eval('var SomeJSVariable1 = "example"')</em> and I would now have a variable available to me called <em>SomeJSVariable1</em>. This type of functionality is what I'm trying to achieve in XSL.</p> <p>Here's an example of what I have so far</p> <p>input xml:</p> <pre><code>&lt;resgroup id="constants" &gt; &lt;resbundle&gt; &lt;res id="var1"&gt;var1Value&lt;/res&gt; &lt;/resbundle&gt; &lt;resbundle&gt; &lt;res id="var2"&gt;var2Value&lt;/res&gt; &lt;/resbundle&gt; &lt;/resgroup&gt; </code></pre> <p>XSL:</p> <pre><code> &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:metaxsl="my:metaxsl" exclude-result-prefixes="metaxsl" &lt;xsl:namespace-alias result-prefix="xsl" stylesheet-prefix="metaxsl" /&gt; &lt;xsl:template name="BuildInstantiateConstantsTemplate_tmpl"&gt; &lt;metaxsl:template match="/" name="instantiateConstants_tmpl"&gt; &lt;metaxsl:template&gt; &lt;xsl:for-each select="//resgroup[@id='constants']/resbundle/res"&gt; &lt;metaxsl:variable&gt; &lt;xsl:attribute name="name"&gt; &lt;xsl:value-of select="@id" /&gt; &lt;/xsl:attribute&gt; &lt;xsl:attribute name="select"&gt; &lt;xsl:value-of select="text()" /&gt; &lt;/xsl:attribute&gt; &lt;/metaxsl:variable&gt; &lt;/xsl:for-each&gt; &lt;/metaxsl:template&gt; &lt;/metaxsl:template&gt; &lt;/xsl:template&gt; &lt;xsl:template match="/"&gt; &lt;xsl:call-template name="BuildInstantiateConstantsTemplate_tmpl" /&gt; &lt;/xsl:template&gt; </code></pre> <p>The idea being I generate the *instantiateConstants_tmpl* dynamically with all my global variable declarations, then call my newly generated template *instantiateConstants_tmpl* to instantiate them in the script. Is something like this possible in XSL?</p> http://stackoverflow.com/questions/270288/can-you-enable-http-compression-in-iis-6-without-restarting-iis 2 Can you enable HTTP compression in IIS 6 without restarting IIS? Frank Rosario 2008-11-06T21:10:24Z 2008-11-06T21:46:47Z <p>Hello -</p> <p>I'm currently optimizing the performance on my company's site; when it was taking 6-10 seconds to download 2MB+ of our homepage and assets (the site is mostly Flash with a lot of media, so it's not 2MB of HTML and viewstate). There are a lot of things that will need to be done to get this download size down; but one thing I definitely want to do is enable HTTP compression to compress our static content, specifically XML, CSS, and JS; I don't imagine compression will do much for the SWFs and JPGs.</p> <p>I want to enable this on just our staging site so I can do some server testing and benchmarking. This means I'm going to have to do some Metabase editing, since IIS 6 doesn't allow you to set compression on an individual site via IIS manager. The problem with that is the Metabase is locked by IIS so I can't save; and even if I save the edits, I'm required to restart IIS for the changes to take affect; which will take down other live sites hosted on the same server. Is there anyway to enable compression for one site without restarting IIS? I don't mind restarting our staging site; I just don't want this work to take down other sites on the server.</p> <p>Any assistance is greatly appreciated.</p> http://stackoverflow.com/questions/270287/editing-web-config-programatically/270318#270318 1 Answer by Frank Rosario for Editing Web.config programatically Frank Rosario 2008-11-06T21:17:39Z 2008-11-06T21:17:39Z <p>In theory; you could just generate a web config file programmatically and with some templating to make it easy.</p> <p>However, if you're trying to edit your web.config from within the site; it's <strong>highly</strong> recommended you don't. At the very least; you'd trigger an app reset every time you updated it; which would be especially bad if you're using in-process sessions.</p> <p>As Anders asked, what is it you're trying to do?</p> http://stackoverflow.com/questions/241526/strip-wordml-from-a-string 2 Strip WordML from a string Frank Rosario 2008-10-27T21:59:20Z 2008-10-28T13:57:04Z <p>Hi,</p> <p>I've been tasked with build an accessible RSS feed for my company's job listings. I already have an RSS feed from our recruiting partner; so I'm transforming their RSS XML to our own proxy RSS feed to add additional data as well limit the number of items in the feed so we list on the latest jobs.</p> <p>The RSS validates via feedvalidator.org (with warnings); but the problem is this. Unfortunately, no matter how many times I tell them not to; my company's HR team directly copies and pastes their Word documents into our Recruiting partners CMS when inserting new job listings, leaving WordML in my feed. I believe this WordML is causing issues with Feedburner's BrowserFriendly feature; which we want to show up to make it easier for people to subscribe. Therefore, I need to remove the WordML markup in the feed.</p> <p>Anybody have experience doing this? Can anyone point me to a good solution to this problem?</p> <p>Preferably; I'd like to be pointed to a solution in .Net (VB or C# is fine) and/or XSL.</p> <p>Any advice on this is greatly appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237862#237862 Comment by Frank Rosario on What is your best programmer joke? Frank Rosario 2009-05-20T02:49:19Z 2009-05-20T02:49:19Z This made me laugh out loud in the office http://stackoverflow.com/questions/845090/focus-is-not-coming-in-javascript/845210#845210 Comment by Frank Rosario on Focus is not coming in javascript Frank Rosario 2009-05-10T12:49:48Z 2009-05-10T12:49:48Z Isn't the keyword &quot;debugger&quot;, not &quot;debug&quot;? http://stackoverflow.com/questions/815782/what-is-a-more-unique-delimiter-than-comma-for-separating-strings/815814#815814 Comment by Frank Rosario on What is a more unique delimiter than comma for separating strings? Frank Rosario 2009-05-02T23:57:47Z 2009-05-02T23:57:47Z My answer assumed that the delimiting was being done by the code itself, not left to the user to delimit the fields. The point of my answer was the user would never be expected to enter a string such as provided in my example. http://stackoverflow.com/questions/815806/mappers-reducers-filters/815817#815817 Comment by Frank Rosario on Mappers, Reducers, FIlters Frank Rosario 2009-05-02T23:01:13Z 2009-05-02T23:01:13Z Charlie - Small, well written answers like this make me wish I could up vote your answer twice. http://stackoverflow.com/questions/762450/what-are-the-best-3rd-party-c-libraries-for-searching-html/762591#762591 Comment by Frank Rosario on What are the best 3rd Party C# Libraries for searching HTML? Frank Rosario 2009-04-19T19:21:05Z 2009-04-19T19:21:05Z That's a good answer Bob. My only thing is, you should return a the given HTML string in a &lt;span&gt;{0}&lt;/span&gt; block, not a &lt;style&gt; block; as those are only used to define CSS; not assign a class to a given HTML block.