User Mitchel Sellers - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T07:35:34Zhttp://stackoverflow.com/feeds/user/13279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790677/why-would-bulk-inserts-cause-an-asp-net-application-to-become-unresponsive/1790703#17907031Answer by Mitchel Sellers for Why would bulk Inserts cause an ASP.net application to become Unresponsive?Mitchel Sellers2009-11-24T15:13:08Z2009-11-24T15:13:08Z<p>My first guess would be that you are using up available connections to the database with the insert operations that you are doing and the web applications are waiting to get a connection to the database.</p>
<p>You have a few options.</p>
<ol>
<li>Look in SSMS and see what you have for open and active connections under regular load and when doing the inserts see if that is a problem.</li>
<li>Use a profiling tool such as ANTS profiler to see what is going on with the web application at the time of the slow down, it might help pinpoint the issue.</li>
<li>You could also try manually executing the queries that the web application is using, on the SQL Server and see if you notice a similar behavior.</li>
</ol>
<p>The other option, a bit less likely, but it could be that the web application doing the bulk insert, it taking all of the CPU time from the other web applications on the server, preventing use. If you haven't done so already, split out the application to its own pool so you can monitor its load.</p>
http://stackoverflow.com/questions/1790678/why-doesnt-fastbitmap-get-garbage-collected/1790689#17906891Answer by Mitchel Sellers for Why doesn't FastBitmap get garbage collected?Mitchel Sellers2009-11-24T15:10:43Z2009-11-24T15:10:43Z<p>At a first glance i would say that you want to look into implementing the IDisposable interface on the class so that you can be sure to free up resources that are being used by the class.</p>
http://stackoverflow.com/questions/1785536/page-clientscript-registerclientscriptblock-has-to-be-called-from-code-behind/1785561#17855610Answer by Mitchel Sellers for page.ClientScript.RegisterClientScriptBlock has to be called from code-behind?Mitchel Sellers2009-11-23T19:58:50Z2009-11-23T19:58:50Z<p>That should work within your page, but not 100% sure why you would need to do it that way.</p>
<p>If you are having problems, we would need to see the full method.</p>
http://stackoverflow.com/questions/1783852/detect-us-military-email-address/1783877#17838770Answer by Mitchel Sellers for detect us military email addressMitchel Sellers2009-11-23T15:31:37Z2009-11-23T15:31:37Z<p>As far as I know, .mil is the only on that is officially supported by the US Government, but not 100% sure.</p>
<p>Depending on what you want, you would have to keep an eye out for sites such as this as well - <a href="http://www.usmilitary.com/" rel="nofollow">http://www.usmilitary.com/</a></p>
http://stackoverflow.com/questions/1773437/the-right-way-to-kill-off-near-dead-hosted-applications/1773478#17734783Answer by Mitchel Sellers for The right way to kill off near-dead hosted applications?Mitchel Sellers2009-11-20T21:53:24Z2009-11-20T21:53:24Z<p>I would say that typically, depending on the nature of your application A combination of 1, 2, and 3 would be best.</p>
<p>First you start out by saying, "xyz will not be supported by our development teams after xxx". Then in the same communication let them know, "Additionally 6 months after the end of support date xyz will be taken offline" Lastly, give them a route to migrate to another solution. "We understand how important xyz is to you, and to help you continue to have a solution for ____ we have worked with yyyy to help create a migration plan..."</p>
<p>Following this approach you are going to be able to make a clean break, yes it will take effort, but you will put forth a good-faith effort to your users and should look good to the overall, even with discontinuing the service.</p>
http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery8Determine if element has CSS class with jQueryMitchel Sellers2008-11-04T20:00:58Z2009-11-20T20:55:36Z
<p>I'm working with jQuery and looking to see if there is an easy way to determine if the element has a specific css class associated with it.</p>
<p>I have the id of the element, and the css class that I'm looking for. I just need to be able to in an if statement do a comparison based on the existance of that class on the element.</p>
http://stackoverflow.com/questions/1765277/c-net-namespace-name-does-not-exist-in-namespace-error-only-when-using-is-outs/1765291#17652910Answer by Mitchel Sellers for C#.NET Namespace name does not exist in namespace error - only when using is outside local namespace directive - why?Mitchel Sellers2009-11-19T18:02:03Z2009-11-19T18:02:03Z<p>Yes, most likely you have an unusual value set for the "Default Namespace" in your project properties. I would validate the project configuration.</p>
http://stackoverflow.com/questions/1765190/how-to-efficiently-write-code-and-debug-windows-service-project-in-visual-studio/1765282#17652821Answer by Mitchel Sellers for How to efficiently write code and debug windows service project in visual studio?Mitchel Sellers2009-11-19T18:00:30Z2009-11-19T18:00:30Z<p>As the first comment mentioned there are many other items out there...but I wanted to put a little light on this as well.</p>
<ol>
<li>You can use a post build event to manage the process of installing after build etc, so that you don't have any effort needed there.</li>
<li>You can use <code>Debugger.Break()</code> to be able to start debugging right away. This way you are not playing the "Attach" game.</li>
</ol>
<p>These will at least get you going, and help reduce the "pain" you experience.</p>
http://stackoverflow.com/questions/1754067/how-to-apply-class-to-first-button-of-the-div/1754075#17540754Answer by Mitchel Sellers for How to apply class to first button of the div?Mitchel Sellers2009-11-18T06:37:40Z2009-11-18T06:37:40Z<p>You can add a second class like this.</p>
<pre><code><div class="button-container">
<button class="save SecondClass" />
<button class="reset" />
</div>
</code></pre>
http://stackoverflow.com/questions/1749930/writing-file-to-users-giving-sporadic-error-in-ie0Writing file to users giving sporadic error in IEMitchel Sellers2009-11-17T16:11:00Z2009-11-17T16:29:46Z
<p>I have a very interesting issue with only specific IE implementations. I have an ASPX page that is used to write files down to the user, as part of the process the page uses the following code to write the file to the user.</p>
<pre><code>Response.Clear();
Response.AddHeader("content-disposition", "attachment;filename=download" + System.IO.Path.GetExtension(oInfo.SupportingFilePath));
Response.ContentType = "application/octet-stream";
Response.WriteFile(Server.MapPath(oInfo.SupportingFilePath));
Response.End();
</code></pre>
<p>In 99.5% of the cases this works just fine, however, in certain rare circumstances within IE only on specific machines, the user is prompted to download the .aspx page, and/or is given an error message.</p>
<p>Anyone have an idea of what is going on here?</p>
http://stackoverflow.com/questions/1736867/need-workaround-for-net-master-page-name-mangling/1736895#17368953Answer by Mitchel Sellers for Need workaround for .Net Master Page Name ManglingMitchel Sellers2009-11-15T07:37:06Z2009-11-15T07:37:06Z<p>The only "supported" way to do this is to NOT use elements that are defined as "runat="server"". Otherwise, .NET 4.0 is the first time that you are given a consistent, supported mechanism to make this change.</p>
<p>You might be able to get around this via other means, but nothing that is going to be easy/quick to implement. </p>
http://stackoverflow.com/questions/1736882/how-can-i-build-application-userappdatapath-inside-class-libraries-that-dont-ha/1736890#17368900Answer by Mitchel Sellers for How can I build Application.UserAppDataPath inside class libraries (that don't have an Application object)?Mitchel Sellers2009-11-15T07:32:54Z2009-11-15T07:32:54Z<p>Well, if you don't have an application object that you can use, you would start out with what you mentioned to get the "ApplicationData" folder path, then append the default folder structure on to that path.</p>
<p>CompanyName/ProductName</p>
<p>is the default additional items</p>
http://stackoverflow.com/questions/175247/microsoft-certified-partner-important-to-developers6Microsoft Certified Partner? Important to Developers?Mitchel Sellers2008-10-06T17:14:33Z2009-11-09T14:28:01Z
<p>My company has recently became a Microsoft Certified Partner and from a business perspective it helps us greatly as it provides the software licenses needed to continue development in a much more cost effective manner, and the added benefit of marketing abilities.</p>
<p>Now, I know that Microsoft Certified Partner status is important to many clients, but from a developers perspective, is it something that as a .NET developer you would look for when selecting an organization to potentially work for? Is it seen as a benefit where you know at a minimum that the organization will have access to the tools needed for the job?</p>
http://stackoverflow.com/questions/1676503/what-is-the-difference-between-httpcontext-current-response-and-page-response/1676548#16765487Answer by Mitchel Sellers for What is the difference between HttpContext.Current.Response and Page.Response?Mitchel Sellers2009-11-04T20:55:37Z2009-11-04T20:55:37Z<p><code>Page.Response</code> is simply a mapping to the HTTPContext when you are within the context of an HTML page.</p>
<p><code>HttpContext.Current.Response</code> simply allows you to get to the current context, when you are not in a page. ALlowing you to access the context from locations other than the actual page responding to the request.</p>
<p>As for when to use each? Well you "Can" use HttpContext.Current.Response everywhere if you want, but typically people will use Page.Response when on a page/usercontrol.</p>
http://stackoverflow.com/questions/1663929/does-anyone-know-how-to-enter-list-of-website-resources-and-output-an-xml-doc-for/1663972#16639720Answer by Mitchel Sellers for Does anyone know how to enter list of website resources and output an xml doc for Flash useMitchel Sellers2009-11-02T21:55:19Z2009-11-02T21:55:19Z<p>Using MSExcel I would use the Concatenate() function to manually build out the XML for each row, as a quick and dirty solution. You should be able to do this with OpenOffice as well.</p>
http://stackoverflow.com/questions/1663925/two-sum-queries-together/1663957#16639570Answer by Mitchel Sellers for Two SUM queries togetherMitchel Sellers2009-11-02T21:53:04Z2009-11-02T21:53:04Z<p>My guess is that it is something related to the fact that you have records in both for that group. Try the following (MSSQL Server)</p>
<pre><code>SELECT s.Slot, s.SlotID, ISNULL(SUM(e.Attendees), 0) AS Attendees1,
ISNULL(SUM(CASE WHEN x. Attendees IS NULL THEN 0 ELSE x.Attendees END), 0) AS Attendees2
FROM Slots AS s LEFT OUTER JOIN
Events AS e ON e.MainSlot = s.SlotID LEFT OUTER JOIN
Events AS x ON x.ExtraSlot = s.SlotID
GROUP BY s.Slot, s.SlotID
</code></pre>
http://stackoverflow.com/questions/1645143/asp-net-validationsummary-doesnt-display-any-contents/1645182#16451822Answer by Mitchel Sellers for ASP.NET: ValidationSummary doesn't display any contentsMitchel Sellers2009-10-29T17:03:54Z2009-10-29T17:06:37Z<p><code>Text</code> property's value is what is displayed beside the control. You need to set the <code>ErrorMessage</code> property of the validators to control what is shown in the summary.</p>
http://stackoverflow.com/questions/1624632/how-to-find-the-days-compare-with-date/1624666#16246660Answer by Mitchel Sellers for How to find the days compare with date?Mitchel Sellers2009-10-26T13:04:18Z2009-10-26T13:04:18Z<p>Well, you can get it into a DateTime format, then once you do that, you could do something like this for a where clause.</p>
<pre><code>WHERE DATEPART(dw, DateColumn) <> 7
</code></pre>
<p>This assumes that your SQL Server is configured for english by default.</p>
http://stackoverflow.com/questions/1613739/can-we-have-generalized-connection-string-for-sql-server-and-sql-server-express/1613769#16137691Answer by Mitchel Sellers for Can we have generalized connection string for SQL Server and SQL Server Express?Mitchel Sellers2009-10-23T14:16:32Z2009-10-23T14:16:32Z<p>You can use the same connection string format to connect to both SQL Server Express and full editions.</p>
<p>Just make sure that you are going through with the proper string, something like this would be common, for DEFAULT installations.</p>
<pre><code>Data Source=MachineName\SQLExpress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
</code></pre>
<p>and for full SQL Server</p>
<pre><code>Data Source=MachineName;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;
</code></pre>
http://stackoverflow.com/questions/86553/working-with-pop-imap-email-and-net3Working with Pop/IMAP Email and .NET?Mitchel Sellers2008-09-17T19:14:42Z2009-10-21T22:09:06Z
<p>.NET provides a great library for working with SMTP for sending messages, however, there is not an implementation of a Pop3 client, or IMAP client for working with receiving e-mail from a mail host.</p>
<p>Does anyone know of a good component that can provide Pop, IMAP, or both support? I know that code project has implementations, but from my experience finding a "good" one is hard.</p>
http://stackoverflow.com/questions/1596283/co-worker-pushing-for-a-scary-and-smelly-software-solution-need-help/1596344#15963442Answer by Mitchel Sellers for Co-Worker pushing for a scary and smelly software solution, need help!Mitchel Sellers2009-10-20T18:05:27Z2009-10-20T18:05:27Z<p>Does this sound like a bad idea? Maybe.</p>
<p>If you are creating something where the rules can change on a day to day basis, he "might" be going down a right path, you can get around the fact that you cannot unload assemblies, by creating a separate appdomain.</p>
<p>However, without knowing more intimate details of your implementation goals, it will be hard to say.</p>
http://stackoverflow.com/questions/1595118/is-it-necessary-to-free-the-memory-in-net-as-if-in-vb6/1595136#15951360Answer by Mitchel Sellers for Is it necessary to free the memory in .Net as if in VB6?Mitchel Sellers2009-10-20T14:44:00Z2009-10-20T14:44:00Z<p>The biggest concern with .NET is to clear un-managed resources. When your application exits the others should be ok. But personally I'd recommend reading up on .NET Garbage Collection a bit from the MSDN documentation just so you are a bit more familiar with it.</p>
http://stackoverflow.com/questions/1588948/how-do-i-change-the-default-application-config-setting-in-different-deployments/1588960#15889600Answer by Mitchel Sellers for How do I change the default application config/setting in different deployments?Mitchel Sellers2009-10-19T14:22:01Z2009-10-19T14:22:01Z<p>Your best bet here is to create a Custom COnfiguration section for your application, set defaults for everything, then if the users want to override anything they can add the configuration section to their app.config or web.config file.</p>
<p>It is very easy, and quick to do. <a href="http://msdn.microsoft.com/en-us/library/2tw134k3.aspx" rel="nofollow">Here is a step-by-step tutorial</a>.</p>
<p>This follows standards that have been established with .NET and should be very familiar for any users.</p>
http://stackoverflow.com/questions/1588924/what-are-the-best-practices-when-shifting-old-legacy-web-applications-to-new-ones/1588942#15889423Answer by Mitchel Sellers for What are the best practices when shifting old legacy web applications to new ones (specially about broken links problem)?Mitchel Sellers2009-10-19T14:19:32Z2009-10-19T14:19:32Z<p>Overall, if possible you want to do a 301 redirect on old URL's if possible to get the users to migrate over to the new site. By doing 301 redirects, you will ensure that any pagerank etc, will carry over with the new page.</p>
<p>How you do this is up to you, you can use Mod_Rewrite to do it, or if you are changing page structures, simply leave old pages in place and modify them to do the 301 redirect.</p>
http://stackoverflow.com/questions/1588908/creating-a-collection-of-all-classes-that-inherit-from-iblahblah/1588928#15889282Answer by Mitchel Sellers for Creating a collection of all classes that inherit from IBlahblahMitchel Sellers2009-10-19T14:17:40Z2009-10-19T14:17:40Z<p>Yes, this is possible, this other stack overflow <a href="http://stackoverflow.com/questions/699852/how-to-find-all-the-classes-which-implement-a-given-interface">post</a> gives the solution with LINQ.</p>
http://stackoverflow.com/questions/1575444/onlick-on-link-display-only-div-make-other-body-balck-or-shaded/1575635#15756350Answer by Mitchel Sellers for onlick on link display only div, make other body balck or shadedMitchel Sellers2009-10-15T23:17:12Z2009-10-15T23:17:12Z<p>It sounds like you really want a "Modal Dialog" type of display. There are a number of JQuery and other methods to do this.</p>
<p>Here is a good one that I've used before, <a href="http://www.ericmmartin.com/projects/simplemodal/" rel="nofollow">Simple Modal</a></p>
http://stackoverflow.com/questions/1575509/calling-custom-urlauthorization-module-with-every-page-load/1575621#15756211Answer by Mitchel Sellers for Calling custom UrlAuthorization module with every page loadMitchel Sellers2009-10-15T23:09:44Z2009-10-15T23:09:44Z<p>As long as you register your HTTPModule within the web.config, IIS will set it up for you.</p>
<p>Init is called as the initialization of your module, then you add the handler to the respective context event to handle, therefore it will respond to all requests.</p>
http://stackoverflow.com/questions/1575516/securing-net-web-services-for-flex-flash-air-applications/1575604#15756041Answer by Mitchel Sellers for Securing .net web services for flex/flash/AIR applicationsMitchel Sellers2009-10-15T23:03:03Z2009-10-15T23:03:03Z<p>Well, the fast and easy way would present a few options.</p>
<ol>
<li><p>On every call pass the username/password via a header, and make it common place to re-validate.</p></li>
<li><p>Go with a "session" type setup, have them login once, give them a secure token, and they pass that for the rest of the time.</p></li>
</ol>
<p>Those are at least the "fastest" ways of doing this. You have other options as well, but they are not as straight forward. In all of my WS integration processes these are the two most common.</p>
http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-class4LINQ to XML And Distinct Custom ClassMitchel Sellers2009-10-14T22:35:02Z2009-10-15T15:30:58Z
<p>I have a very interesting LINQ question. I have a document, that I am trying to filter results on, but to filter, I am matching on a REGEX result from one element of the XML.</p>
<p>I have the following, working LINQ to XML to get the individual data that I'm looking for.</p>
<pre><code>Dim oDocument As XDocument
oDocument = XDocument.Load("test.xml")
Dim results = (From x In oDocument.Descendants.Elements("ROW") _
Select New With {.ApplicationName = GetApplicationName(x.Element("Message")), _
.EventId = x.Element("EventId")}).Distinct
</code></pre>
<p>However, the .Distinct doesn't do what I want, it still shows all combinations of "ApplicationName" and "EventId".</p>
<p>What I need in the end is a distinct list of results, in a new object with the application name, and event id from the XML.</p>
<p>The "GetAPplicationName" is a function that parses the value looking for a regex match.</p>
<p>Any pointers?</p>
<p>Sample XML</p>
<pre><code><ROOT>
<ROW>
<EventId>1</EventId>
<CreatedTimestamp>2009-10-28</CreatedTimestamp>
<Message>There is a bunch
of
garbled
inforamtion here and I'm trying to parse out a value
Virtual Path: /MyPath then it continues on with more junk after the
message, including extra stuff
</Message>
<!--Other elements removed for brevity -->
</ROW>
<ROW>
<EventId>1</EventId>
<CreatedTimestamp>2009-10-28</CreatedTimestamp>
<Message>
There is a bunch
of
garbled
inforamtion here and I'm trying to parse out a value
Virtual Path: /MyPath then it continues on with more junk after the
message, including extra stuff
</Message>
<!--Other elements removed for brevity -->
</ROW>
</ROOT>
</code></pre>
<p>From here I want the distinct /MyPath and EventId (In this case 1 entry with /MyPath and 1.</p>
<p>My GetApplicationNameMethod, on this sample will return /MyPath</p>
http://stackoverflow.com/questions/1560300/what-file-types-extensions-would-you-allow-in-for-a-document-management-applicati/1560315#15603151Answer by Mitchel Sellers for What file types/extensions would you allow in for a document management application?Mitchel Sellers2009-10-13T13:37:40Z2009-10-13T13:37:40Z<p>Don't forget the rest of the new MS Office formats, xlsx, pptx and similar files.</p>
<p>As for security risk, it depends on where/how these files will be accessed. From a document management standpoint, XML wouldn't be something that I would assume by default, but I could see it needed.</p>
<p>I wouldn't do a wildcard exclude list, unless you are protecting the serving of the content. </p>
http://stackoverflow.com/questions/1790677/why-would-bulk-inserts-cause-an-asp-net-application-to-become-unresponsive/1790703#1790703Comment by Mitchel Sellers on Why would bulk Inserts cause an ASP.net application to become Unresponsive?Mitchel Sellers2009-11-24T15:45:08Z2009-11-24T15:45:08ZBased on your comments then, I would recommend item 2 from my list....as that is about the only thing that makes sense.http://stackoverflow.com/questions/1790643/how-to-make-my-server-to-act-fastComment by Mitchel Sellers on How to make my server to act fastMitchel Sellers2009-11-24T15:04:46Z2009-11-24T15:04:46ZThis isn't a real question. You can do many things to optimize a system, but we need to know what you have, what you have configured, what you are running, where you are seeing issues and more.http://stackoverflow.com/questions/1749930/writing-file-to-users-giving-sporadic-error-in-ie/1749999#1749999Comment by Mitchel Sellers on Writing file to users giving sporadic error in IEMitchel Sellers2009-11-24T04:59:32Z2009-11-24T04:59:32ZTHanks, this was it!http://stackoverflow.com/questions/1765190/how-to-efficiently-write-code-and-debug-windows-service-project-in-visual-studio/1765282#1765282Comment by Mitchel Sellers on How to efficiently write code and debug windows service project in visual studio?Mitchel Sellers2009-11-20T21:47:48Z2009-11-20T21:47:48ZSure, in your init code put Debugger.Break(). That will trigger a popup for you to start debugging using Visual Studio!http://stackoverflow.com/questions/1749930/writing-file-to-users-giving-sporadic-error-in-ie/1749999#1749999Comment by Mitchel Sellers on Writing file to users giving sporadic error in IEMitchel Sellers2009-11-17T19:29:54Z2009-11-17T19:29:54ZWow, if this is the case, thanks....I'll have to try this.http://stackoverflow.com/questions/1663929/does-anyone-know-how-to-enter-list-of-website-resources-and-output-an-xml-doc-for/1663972#1663972Comment by Mitchel Sellers on Does anyone know how to enter list of website resources and output an xml doc for Flash useMitchel Sellers2009-11-04T20:52:38Z2009-11-04T20:52:38ZYes, the extra columns helps....
If this did help, don't forget to select it as the answer...http://stackoverflow.com/questions/1624632/how-to-find-the-days-compare-with-date/1624666#1624666Comment by Mitchel Sellers on How to find the days compare with date?Mitchel Sellers2009-10-26T16:23:29Z2009-10-26T16:23:29ZChris - Interesting must go check setting on our servers...http://stackoverflow.com/questions/1596283/co-worker-pushing-for-a-scary-and-smelly-software-solution-need-help/1596344#1596344Comment by Mitchel Sellers on Co-Worker pushing for a scary and smelly software solution, need help!Mitchel Sellers2009-10-21T13:49:54Z2009-10-21T13:49:54ZOh yes, aft first, second, third glance, this smells, but at the same time, without more detail we might be missing a key piece that requires something a bit smellyhttp://stackoverflow.com/questions/201525/what-is-the-proper-order-for-installing-microsoft-software-on-a-developer-worksta/201592#201592Comment by Mitchel Sellers on What is the proper order for installing Microsoft software on a developer workstation?Mitchel Sellers2009-10-19T15:37:04Z2009-10-19T15:37:04ZThe install order is the same, just do NOT install SQL with EITHER edition of Visual Studiohttp://stackoverflow.com/questions/1588957/showdialog-issue-on-closeComment by Mitchel Sellers on ShowDialog issue on CloseMitchel Sellers2009-10-19T14:23:45Z2009-10-19T14:23:45ZDo you have something in the close method of your form that is preventing it from finishing the close?http://stackoverflow.com/questions/1575516/securing-net-web-services-for-flex-flash-air-applications/1575604#1575604Comment by Mitchel Sellers on Securing .net web services for flex/flash/AIR applicationsMitchel Sellers2009-10-16T18:01:11Z2009-10-16T18:01:11ZYes, behind the scenes you could use the ASP.NET membership process for authorization if you want to.http://stackoverflow.com/questions/1575445/checkbox-in-templatefield-in-gridview-loses-checked-on-postbackComment by Mitchel Sellers on Checkbox in TemplateField in Gridview loses checked on postbackMitchel Sellers2009-10-15T23:12:58Z2009-10-15T23:12:58ZWhen is the page lifecycle is your method to assign being called?http://stackoverflow.com/questions/1575552/process-40m-of-documents-and-index-as-fast-as-possibleComment by Mitchel Sellers on Process 40M of documents (and index) as fast as possibleMitchel Sellers2009-10-15T22:59:59Z2009-10-15T22:59:59ZAre all documents the same? Can you do filtering first to remove the duplicates. Can you post some sample code of your process?http://stackoverflow.com/questions/1575558/problems-with-innerhtml-using-javascriptComment by Mitchel Sellers on Problems with innerHTML using JavascriptMitchel Sellers2009-10-15T22:58:03Z2009-10-15T22:58:03ZCan you post the surrounding HTML that "someElement" is inside?http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-class/1573132#1573132Comment by Mitchel Sellers on LINQ to XML And Distinct Custom ClassMitchel Sellers2009-10-15T16:08:18Z2009-10-15T16:08:18ZThanks for the info, I'm trying to figure out what I think of that syntax....(Still a bit rusty on the VB syntax in general, I'm more of a C# guy typically..)