User Slace - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:41:21Z http://stackoverflow.com/feeds/user/11388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1575316/linq-top-value-form-each-group/1575411#1575411 0 Answer by Slace for Linq - Top value form each group Slace 2009-10-15T22:10:10Z 2009-10-15T22:10:10Z <p>You can do it without any extension methods, LINQ has a built-in Max:</p> <pre><code>teams.GroupBy(t =&gt; t.TeamName).Select(t =&gt; new { t.Key, Score = t.Max(p =&gt; p.PlayerScore) }); </code></pre> <p>Results:</p> <pre><code>Key Score Australia 433 SriLanka 56 England 421 </code></pre> http://stackoverflow.com/questions/1571596/asp-net-event-handler-problem-on-postback/1571802#1571802 0 Answer by Slace for ASP.NET Event Handler problem on Postback Slace 2009-10-15T11:32:46Z 2009-10-15T11:32:46Z <p>Without the code here's a few things that may be causing problems:</p> <ul> <li>Control is being added to the hierarchy late in the request cycle (and after the event has fired). This is problem if you're dynamically creating controls (including those in a data bound control like a Repeater, ListView, GridView, etc)</li> <li>The event handler is being added in the code behind not the front end, eg: <code>myButton.Click += new EventHandler(myButton_Click)</code>, and that is not being done on every request. It could be behind a logical path not executed</li> </ul> http://stackoverflow.com/questions/1502410/msbuild-passing-parameters-to-calltarget 0 MSBuild passing parameters to CallTarget Slace 2009-10-01T07:31:48Z 2009-10-13T04:44:09Z <p>I'm trying to make a reusable target in my MSBuild file so I can call it multiple times with different parameters.</p> <p>I've got a skeleton like this:</p> <pre><code>&lt;Target Name="Deploy"&gt; &lt;!-- Deploy to a different location depending on parameters --&gt; &lt;/Target&gt; &lt;Target Name="DoDeployments"&gt; &lt;CallTarget Targets="Deploy"&gt; &lt;!-- Somehow indicate I want to deploy to dev --&gt; &lt;/CallTarget&gt; &lt;CallTarget Targets="Deploy"&gt; &lt;!-- Somehow indicate I want to deploy to testing --&gt; &lt;/CallTarget&gt; &lt;/Target&gt; </code></pre> <p>But I can't work out how to allow parameters to be passed into the <code>CallTarget</code>, and then in turn the <code>Target</code> itself.</p> http://stackoverflow.com/questions/1501930/msbuild-task-to-execute-an-external-msbuild-file 0 MSBuild task to execute an external MSBuild file Slace 2009-10-01T04:47:31Z 2009-10-01T04:52:11Z <p>I'm trying to set up a MSBuild file which will invoke another MSBuild file and I'm wondering what's the best way to achieve this.</p> <p>We're using it in the scenario of where a build server downloads a MSBuild file which then depending on the parameters it'll execute the appropriate 2nd file.</p> <p>I know I can just use the <code>&lt;Exec Command="msbuild.exe ..." /&gt;</code> task, but that seems to be a bit of a <em>hacky</em> way to do it.</p> <p>Is there an easier way to use MSBuild to execute another MSBuild file?</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124445#124445 1 Answer by Slace for Hidden .NET Base Class Library Classes? Slace 2008-09-23T22:56:45Z 2009-09-29T14:58:30Z <p>For generating code files I like System.CodeDom.</p> http://stackoverflow.com/questions/1485513/tfs-sharepoint-retrieving-list-of-projects/1486503#1486503 0 Answer by Slace for TFS SharePoint retrieving list of projects Slace 2009-09-28T11:08:15Z 2009-09-28T11:08:15Z <p>I'd expect that the reason you're not getting anything back is because <code>/sites/</code> isn't really a site collection on SharePoint, which you'd notice if you try and access <code>/sites/</code> as a path on the SharePoint server.</p> <p>You'll probably have to just return all the sites from the root web and then just filter on the path name whether or not it contains <code>/sites/</code>. I believe that is how Central Administration displays the list of sites within the web application list.</p> http://stackoverflow.com/questions/502336/sharepoint-404-page 2 SharePoint 404 page Slace 2009-02-02T06:08:38Z 2009-08-27T18:19:03Z <p>Is the best place set the 404 error page for SharePoint within the web.config customError section or is there a configuration setting on the site collection/ web application?</p> http://stackoverflow.com/questions/1334102/tfsbuildhow-to-trigger-a-build-only-when-a-particular-file-is-checked-in/1334161#1334161 0 Answer by Slace for TFSBuild:How to trigger a build only when a particular file is checked in? Slace 2009-08-26T11:47:58Z 2009-08-26T11:47:58Z <p>I don't know of any OOTB feature which can do this, what you would need to do is write your own custom MSBuild task which is executed prior to the build running (pre-build action).</p> <p>The task will then need to use the TFS API to check the current check in for the file you want and if it's not found you'll have to set the task to failed.</p> <p>This isn't really ideal as it'll indicate to Team Build a build failure, which, depending on whether you're using check in policies, may be unhelpful. It'd also be harder to at-a-glance work out which builds failed because of the task and which failed because of a real problem.</p> <p>You can change the build to occur less frequently rather than every check in, which will reduce load on your build server.</p> <p>Otherwise you may want to dig into Cruise Control .NET, it <em>may</em> support better conditional builds.</p> http://stackoverflow.com/questions/1316900/best-practices-of-porting-c-server-logic-to-client-js/1319918#1319918 0 Answer by Slace for Best practices of porting C# server logic to client JS? Slace 2009-08-23T23:59:11Z 2009-08-23T23:59:11Z <p>One option to porting C# code to JavaScript would be to use <a href="http://projects.nikhilk.net/ScriptSharp/" rel="nofollow">Script#</a>, which is a cross-compiler of C# to JavaScript.</p> <p>That said I'm not a fan of having lots of business logic in JavaScript, as you run the risk of your business logic being <em>hacked</em> (ie - skipped if someone uses a JS debugger). It also makes for problems if JavaScript is turned off.</p> http://stackoverflow.com/questions/856150/mvp-pattern-how-many-views-to-a-presenter 1 MVP pattern, how many views to a presenter? Slace 2009-05-13T05:05:04Z 2009-08-21T08:49:31Z <p>We are trying to get the Model-View-Presenter pattern used on (virtually) all new dev work that we undertake.</p> <p>I'm a strong believer in having a framework to help people meet a design requirement, we have a few in-house frameworks for various different components (logging, email sending, etc), so I'm trying to get some kind of MVP framework developed.</p> <p>I've managed to put together something that is easy to use for people who aren't familiar with MVP and that isn't too far removed from <em>how we currently work</em>. The problem is that it's doing a relationship of 1 view to 1 presenter.</p> <p>Here's a rough outline of the framework:</p> <pre><code>public abstract class Presenter&lt;TView&gt; where TView : IView { public virtual T View { get; set; } public virtual void Setup(TView view) { this.View = view; } } public interface IView { } </code></pre> <p>The basic way that it works is that any <strong>View</strong> created inherits from the <code>IView</code> interface, and passed to a <strong>Presenter</strong> class which inherits from the <code>Presenter</code> abstract class.</p> <p>As you can see I'm using .NET generics so that the developer will have strong typing of the View when they are working on the presenter (and then ultimately a class inheriting from the presenter).</p> <p>So I can set up a basic login component like this:</p> <pre><code>public class Login : Presenter&lt;ILogin&gt; { public override Setup(ILogin view){ base.Setup(view); this.View.Login += new EventHandler(login); } void login(object sender, EventArgs e) { ... } } public interface ILogin : IView { string Username { get; set; } string Password { get; set; } event EventHandler Login; } </code></pre> <p>So as I said I quite like this, there's compiler enforced typing, strongly typed views and a MVP-<em>like</em> pattern.</p> <p>Some people though are not quite as happy with the implementation, because it has a 1 to 1 relationship between presenters and views, and strictly speaking this isn't how MVP is meant to be.</p> <p>I question how valid this argument really is, on the several projects I have been trailing this framework with (ranging from medium to large projects) I haven't found any good example where I thought "I need to have multiple views for this presenter". When I see functionality which can be shared across multiple views I question if it should even be tied to a particular presenter, or whether it should be in a more neutral class.</p> <p>Is the framework I'm trying to achieve too far from MVP to be called MVP? Is the need to have mutliple views to a presenter the primary goal of MVP? Is it even possible to have a true .NET MVP framework with n-view support?</p> http://stackoverflow.com/questions/1299216/more-private-than-private-c/1299254#1299254 0 Answer by Slace for More private than private? (C#) Slace 2009-08-19T11:16:49Z 2009-08-19T11:16:49Z <p>If you're using the C# 3.0 compiler you can define properties which have compiler-generated backing fields like this:</p> <pre><code>public int MyInt { get; set; } </code></pre> <p>That will mean there is only one way to access the property, sure it doesn't mean you can only access the field but it does mean that there's nothing but the property to access.</p> http://stackoverflow.com/questions/1291206/is-it-possible-to-extract-values-from-itemgroups-in-tfsbuild-proj-during-a-build/1291356#1291356 0 Answer by Slace for Is it possible to extract values from itemgroups in TFSBuild.proj during a build Slace 2009-08-18T01:28:46Z 2009-08-18T01:28:46Z <p>An application isn't executing when the TFSBuild.proj file is being executed, unless you're talking about an application not included in the build.</p> <p>The only way I can think of would be to have a custom MSBuild task which you then pass all the variables into and you do your processing against them.</p> http://stackoverflow.com/questions/1252954/is-silverlight-a-viable-choice-over-raw-asp-net 1 Is Silverlight a viable choice over raw ASP.NET? Slace 2009-08-10T03:05:18Z 2009-08-10T15:51:49Z <p>I'm in the process of designing a solution for the company I work at (but have just resigned from) which has a very complex application process in it. The process is close to 10 steps (including T&amp;C's and preview) and also has some very tricky UI-level business rules (mostly driven by a legacy tie-in system).</p> <p>Essentially the validation is driven by what has been selected on previous forms, and not just the one directly prior.</p> <p>The solution has already been decided as an ASP.NET application but the more I design the solution the more it's looking like it's going to be very difficult to achieve in a stateless environment. It's going to either end up with query string parameters, hidden variables on the page, viewState or session to pass the information around.</p> <p>Then I had it suggested that I look at Silverlight, to give it a more stateful environment and make it easier to handle the passing of the parameters around.</p> <p>I've never done anything with Silverlight, other than watch presentations, so I've got no hands-on experience with it, but from everything I've read I think that it does have potential to solve some of the major problems which I can see coming out of trying to do this with standard ASP.NET.</p> <p>So how do I go about:</p> <ol> <li>Is Silverlight a viable option considering what I mentioned above?</li> <li>Pitching Silverlight to a company without any Silverlight skills?</li> <li>How do you deal with the "but it requires a browser plugin" argument?</li> </ol> http://stackoverflow.com/questions/1254063/how-to-avoid-user-interruption-when-deploying-a-website-on-iis-6-0-net-3-5/1254076#1254076 6 Answer by Slace for How to avoid user interruption when deploying a website on IIS 6.0/.NET 3.5 Slace 2009-08-10T10:11:37Z 2009-08-10T10:11:37Z <p>The best way to do an ASP.NET deployment which will prevent user interaction is by putting up an <strong>app_offline.htm</strong> file, see Scott Gu's post here - <a href="http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx</a></p> <p>App_offline is really nice as it prevents any traffic to anywhere on your site. It's what they use on SO when they do upgrades.</p> http://stackoverflow.com/questions/919388/umbraco-installation-problem-on-iis7/1242719#1242719 0 Answer by Slace for Umbraco Installation Problem On IIS7 Slace 2009-08-07T03:22:04Z 2009-08-07T03:22:04Z <p>How did you do the install? It is <em>strongly</em> recommened you install Umbraco via the Microsoft Web Platform Installer (webpi) - <a href="http://www.microsoft.com/web/gallery/default.aspx" rel="nofollow">http://www.microsoft.com/web/gallery/default.aspx</a></p> <p>The problem though was likely because you weren't running the app in the Classic app pool mode.</p> http://stackoverflow.com/questions/1204220/why-is-this-expectation-failing 1 Why is this expectation failing? Slace 2009-07-30T03:00:25Z 2009-07-30T03:40:04Z <p>I'm setting up some RhinoMock tests but I can't work out why my expectations are failing.</p> <p>Here are the class/ interface I'm testing:</p> <pre><code>public class LogOn { public virtual ILogOn View { get; set; } public virtual IDataProvider DataProvider { get; set; } public void SetUp(ILogOn view) { this.View = view; this.DataProvider = ... //using dependancy injection to do the data provider, so I want it faked in tests } public void SetUpEvents() { this.View.Submit += new EventHandler(View_Submit); } void View_Submit(object sender, EventArgs e) { if ( this.DataProvider.LogOn(this.Username) ) { this.View.SubmitSuccess(); } else { this.View.SubmitFailure("Username is incorrect"); } } } public interface ILogOn { string Username { get; set; } event EventHandler Submit; void SubmitSuccess(); void SubmitFailure(string message); } </code></pre> <p>And here is my test method:</p> <pre><code>[TestMethod] public void LogOnFailure() { var dataProvider = MockRepository.CreateStub&lt;DataProvider&gt;(); var presenter = MockRepository.CreateMock&lt;LogOn&gt;(); var view = MockRepository.CreateMock&lt;ILogOn&gt;(); dataProvider.Expect(d =&gt; d.LogOn(null)).Return(true).Repeat.Any(); presenter.Expect(p =&gt; p.DataProvider).Return(dataProvider).Repeat.Any(); presenter.Expect(p =&gt; p.View).Return(view).Repeat.Any(); presenter.Expect(p =&gt; p.SetUpEvents()).CallOriginalMethod(); view.Expect(v =&gt; v.Username).Return("invalid").Repeat.Any(); view.Expect(v =&gt; v.SubmitFail(null)).Constraints(Is.Same("Username is incorrect")); presenter.SetUp(view); presenter.SetUpEvents(); view.Raise(v =&gt; v.Submit += null, null, EventArgs.Empty); presenter.VerifyAllExpectations(); view.VerifyAllExpectations(); } </code></pre> <p>The expectation that is failing is:</p> <pre><code>view.Expect(v =&gt; v.SubmitFail(null)).Constraints(Is.Same("Username is incorrect")); </code></pre> <p>(indicated by <code>view.VerifyAllExpectations</code>)</p> <p>It says that that method is never executed, but when using the debugger I can step through and <code>LogOn.View</code> is accessed, does call the <code>SubmitFailure</code> method (with that argument) and return correctly.</p> <p>I can't work out what is missing as watching the code does indicate that everything is executed at the right time and with the right values.</p> <p><strong>Edit</strong>: Ok, so I let out the code which is why I was mocking the <code>LogOn</code> class, it has a dependancy of an external data provider (which I'm stubbing as I don't care how it works). My appologies, I thought I was making this clearer but just made is worse!</p> http://stackoverflow.com/questions/1186931/multiple-foreign-keys-to-a-single-column 2 Multiple foreign keys to a single column Slace 2009-07-27T07:43:23Z 2009-07-29T17:39:46Z <p>I'm defining a database for a customer/ order system where there are two highly distinct types of customers. Because they are so different having a single customer table would be very ugly (it'd be full of null columns as they are pointless for one type).</p> <p>Their orders though are in the same format. Is it possible to have a <code>CustomerId</code> column in my Order table which has a foreign key to both the Customer Types? I have set it up in SQL server and it's given me no problems <em>creating</em> the relationships, but I'm yet to try inserting any data.</p> <p>Also, I'm planning on using nHibernate as the ORM, could there be any problems introduced by doing the relationships like this?</p> http://stackoverflow.com/questions/1199486/server-mappath-in-c-classlibrary/1199502#1199502 3 Answer by Slace for Server.Mappath in C# classlibrary Slace 2009-07-29T11:14:32Z 2009-07-29T11:14:32Z <p>By calling it?</p> <pre><code>var path = System.Web.HttpContext.Current.Server.MapPath("default.aspx"); </code></pre> <p>Make sure you add a reference to the System.Web assembly.</p> http://stackoverflow.com/questions/1197783/what-check-in-policies-should-be-considered-for-version-control/1197870#1197870 2 Answer by Slace for What Check-In Policies should be considered for version control? Slace 2009-07-29T03:07:23Z 2009-07-29T03:07:23Z <p>The ones we use where I work on TFS are:</p> <ul> <li>Code Analysis <ul> <li>This ensures that all the code was compiled on the devs machine before it was checked in</li> </ul></li> <li>Work Item Association <ul> <li>If you've done a change there should have been an assigned task!</li> </ul></li> <li>Last Build Successful <ul> <li>Using the TFS Build Server to check that the current code in source control compiled on an independant machine</li> </ul></li> <li>Check In Comments (part of the TFS Powertools - <a href="http://msdn.microsoft.com/en-us/teamsystem/bb980963.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/teamsystem/bb980963.aspx</a>) <ul> <li>It's good to be able to see a summary of the check in without having to go to the work item(s)</li> </ul></li> </ul> http://stackoverflow.com/questions/1197842/why-cant-i-use-a-linq-query-on-a-visio-masters-collection/1197862#1197862 1 Answer by Slace for Why can't I use a Linq query on a Visio Masters collection? Slace 2009-07-29T03:03:33Z 2009-07-29T03:03:33Z <p>Yes, it is because it's not <code>IEnumerable&lt;T&gt;</code>, <code>IQueryable&lt;T&gt;</code> and it doesn't have its own custom Select method written.</p> <p>Contary to popular believe you <strong>don't</strong> have to implement those interfaces to have LINQ support, you just need to have the methods they compile down to.</p> <p>This is fine:</p> <pre><code>public class MyClass { public MyClass Select&lt;MyClass&gt;(Func&lt;MyClass, MyClass&gt; func) { ... } } var tmp = from m in new MyClass() select m; </code></pre> <p>Sure a <code>.ToList()</code> wont work though ;)</p> <p>As you solving your problem try using the <code>Cast&lt;T&gt;()</code> extension method, that'll make it an <code>IEnumerable&lt;T&gt;</code> and allow you to LINQ to your hearts content.</p> http://stackoverflow.com/questions/1192386/mapping-xml-data-type-with-nhibernate 1 Mapping XML data type with NHibernate Slace 2009-07-28T07:24:49Z 2009-07-28T08:04:39Z <p>I have some columns in my database (MS SQL Server 2005) which use the data type XML.</p> <p>Can these be mapped as XML objects in NHibernate? My app is .NET 3.5 so I have access to both XDocument and XmlDocument which I can use but I don't know whether NHibernate will support it.</p> <p>If it doesn't does anyone have a good suggestion on how to support it?</p> http://stackoverflow.com/questions/1023787/how-to-use-system-web-abstractions-in-a-web-forms-application 2 How to use System.Web.Abstractions in a Web Forms application? Slace 2009-06-21T12:27:57Z 2009-07-27T00:28:29Z <p>I'm working on a web forms application which intends to be ported over to MVC for its vNext +1 release. But at the moment it's a .NET 3.5 SP1 web forms application.</p> <p>I'm wanting to have our own <em>context</em> which provides some helpers on top of the standard HttpContext/ HttpRequest/ HttpResponse/ etc objects. Also, I'm wanting to have decoupling of the HttpContext classes from the context.</p> <p>Because there is the intention to go MVC I thought it'd be a good idea to make our custom context work with the HttpContextBase (and associated classes) which shipped in the System.Web.Abstractions assembly.</p> <p>I don't want to design a solution that solves some problems at the moment but needs to be re-written to achieve testability in MVC (and is just useless in MCV) but what I've achieved so far doesn't really seem that useful.</p> <p>The problem is I can't find any good examples on how to achieve this, how to extend <code>HttpContextWrapper</code>, or <code>HttpContextBase</code> so that you can maintain seperation of concern.</p> http://stackoverflow.com/questions/1172220/only-update-1-column-with-linq/1183490#1183490 0 Answer by Slace for only update 1 column with linq Slace 2009-07-26T01:17:54Z 2009-07-26T01:17:54Z <p>It sounds like you may be using the DataContext in a singleton pattern, or at least sharing it across multiple threads.</p> <p>When you call SubmitChanges on your DataContext is will do all the database changes which the DataContext knows about.</p> <p>The DataContext is meant to be used only as a unit-of-work object and disposed of as soon as you've completed that piece of work.</p> http://stackoverflow.com/questions/1168901/log4net-different-appenders-per-namespace 0 Log4Net - Different appenders per namespace Slace 2009-07-23T00:01:06Z 2009-07-23T01:10:40Z <p>I'm trying to set up a common logging library which determines the <code>ILog</code> instance based on the current stack and what is the best instance of ILog to use.</p> <p>I've got my config set up like this:</p> <pre><code>&lt;log4net&gt; &lt;!-- appenders ommited --&gt; &lt;root&gt;&lt;/root&gt; &lt;logger name="MyAssembly.MyNamespace"&gt; &lt;level value="WARN" /&gt; &lt;!-- appender list --&gt; &lt;/logger&gt; &lt;/log4net&gt; </code></pre> <p>And I have a class like this:</p> <pre><code>namespace MyAssembly.MyNamespace.SubNamespace { public class MyClass { ... } } </code></pre> <p>When I try and get an instance of <code>ILog</code> I pass in the type (<code>var log = LogManager.GetLogger(typeof(MyClass)).Namespace);</code>) and I want it to detect that there isn't any logger configured, so it will then go up one level in the namespace tree (to <code>MyAssembly.MyNamespace</code>) and then see if it is configured at that point.</p> <p>The problem is that the <code>ILog</code> returned for <code>MyAssembly.MyNamespace.SubNamespace</code> is configured for WARN events (and above), essentially what I configured for it's parent. Log4net seems to be returning the <code>ILog</code> when the required name <strong>contains</strong> a defined name, rather than when it <strong>equals</strong> the name.</p> <p>How do I get Log4net to only return a <em>valid</em> logger when the name is the same as one defined in the config?</p> http://stackoverflow.com/questions/1162653/asp-net-membership-edit-profile-information 0 ASP.NET Membership - Edit profile information Slace 2009-07-22T01:43:50Z 2009-07-22T01:43:50Z <p>I'm building a site which will be using the ASP.NET Membership and the ProfileProvider to store the additional information (and expose it).</p> <p>Is there any control built into the .NET framework, or free, which connects into the ProfileProvider and the defined profile class to allow for easy editing.</p> http://stackoverflow.com/questions/1129172/how-to-find-max-date/1129179#1129179 1 Answer by Slace for How to find Max Date Slace 2009-07-15T02:59:29Z 2009-07-15T03:06:17Z <pre><code>public static DateTime WhichIsBigger(DateTime first, DateTime second) { if(first &gt; second) return first; else return second; } </code></pre> <p>Or a real 1-liner:</p> <pre><code>Func&lt;DateTime, DateTime, DateTime&gt; whichIsBigger = (f, s) =&gt; return f &gt; s ? f : s; </code></pre> http://stackoverflow.com/questions/490369/multiple-hostnames-on-a-single-moss-site 2 Multiple hostnames on a single MOSS site Slace 2009-01-29T03:09:55Z 2009-07-15T01:13:11Z <p>I have been asked if it is possible to have a sub-site of a MOSS site running a different hostname from the parent.</p> <p>Say I had the following site hierachy:</p> <ul> <li>Home</li> <li>News <ul> <li>Article 1</li> </ul></li> <li>Sub Site <ul> <li>Pages <ul> <li>Some sub page</li> <li>Some other sub page</li> </ul></li> </ul></li> </ul> <p>Would it be possible to have the site running of www.my-moss-site.com but 'Sub Site' running off www.my-moss-sites-sub-site.com?</p> <p>I know you can have multiple sites created through central admin which have different hostnames but I'm wondering if the above could also be achieved</p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1119207#1119207 0 Answer by Slace for What coding mistakes are a telltale giveaway of an inexperienced programmer? Slace 2009-07-13T12:39:51Z 2009-07-13T12:39:51Z <p>In web development not understanding the difference between the client and server is something that I've seen quite a few times from new developers.</p> <p>I've been asked why this didn't work plenty of times (ie - why my doesn't my alert show):</p> <pre><code>Page.ClientScript.RegisterStartupScript(this.GetType(), "notification", "alert('Success!');", true); Response.Redirect("/default.aspx"); </code></pre> <p>(I think that code's right :P).</p> <p>And using <strong>alerts</strong> for debugging JavaScript, man that is such a frustrating thing to see, particularly when using Firebug!</p> http://stackoverflow.com/questions/1107950/system-web-extentions-dll-not-getting-published/1108176#1108176 0 Answer by Slace for system.web.extentions.dll not getting published! Slace 2009-07-10T07:25:47Z 2009-07-10T07:25:47Z <p>As others have pointed out they are part of the .NET framework and installed into the GAC which is why they aren't copied in a publish. Visual Studio expects them to be installed in the same location on the deployment target.</p> <p>That said you can change this, right-click on the reference go to Properties and change the <strong>Copy Local</strong> to <strong>true</strong>. This will put a copy of the assembly in the local bin of the website and copy it when you publish.</p> http://stackoverflow.com/questions/445782/finding-closest-match-in-collection-of-numbers 4 Finding closest match in collection of numbers Slace 2009-01-15T05:38:36Z 2009-07-08T05:42:52Z <p>So I got asked today what was the best way to find the closes match within a collection.</p> <p>For example, you've got an array like this:</p> <pre><code>1, 3, 8, 10, 13, ... </code></pre> <p>What number is closest to 4?</p> <p>Collection is numerical, unordered and can be anything. Same with the number to match.</p> <p>Lets see what we can come up with, from the various languages of choice.</p> http://stackoverflow.com/questions/1575316/linq-top-value-form-each-group/1575411#1575411 Comment by Slace on Linq - Top value form each group Slace 2009-10-17T02:27:50Z 2009-10-17T02:27:50Z @Jon - yeah i noticed after I posted it. Couldn't be bothered taking it down though :P http://stackoverflow.com/questions/1501930/msbuild-task-to-execute-an-external-msbuild-file/1501948#1501948 Comment by Slace on MSBuild task to execute an external MSBuild file Slace 2009-10-01T05:20:19Z 2009-10-01T05:20:19Z Ahh! I knew there had to be a better way. I hadn't come across the MSBuild task before :) http://stackoverflow.com/questions/1252954/is-silverlight-a-viable-choice-over-raw-asp-net/1253060#1253060 Comment by Slace on Is Silverlight a viable choice over raw ASP.NET? Slace 2009-08-10T05:27:40Z 2009-08-10T05:27:40Z I'm not expecting it to make everything easier, just hoping that it would be able to help better handle state between forms. And WF isn't really practicle as there isn't much in the way of logical branching in the form, just changes to UI rules (some fields on or off, mandatory state toggled, etc) http://stackoverflow.com/questions/1252954/is-silverlight-a-viable-choice-over-raw-asp-net/1253003#1253003 Comment by Slace on Is Silverlight a viable choice over raw ASP.NET? Slace 2009-08-10T05:25:40Z 2009-08-10T05:25:40Z I'm concerned about Session due to the potential weight and that devs tend to forget to clear it. And due to the size of the forms (i'm talking a min of 20 fields per stage) trying to compress them onto 1 page is really hard :/ http://stackoverflow.com/questions/1247611/javascript-cancelling-a-dynamic-script-tag Comment by Slace on Javascript: "Cancelling" a dynamic script tag? Slace 2009-08-08T00:41:50Z 2009-08-08T00:41:50Z define 'dynamic script tag' http://stackoverflow.com/questions/9033/hidden-features-of-c/1118859#1118859 Comment by Slace on Hidden Features of C#? Slace 2009-08-05T06:01:35Z 2009-08-05T06:01:35Z if you have to use the unsafe keyword you're doing it wrong! :P http://stackoverflow.com/questions/1204220/why-is-this-expectation-failing/1204299#1204299 Comment by Slace on Why is this expectation failing? Slace 2009-07-30T07:32:23Z 2009-07-30T07:32:23Z i fixed the DI so that I didn't need to mock the LogOn class http://stackoverflow.com/questions/1204220/why-is-this-expectation-failing/1204299#1204299 Comment by Slace on Why is this expectation failing? Slace 2009-07-30T03:41:58Z 2009-07-30T03:41:58Z Well that was rather dumb of me, the reason I mock LogOn is because I don't want the SetUp to operate as normal. Using dependancy injection for a data provider (which was originally omitted) . I can't not mock the LogOn class (or so I think) http://stackoverflow.com/questions/1192386/mapping-xml-data-type-with-nhibernate/1192465#1192465 Comment by Slace on Mapping XML data type with NHibernate Slace 2009-07-28T10:39:39Z 2009-07-28T10:39:39Z Thanks, I knew Ayende would have done a post but xml &amp; nhibernate in the same query tend to bring back incorrect results :P http://stackoverflow.com/questions/1168901/log4net-different-appenders-per-namespace Comment by Slace on Log4Net - Different appenders per namespace Slace 2009-07-23T02:32:42Z 2009-07-23T02:32:42Z @Mitch Wheat: True using something like MEF would be neat but we've got a DI-less implementation which I'm just trying to tweak http://stackoverflow.com/questions/1129172/how-to-find-max-date/1129179#1129179 Comment by Slace on How to find Max Date Slace 2009-07-15T03:11:23Z 2009-07-15T03:11:23Z ahh, Visual Studio 2005. Well someone can point out that the Func wont work there anyway :P http://stackoverflow.com/questions/1090161/add-a-div-before-5th-li-and-add-another-div-after-the-last-li-from-a-lis Comment by Slace on add a <div> before 5th <li> and add another </div> after the last <li> from a list? Slace 2009-07-07T03:00:19Z 2009-07-07T03:00:19Z That's not valid HTML, you can't have an LI's parent as DIV http://stackoverflow.com/questions/1023787/how-to-use-system-web-abstractions-in-a-web-forms-application/1024390#1024390 Comment by Slace on How to use System.Web.Abstractions in a Web Forms application? Slace 2009-06-21T19:01:46Z 2009-06-21T19:01:46Z It's not so much the actual context I want to change (although there are some additional properties), the bulk of what is being added is to request and response, I want different objects (wrapper objects). It also doesn't have a separation of concerns with extension methods http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/244775#244775 Comment by Slace on What is your best programmer joke? Slace 2009-06-15T11:39:10Z 2009-06-15T11:39:10Z why oh why can't I upvote twice! :P http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282394#282394 Comment by Slace on What are five things you hate about your favorite language? Slace 2009-06-12T23:51:22Z 2009-06-12T23:51:22Z @jamesh: Here's a perfect example of that - &quot;I helped my uncle Jack off a horse&quot; vs &quot;I helped my uncle jack off a horse&quot;. With a lack of syntax checking the primary communication method of the above statements (verbal) can result in the same outcome (disgust)