User Mitchel Sellers - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:47:19Z http://stackoverflow.com/feeds/user/13279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1676503/what-is-the-difference-between-httpcontext-current-response-and-page-response/1676548#1676548 7 Answer by Mitchel Sellers for What is the difference between HttpContext.Current.Response and Page.Response? Mitchel Sellers 2009-11-04T20:55:37Z 2009-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#1663972 0 Answer by Mitchel Sellers for Does anyone know how to enter list of website resources and output an xml doc for Flash use Mitchel Sellers 2009-11-02T21:55:19Z 2009-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#1663957 0 Answer by Mitchel Sellers for Two SUM queries together Mitchel Sellers 2009-11-02T21:53:04Z 2009-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#1645182 2 Answer by Mitchel Sellers for ASP.NET: ValidationSummary doesn't display any contents Mitchel Sellers 2009-10-29T17:03:54Z 2009-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#1624666 0 Answer by Mitchel Sellers for How to find the days compare with date? Mitchel Sellers 2009-10-26T13:04:18Z 2009-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) &lt;&gt; 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#1613769 1 Answer by Mitchel Sellers for Can we have generalized connection string for SQL Server and SQL Server Express? Mitchel Sellers 2009-10-23T14:16:32Z 2009-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-net 3 Working with Pop/IMAP Email and .NET? Mitchel Sellers 2008-09-17T19:14:42Z 2009-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#1596344 2 Answer by Mitchel Sellers for Co-Worker pushing for a scary and smelly software solution, need help! Mitchel Sellers 2009-10-20T18:05:27Z 2009-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#1595136 0 Answer by Mitchel Sellers for Is it necessary to free the memory in .Net as if in VB6? Mitchel Sellers 2009-10-20T14:44:00Z 2009-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#1588960 0 Answer by Mitchel Sellers for How do I change the default application config/setting in different deployments? Mitchel Sellers 2009-10-19T14:22:01Z 2009-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#1588942 3 Answer by Mitchel Sellers for What are the best practices when shifting old legacy web applications to new ones (specially about broken links problem)? Mitchel Sellers 2009-10-19T14:19:32Z 2009-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#1588928 2 Answer by Mitchel Sellers for Creating a collection of all classes that inherit from IBlahblah Mitchel Sellers 2009-10-19T14:17:40Z 2009-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#1575635 0 Answer by Mitchel Sellers for onlick on link display only div, make other body balck or shaded Mitchel Sellers 2009-10-15T23:17:12Z 2009-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#1575621 1 Answer by Mitchel Sellers for Calling custom UrlAuthorization module with every page load Mitchel Sellers 2009-10-15T23:09:44Z 2009-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#1575604 1 Answer by Mitchel Sellers for Securing .net web services for flex/flash/AIR applications Mitchel Sellers 2009-10-15T23:03:03Z 2009-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-class 3 LINQ to XML And Distinct Custom Class Mitchel Sellers 2009-10-14T22:35:02Z 2009-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>&lt;ROOT&gt; &lt;ROW&gt; &lt;EventId&gt;1&lt;/EventId&gt; &lt;CreatedTimestamp&gt;2009-10-28&lt;/CreatedTimestamp&gt; &lt;Message&gt;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 &lt;/Message&gt; &lt;!--Other elements removed for brevity --&gt; &lt;/ROW&gt; &lt;ROW&gt; &lt;EventId&gt;1&lt;/EventId&gt; &lt;CreatedTimestamp&gt;2009-10-28&lt;/CreatedTimestamp&gt; &lt;Message&gt; 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 &lt;/Message&gt; &lt;!--Other elements removed for brevity --&gt; &lt;/ROW&gt; &lt;/ROOT&gt; </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#1560315 1 Answer by Mitchel Sellers for What file types/extensions would you allow in for a document management application? Mitchel Sellers 2009-10-13T13:37:40Z 2009-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/1560118/asyncfileupload-control/1560275#1560275 1 Answer by Mitchel Sellers for AsyncFileUpload Control Mitchel Sellers 2009-10-13T13:30:24Z 2009-10-13T13:30:24Z <p>You might try adding a "Regular Expression Validator" to the field, and see if you can use that to validate the file selected before the upload starts.</p> http://stackoverflow.com/questions/1560206/com-interop-how-to-consume-c-from-excel-or-access/1560232#1560232 2 Answer by Mitchel Sellers for com interop: how to consume c# from Excel or Access Mitchel Sellers 2009-10-13T13:25:02Z 2009-10-13T13:25:02Z <p>There are many books out there that might get you going. "Pro C# 2008" from Wrox has a great chapter on this.</p> <p>Also, here is a <a href="http://blogs.msdn.com/gabhan%5Fberry/archive/2008/04/07/writing-custom-excel-worksheet-functions-in-c%5F2D00%5Fsharp.aspx" rel="nofollow">MSDN blog</a> article about COM Visible to Excel. </p> http://stackoverflow.com/questions/1555810/regex-pattern-to-match-only-certain-characters/1555847#1555847 0 Answer by Mitchel Sellers for RegEx Pattern to Match Only Certain Characters Mitchel Sellers 2009-10-12T17:23:33Z 2009-10-12T19:15:02Z <p>I just tested this out, and it seems to work at least from my first round testing.</p> <pre><code>^[a-zA-Z 0-9\.\,\+\-]*$ </code></pre> http://stackoverflow.com/questions/1556058/how-to-access-the-current-web-page-outside-of-the-current-page/1556104#1556104 0 Answer by Mitchel Sellers for How to access the current [web] page (outside of the current page)? Mitchel Sellers 2009-10-12T18:22:40Z 2009-10-12T18:22:40Z <p>I think that you would need to work with something that took a "page" object in as a parameter, and from there, you could determine if the page that was passed is your master page. And do what you need from there....</p> <p>But that adds quite a bit of overhead.</p> <p>The real question here is what are you trying to avoid? Trying to get rid of session and move to viewstate?</p> http://stackoverflow.com/questions/1556073/response-flush-throws-system-web-httpexception/1556087#1556087 0 Answer by Mitchel Sellers for Response.Flush() throws System.Web.HttpException Mitchel Sellers 2009-10-12T18:19:03Z 2009-10-12T18:19:03Z <p>Personally in your implementation since the next line is Response.End(), just remove the call to Response.Flush() as Response.End() takes care of everything for you.</p> http://stackoverflow.com/questions/1554728/the-message-received-from-the-server-could-not-be-parsed-common-causes-for-this/1554742#1554742 3 Answer by Mitchel Sellers for The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Mitchel Sellers 2009-10-12T13:57:44Z 2009-10-12T13:57:44Z <p>The action that causes this code to execute MUST be a postback event, and not an AJAX call.</p> <p>This is due to the nature of the way AJAX requests are processed.</p> http://stackoverflow.com/questions/1544736/file-readallbytes-code-refactoring/1544749#1544749 0 Answer by Mitchel Sellers for File.ReadAllBytes Code Refactoring Mitchel Sellers 2009-10-09T16:15:56Z 2009-10-09T16:15:56Z <p>In this case, no you are not missing anything at all. from a file operation standpoint. Now you know that your lack of exception handling will change the behavior of the system.</p> <p>It is a streamlined way of reading the bytes of a file.</p> <p>NOTE: that if you need to set any custom options on the read, then you would need the long form.</p> http://stackoverflow.com/questions/263232/determine-if-element-has-css-class-with-jquery 7 Determine if element has CSS class with jQuery Mitchel Sellers 2008-11-04T20:00:58Z 2009-10-09T03:54:18Z <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/1540658/net-asynchronous-stream-read-write/1540715#1540715 0 Answer by Mitchel Sellers for .NET Asynchronous stream read/write Mitchel Sellers 2009-10-08T21:53:23Z 2009-10-08T21:53:23Z <p>To give you a little bit of a hint here, you are going to need to use a callback to handle the write operation, that way you are not blocking the thread while the read is occurring.</p> http://stackoverflow.com/questions/1540444/how-to-report-timeout-in-asynchronous-call/1540701#1540701 1 Answer by Mitchel Sellers for How to report timeout in Asynchronous call ? Mitchel Sellers 2009-10-08T21:50:06Z 2009-10-08T21:50:06Z <p>From a timeout value, yes, this is going to set the timeout as you would expect.</p> <p>As for the memory risk. There is a risk that if you do not call EndInvoke that there will still be a reference to the delegate, and any resources used might not be garbage collected until the application exits. The exact implementation is not 100% documented from what I found, but could be confirmed with a tool like ANTS Profiler.</p> <p>Here is a helpful <a href="http://social.msdn.microsoft.com/forums/en-US/clr/thread/b18b0a27-e2fd-445a-bcb3-22a315cd6f0d/" rel="nofollow">discussion</a>.</p> http://stackoverflow.com/questions/1540582/need-to-add-rollup-of-entire-dataset-to-bottom-of-datagrid-that-is-paged/1540661#1540661 1 Answer by Mitchel Sellers for Need to add "rollup" of entire dataset to bottom of DataGrid that is paged Mitchel Sellers 2009-10-08T21:42:02Z 2009-10-08T21:42:02Z <p>SO from what I understand here you want to get a subtotal for each grouping based on product name.</p> <p>If you know what the column names are, you can use LINQ to group the results to get the aggregate, then if you wanted them inserted as the last record, simply insert them to the DS after you do the query.</p> http://stackoverflow.com/questions/1540629/limitations-in-visual-studio-2008-when-using-limited-account-privileges/1540648#1540648 0 Answer by Mitchel Sellers for Limitations in Visual Studio 2008 when using limited account privileges Mitchel Sellers 2009-10-08T21:37:37Z 2009-10-08T21:37:37Z <p>The only thing that I know is not possible without admin permissions is to have a Web APplication Project that has the "Use IIS" setting set to true under the web options.</p> http://stackoverflow.com/questions/1540632/payment-solution/1540641#1540641 1 Answer by Mitchel Sellers for Payment solution Mitchel Sellers 2009-10-08T21:35:57Z 2009-10-08T21:35:57Z <p>Personally I think this is going to be hard for you to find a merchant that will be willing to allow you to essentially refund all transactions.</p> <p>I would start out talking to each of the big ones out there and see if they will allow you to do what you are looking for. I personally find that Authorize.NET is very easy to work with and I've been impressed with them.</p> http://stackoverflow.com/questions/1663929/does-anyone-know-how-to-enter-list-of-website-resources-and-output-an-xml-doc-for/1663972#1663972 Comment by Mitchel Sellers on Does anyone know how to enter list of website resources and output an xml doc for Flash use Mitchel Sellers 2009-11-04T20:52:38Z 2009-11-04T20:52:38Z Yes, 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#1624666 Comment by Mitchel Sellers on How to find the days compare with date? Mitchel Sellers 2009-10-26T16:23:29Z 2009-10-26T16:23:29Z Chris - 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#1596344 Comment by Mitchel Sellers on Co-Worker pushing for a scary and smelly software solution, need help! Mitchel Sellers 2009-10-21T13:49:54Z 2009-10-21T13:49:54Z Oh 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 smelly http://stackoverflow.com/questions/201525/what-is-the-proper-order-for-installing-microsoft-software-on-a-developer-worksta/201592#201592 Comment by Mitchel Sellers on What is the proper order for installing Microsoft software on a developer workstation? Mitchel Sellers 2009-10-19T15:37:04Z 2009-10-19T15:37:04Z The install order is the same, just do NOT install SQL with EITHER edition of Visual Studio http://stackoverflow.com/questions/1588957/showdialog-issue-on-close Comment by Mitchel Sellers on ShowDialog issue on Close Mitchel Sellers 2009-10-19T14:23:45Z 2009-10-19T14:23:45Z Do 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#1575604 Comment by Mitchel Sellers on Securing .net web services for flex/flash/AIR applications Mitchel Sellers 2009-10-16T18:01:11Z 2009-10-16T18:01:11Z Yes, 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-postback Comment by Mitchel Sellers on Checkbox in TemplateField in Gridview loses checked on postback Mitchel Sellers 2009-10-15T23:12:58Z 2009-10-15T23:12:58Z When 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-possible Comment by Mitchel Sellers on Process 40M of documents (and index) as fast as possible Mitchel Sellers 2009-10-15T22:59:59Z 2009-10-15T22:59:59Z Are 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-javascript Comment by Mitchel Sellers on Problems with innerHTML using Javascript Mitchel Sellers 2009-10-15T22:58:03Z 2009-10-15T22:58:03Z Can you post the surrounding HTML that &quot;someElement&quot; is inside? http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-class/1573132#1573132 Comment by Mitchel Sellers on LINQ to XML And Distinct Custom Class Mitchel Sellers 2009-10-15T16:08:18Z 2009-10-15T16:08:18Z Thanks 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..) http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-class/1569492#1569492 Comment by Mitchel Sellers on LINQ to XML And Distinct Custom Class Mitchel Sellers 2009-10-15T16:07:02Z 2009-10-15T16:07:02Z @Ahmad - Awesome that worked! http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-class Comment by Mitchel Sellers on LINQ to XML And Distinct Custom Class Mitchel Sellers 2009-10-14T23:36:19Z 2009-10-14T23:36:19Z Just updated the posting with a sample http://stackoverflow.com/questions/1555810/regex-pattern-to-match-only-certain-characters/1555847#1555847 Comment by Mitchel Sellers on RegEx Pattern to Match Only Certain Characters Mitchel Sellers 2009-10-12T19:15:40Z 2009-10-12T19:15:40Z Ah yes, forgot the 0-9, and removed the \s http://stackoverflow.com/questions/1555810/regex-pattern-to-match-only-certain-characters/1555847#1555847 Comment by Mitchel Sellers on RegEx Pattern to Match Only Certain Characters Mitchel Sellers 2009-10-12T18:16:36Z 2009-10-12T18:16:36Z @SlientGhost Good point on the empty string, but technically anything that allows a space, and using a single character class will allow all spaces. As for the escaping, I was just being careful, I was running this through a .NET RegEx tester and seeing funny results. http://stackoverflow.com/questions/1555150/how-should-i-work-with-sql-timestamps-in-a-webforms-linq-to-sql-project Comment by Mitchel Sellers on How should I work with SQL Timestamps in a WebForms / Linq To SQL project? Mitchel Sellers 2009-10-12T15:13:28Z 2009-10-12T15:13:28Z What are you wanting to do with the timestamps??