User Mitchel Sellers - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T05:47:19Zhttp://stackoverflow.com/feeds/user/13279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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-class3LINQ 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/1560118/asyncfileupload-control/1560275#15602751Answer by Mitchel Sellers for AsyncFileUpload ControlMitchel Sellers2009-10-13T13:30:24Z2009-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#15602322Answer by Mitchel Sellers for com interop: how to consume c# from Excel or AccessMitchel Sellers2009-10-13T13:25:02Z2009-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#15558470Answer by Mitchel Sellers for RegEx Pattern to Match Only Certain CharactersMitchel Sellers2009-10-12T17:23:33Z2009-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#15561040Answer by Mitchel Sellers for How to access the current [web] page (outside of the current page)?Mitchel Sellers2009-10-12T18:22:40Z2009-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#15560870Answer by Mitchel Sellers for Response.Flush() throws System.Web.HttpExceptionMitchel Sellers2009-10-12T18:19:03Z2009-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#15547423Answer 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 Sellers2009-10-12T13:57:44Z2009-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#15447490Answer by Mitchel Sellers for File.ReadAllBytes Code RefactoringMitchel Sellers2009-10-09T16:15:56Z2009-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-jquery7Determine if element has CSS class with jQueryMitchel Sellers2008-11-04T20:00:58Z2009-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#15407150Answer by Mitchel Sellers for .NET Asynchronous stream read/writeMitchel Sellers2009-10-08T21:53:23Z2009-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#15407011Answer by Mitchel Sellers for How to report timeout in Asynchronous call ?Mitchel Sellers2009-10-08T21:50:06Z2009-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#15406611Answer by Mitchel Sellers for Need to add "rollup" of entire dataset to bottom of DataGrid that is pagedMitchel Sellers2009-10-08T21:42:02Z2009-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#15406480Answer by Mitchel Sellers for Limitations in Visual Studio 2008 when using limited account privilegesMitchel Sellers2009-10-08T21:37:37Z2009-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#15406411Answer by Mitchel Sellers for Payment solutionMitchel Sellers2009-10-08T21:35:57Z2009-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#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..)http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-class/1569492#1569492Comment by Mitchel Sellers on LINQ to XML And Distinct Custom ClassMitchel Sellers2009-10-15T16:07:02Z2009-10-15T16:07:02Z@Ahmad - Awesome that worked!http://stackoverflow.com/questions/1569379/linq-to-xml-and-distinct-custom-classComment by Mitchel Sellers on LINQ to XML And Distinct Custom ClassMitchel Sellers2009-10-14T23:36:19Z2009-10-14T23:36:19ZJust updated the posting with a samplehttp://stackoverflow.com/questions/1555810/regex-pattern-to-match-only-certain-characters/1555847#1555847Comment by Mitchel Sellers on RegEx Pattern to Match Only Certain CharactersMitchel Sellers2009-10-12T19:15:40Z2009-10-12T19:15:40ZAh yes, forgot the 0-9, and removed the \shttp://stackoverflow.com/questions/1555810/regex-pattern-to-match-only-certain-characters/1555847#1555847Comment by Mitchel Sellers on RegEx Pattern to Match Only Certain CharactersMitchel Sellers2009-10-12T18:16:36Z2009-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-projectComment by Mitchel Sellers on How should I work with SQL Timestamps in a WebForms / Linq To SQL project?Mitchel Sellers2009-10-12T15:13:28Z2009-10-12T15:13:28ZWhat are you wanting to do with the timestamps??