User boris callens - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:12:18Z http://stackoverflow.com/feeds/user/11333 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/630803/enum-with-strings 6 Enum with strings boris callens 2009-03-10T15:33:44Z 2009-12-05T16:11:59Z <p>I know the following is not possible because it has to be an int</p> <pre><code>enum GroupTypes { TheGroup = "OEM", TheOtherGroup = "CMB" } </code></pre> <p>From my database I get a field with incomprehensive codes (the OEM and CMB's). I would want to make this field into an enum or something else understandable. Because the target is readability the solution should be terse.<br /> What other options do I have? </p> http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req 0 Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T11:04:57Z 2009-12-05T12:34:38Z <p>In my asp.net-mvc application I'm trying to set up Turbine.<br> The initialization code goes as follows:</p> <pre><code>public class MvcApplication : TurbineApplication { static MvcApplication() { ServiceLocatorManager.SetLocatorProvider(() =&gt; new UnityServiceLocator()); } } </code></pre> and I have then a set of registrars comparable to the following one: <pre><code>public class UserRepositoryRegistration : IServiceRegistration { public void Register(IServiceLocator locator) { locator.Register&lt;IUserRepository, Db4oUserRepository&gt;(); } } </code></pre> If I try to run, I get the following error somewhere after the SetLocatorProvider, but before entering any of the register methods: <blockquote> <p>Server Error in '/' Application.</p> <p>Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. </p> <p>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p> <p>Exception Details: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.</p> <p>Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. </p> <p>Stack Trace: </p> <pre> [ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.] System.Reflection.Module._GetTypesInternal(StackCrawlMark& stackMark) +0 System.Reflection.Assembly.GetTypes() +105 MvcTurbine.ComponentModel.DefaultAutoRegistrator.AutoRegister(ServiceRegistration serviceRegistration) +338 MvcTurbine.Web.RotorContext.ProcessAutomaticRegistration(AutoRegistrationList registrationList) +155 MvcTurbine.Web.RotorContext.AutoRegistrationForContext() +163 MvcTurbine.Web.RotorContext.Turn() +37 MvcTurbine.Web.TurbineApplication.ExecuteContext() +43 MvcTurbine.Web.TurbineApplication.TurnRotor() +65 MvcTurbine.Web.TurbineApplication.Application_Start(Object sender, EventArgs e) +85 </pre> <p></blockquote></p> <p><strong>UPDATE</strong><br> Narrowed down the problem library to Db4objects.Db4o.Linq.dll As soon as I have this library as a references (not even "using", just added to references) in one of my libraries that is referenced in my mvc webapplication I get the above mentioned YSOD. All other Db4o libraries work just fine.</p> <p><strong>METTRE À JOUR</strong><br> Tried swapping the UnityServiceLocator with the WindsosServiceLocator and the NinjectServiceLocator. Exact same results, so more then likely the problem doesn't originate in either of the libs.</p> <p><strong>OPPDATERING</strong><br> To recreate the error page it suffices to take the following steps:</p> <ul> <li>Create new Mvc application (doesn't matter wat version)</li> <li>Alter gloabal.asax.cs code to use MvcTurbine and add needed MvcTurbine libs<br> You will find everything still works as expected</li> <li>Add Db4objects.Db4o.dll<br> Still everything works</li> <li>Add Db4objects.Db4o.linq.dll<br> YSOD</li> </ul> <p>Any ideas on where and how to debug this?</p> http://stackoverflow.com/questions/183316/asp-net-mvc-handleerror 12 asp.net MVC HandleError boris callens 2008-10-08T15:12:32Z 2009-12-04T08:09:39Z <p>How do I go about the [HandleError] filter in asp.net MVC Preview 5?<br> I set the customErrors in my web.config file</p> <pre><code>&lt;customErrors mode="On" defaultRedirect="Error.aspx"&gt; &lt;error statusCode="403" redirect="NoAccess.htm"/&gt; &lt;error statusCode="404" redirect="FileNotFound.htm"/&gt; &lt;/customErrors&gt; </code></pre> <p>and put [HandleError] above my Controller Class like this:</p> <pre><code>[HandleError] public class DSWebsiteController: Controller{ [snip] public ActionResult CrashTest() { throw new Exception("Oh Noes!"); } } </code></pre> <p>Then I let my controllers inherit from this class and call CrashTest() on them. Visual studio halts at the error and after pressing f5 to continue, I get rerouted to Error.aspx?aspxerrorpath=/sxi.mvc/CrashTest (where sxi is the name of the used controller. Off course the path cannot be found and I get "Server Error in '/' Application." 404.</p> <p>This site was ported from preview 3 to 5. Everything runs (wasn't that much work to port) except the error handling. When I create a complete new project the error handling seems to work.</p> <p>Ideas?</p> <p><strong>--Note--</strong><br> Since this question has over 3K views now, I thought it would be beneficial to put in what I'm currently (asp.net mvc 1.0) using. In the <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">mvc contrib project</a> there is a brilliant attribute called "RescueAttribute" You should probably check it out too ;)</p> http://stackoverflow.com/questions/1833938/where-to-keep-things-like-connectionstrings-in-an-ioc-pattern 4 Where to keep things like connectionstrings in an IoC pattern? boris callens 2009-12-02T16:09:58Z 2009-12-03T22:12:17Z <p>In my everlasting quest to suck less I'm currently checking out mvc Turbine to do the IoC dirty work.<br> I'm using the mvc Turbine nerd dinner example as a lead and things look rather logical thus far. Although I'm refering to the turbine project here, I'm guessing the philosophy behind it is something general to the pattern Safe for some reading and the rare podcast, I am new to the IoC concept and I have a few questions.</p> <p>So far I have a IServiceRegistration entry for each IRepository I want to register<br> For example:</p> <pre><code>public class UserRepositoryRegistration : IServiceRegistration { public void Register(IServiceLocator locator) { locator.Register&lt;IUserRepository, UserRepository&gt;(); } } </code></pre> <p>The concrete implementation of the IUserRepository needs some configuration though. Something like a connection string or in this case a path to the db4o file to use.</p> <p>Where and to who should I supply this information?</p> http://stackoverflow.com/questions/444798/case-insensitive-containsstring 11 Case insensitive contains(string) boris callens 2009-01-14T21:39:46Z 2009-12-03T18:49:14Z <p>Is there a way to make the following return true?</p> <pre><code>string title = "ASTRINGTOTEST"; title.Contains("string"); </code></pre> <p>There doesn't seem to be an overload that allows me to set the case sensitivity..<br /> Currently I UPPERCASE them both, but that's just silly.</p> <p><strong>UPDATE</strong><br /> The sillyness I refer to is the <a href="http://en.wikipedia.org/wiki/Internationalization%5Fand%5Flocalization" rel="nofollow">i18n</a> issues that come with up- and down casing.</p> http://stackoverflow.com/questions/1831555/intellisense-in-asp-net-mvc-pages-stops-working-after-build 0 Intellisense in asp.net-mvc pages stops working after build boris callens 2009-12-02T08:50:20Z 2009-12-02T08:50:20Z <p>In my solution there are several projects of which some are asp.net-mvc sites.<br> In my views (webforms engine) I get intellisence but it is lost as soon as I do a build.<br> When I clean again, the intellisence comes back.</p> <p>I use VS2008 with Resharper 4.5</p> <p>Any ideas?</p> http://stackoverflow.com/questions/233711/add-property-to-anonymous-type-after-creation 2 Add property to anonymous type after creation boris callens 2008-10-24T14:16:50Z 2009-12-01T23:55:33Z <p>I use an anonymous object to pass my Html Attributes to some helper methods. If the consumer didn't add an ID attribute, I want to add it in my helper method.</p> <p>How can I add an attribute to this anonymous object?</p> http://stackoverflow.com/questions/1826431/lambda-syntax-in-linq-to-db4o 1 Lambda syntax in linq to db4o? boris callens 2009-12-01T14:12:43Z 2009-12-01T14:42:47Z <p>I know the following is possible with linq2db4o</p> <pre><code>from Apple a in db where a.Color.Equals(Colors.Green) select a </code></pre> <p>What I need however is something that allows me to build my query conditionally (like I can in other linq variants)</p> <pre><code>public IEnumerable&lt;Apple&gt; SearchApples (AppleSearchbag bag){ var q = db.Apples; if(bag.Color != null){ q = q.Where(a=&gt;a.Color.Equals(bag.Color)); } return q.AsEnumerable(); } </code></pre> <p>In a real world situation the searchbag will hold many properties and building a giant if-tree that catches all possible combinations of filled in properties would be madman's work.</p> <p>It is possible to first call</p> <pre><code>var q = (from Color c in db select c); </code></pre> <p>and then continue from there. but this is not exactly what I'm looking for.</p> <p>Disclaimer: near duplicate of <a href="http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query">my question</a> of nearly 11 months ago.<br> This one's a bit more clear as I understand the matter better now and I hope by now some of the db4o dev eyes could catch this on this:</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1825304/return-null-for-firstordefault-on-empty-ienumerableint 3 Return null for FirstOrDefault() on empty IEnumerable<int>? boris callens 2009-12-01T10:28:45Z 2009-12-01T10:39:47Z <p>Say I have following the following snippet (context narrowed down to limit scope of question)</p> <pre><code>int? nullableId = GetNonNullableInts().FirstOrDefault(); </code></pre> <p>Because GetNonNullableInts() returns ints, the FirstOrDefault will default to 0.<br> Is there a way to make the FirstOrDefault on a list of ints return a null value when the list is empty?</p> http://stackoverflow.com/questions/1824934/rewrite-this-foreach-yield-to-a-linq-yield 2 Rewrite this foreach yield to a linq yield? boris callens 2009-12-01T09:09:58Z 2009-12-01T09:12:20Z <p>Say I have the following code (context narrowed down as to keep the question scope limited)</p> <pre><code>public static IEnumerable&lt;Color&gt; GetThemColors(){ var ids = GetThePrimaryIds(); foreach (int id in ids){ yield return GetColorById(id); } ids = GetTheOtherIds(); foreach (int id in ids){ yield return GetOtherColorsById(id); } } </code></pre> <p>I would like to rewrite them to something like this (which off course doesn't compile</p> <pre><code>public static IEnumerable&lt;Color&gt; GetThemColors(){ GetThePrimaryIds().Select(id=&gt;yield return GetColorById(id)); GetTheOtherIds().Select(id=&gt;yield return GetOtherColorsById(id)); } </code></pre> <p>The key point being that in my first snippet I have two foreach enumerators yielding, which I don't know how to do in linq without loosing my lazy-loading features.</p> http://stackoverflow.com/questions/1804554/attaching-ants-performance-profiler-to-asp-net-mvc-site-fails 1 Attaching ants performance profiler to asp.net-mvc site fails boris callens 2009-11-26T16:11:07Z 2009-11-26T20:12:53Z <p>Currently my asp.net-mvc site makes the w3wp.exe process cpu run at 100%. I figured red-gate's ants profiler should be able to give me some clues as about where I should be looking.</p> <p>When I start a profiling session I can choose between IIS hosted- and dev server hosted asp.net web application. One of these look like the most logical option to choose from to me</p> <ul> <li><p>ASP.NET web application (hosted in web dev server) I pointed it to my web app's dir (where the default.aspx) is at and set the bind port to the correct port.<br> Pressed the Start Profiling button</p></li> <li><p>ASP.NET web application (hosted in IIS)<br> After loading and launching the project, I filled in the complete URL to my localhost (including port) and pressed "Start profiling" </p></li> </ul> <p>Both options fail with the following exception</p> <pre><code>Retrieving the COM class factory for component with CLSID {0002DF01-0000-0000-C000-000000000046} failed due to the following error: 80070002. System.IO.FileNotFoundException at bP.a(Boolean ) at bP.a(Uri ) at bT.LaunchFrontEndProcess() at RedGate.Profiler.Session.ProfilerSession.i() at RedGate.Profiler.Session.ProfilerSession.j() </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/204614/streaming-logtxt-viewer 5 Streaming log(txt) viewer boris callens 2008-10-15T13:01:28Z 2009-11-25T10:18:07Z <p>Anybody in the know of a viewer (or Notepad++ plugin) that can read txt files in a streaming way? I would like to see for example the last 10 lines of a txt file that gets appended continiously.</p> http://stackoverflow.com/questions/1790287/strongly-typed-views-in-nhaml 1 Strongly typed views in NHaml? boris callens 2009-11-24T14:05:52Z 2009-11-25T00:26:15Z <p>I have a strongly typed view and want to use it in an NHaml page. </p> <p>With the WebForms engine I would describe the ViewData type in the <code>&lt;%@ Page%&gt;</code> directive or in the codebehind file.</p> <p>How would I go about that in NHaml?</p> http://stackoverflow.com/questions/1790069/where-does-this-permanent-sqlexpress-connectionstring-come-from-not-web-config 0 Where does this permanent SQLExpress connectionstring come from (not web.config)? boris callens 2009-11-24T13:28:55Z 2009-11-24T13:34:14Z <p>Today I noticed that in my <code>ConfigurationManager.ConnectionStrings</code> the very first instance is <code>.\SQLEXPRESS</code>. I remembered explicitly removing this entry from my web.config so I checked again, but didn't find a thing. Then I did a search over my entire solution, not a single match.<br> Where the hell is this connection string coming from and how can I remove it?</p> http://stackoverflow.com/questions/397741/mssqlsm-studio-reacts-really-slowly 0 MSSqlSM studio reacts really slowly boris callens 2008-12-29T13:50:59Z 2009-11-23T19:34:49Z <p>My microsoft Sql Server Management Studio is slow. And by slow I mean >1minute to render a context menu-slow. All other things work perfectly fine. The connection to the database itself is not slow (my app works just fine and context menus don't need connection to the DB anyway I guess)..</p> <p>Anybody has any idea what I should check to solve this?</p> <p><strong>--EDIT--</strong> </p> <ul> <li>Cpu is aroun 3% </li> <li>Gigs of free ram </li> <li>Only clicking right on a table in the object explorer, nothing else</li> <li>the database is remote</li> <li>It's the full version of MSSQLMS</li> <li>No system logging errors</li> <li>Reinstall didn't do jack</li> </ul> <p><strong>UPDATE</strong> </p> <p>I installed Toad for SQL and everything works super smooth there. Actually, I find it way more productive then MSSql ever was for me. It's not really an answer to my question, but it certainly a solution. </p> http://stackoverflow.com/questions/1756080/foreach-loop-with-textbox-names/1756137#1756137 0 Answer by boris callens for foreach loop with textbox names. boris callens 2009-11-18T13:52:05Z 2009-11-18T13:52:05Z <p>haven't done any winforms for years, but I think this might do the trick</p> <pre><code>IEnumerable&lt;TextBox&gt; textBoxes = GetTextBoxes() //Get your textboxes from wherever Size newSize = new Size(27, 20); foreach (Control c in textBoxes.Where(c=&gt;c.Name.EndsWith("txt2"))) { c.Size = newSize; } </code></pre> http://stackoverflow.com/questions/1755876/how-to-check-if-a-position-in-a-string-is-empty-in-c/1756011#1756011 0 Answer by boris callens for How to check if a position in a string is empty in c# boris callens 2009-11-18T13:37:02Z 2009-11-18T13:37:02Z <p>If your values have fixed width, best not split it but use the right indexes in your array.</p> <pre><code>const string input = "John Doe Villa Grazia 323334I"; var name = input.Substring(0, 15).TrimEnd(); var place = input.Substring(16, 38).TrimEnd(); var cardId = input.Substring(39).TrimEnd(); </code></pre> <p>Assuming your values cannot contain two sequential spaces in them we can maybe use " " (double space" as a separator?<br> The following code will split your string based on the double space</p> <pre><code>const string input = "John Doe Villa Grazia 323334I"; var entries = input.Split(new[]{" "}, StringSplitOptions.RemoveEmptyEntries) .Select(s=&gt;s.Trim()).ToArray(); string name = entries[0]; string place = entries[1]; string idCard = entries[2]; </code></pre> http://stackoverflow.com/questions/81597/remove-unused-references-using 14 Remove unused references (!= "using") boris callens 2008-09-17T09:55:41Z 2009-11-18T12:19:51Z <p>How can I find and delete unused references in my projects? </p> <p>I know you can easily remove the using statements in vs 2008, but this doesn't remove the actual reference in your projects. The referenced dll will still be copied in your bin/setup package.</p> http://stackoverflow.com/questions/1743304/sticky-footer-with-css-layout-template-module 0 Sticky footer with CSS Layout Template Module? boris callens 2009-11-16T16:35:29Z 2009-11-18T10:08:01Z <p>I'm currently looking into the JQuery library for <a href="http://code.google.com/p/css-template-layout/" rel="nofollow">CSS Layout Template module</a> </p> <p>Is it possible to define the height of a placeholder with *?<br> Meaning it will push content down if it has to, or fill up any remaining space if the complete content is less then the view port.</p> <p>This would be really nice to make the whole <a href="http://www.cssstickyfooter.com/" rel="nofollow">sticky footer</a> thing much easier and robust.</p> http://stackoverflow.com/questions/709134/automate-deployment-of-asp-net-mvc-site 2 Automate deployment of asp.net mvc site boris callens 2009-04-02T10:12:29Z 2009-11-18T08:17:03Z <p>Currently I build my websites on my machine, deploy them to a test machine to see if they still work there and then have to request the sysadmin to deploy them to the qa/production servers.<br /> Time after time that what should be my moment of pride is killed by some deployment procedure that was misunderstood, forgotten or not documented.<br /> Currently the sysadmin copies the files from the dev server to whatever server he sees fit and tries to follow my deploymentProcedures.txt.</p> <p>Is there no mechanism I can use that makes this transition as frictionless as possible? Things I can think of now are</p> <ul> <li>Set the connectionstring to production DB</li> <li>Set CustomErrors to On</li> <li>Check if the correct I/O rights are given to the running account</li> <li>Make sure the needed COM objects are available</li> </ul> <p>Something that can make the deployment fase easier for people who are not the programmers.</p> http://stackoverflow.com/questions/1701881/create-an-incremental-placeholder-in-nhaml 0 Create an incremental placeholder in NHaml boris callens 2009-11-09T15:46:55Z 2009-11-16T02:19:54Z <p>What I want to reach is a way to add a script and style placeholder in my master. They will include my initial site.css and jquery.js files. Each haml page or partial can then add their own required files to those placeholders.</p> <p>Currently I'm creating two strings in my master that I append to in my views.<br> This results in an ugly and error prone rendering.<br> Is there a better way to implement this?</p> http://stackoverflow.com/questions/1679915/add-output-of-link-directive-to-variable 0 add output of %link directive to variable? boris callens 2009-11-05T11:23:43Z 2009-11-16T02:18:24Z <p>In my master a partial _styles is loaded. In this _styles there is a ^var styles = "" Now in all my views or partials I can say var styles = styles+"another style"</p> <p>Normally a style is defined as </p> <pre><code>%link{ href="../../content/css/partial.css" rel="stylesheet" type="text/css" } </code></pre> <p>How can I append the output of the %link directive to the styles variable?</p> http://stackoverflow.com/questions/985675/pin-fogbugz-tab-in-visual-studio 0 Pin fogbugz tab in visual studio boris callens 2009-06-12T08:54:16Z 2009-11-15T01:00:01Z <p>The fogbugz plugin for visual studio opens up a tab right next to your regular code tabs with in it the fogbugz window. Tiny bit lame if you ask me, but I can accept that.</p> <p>Is there a way however to make that tab pinned? So I cannot accidently close it and it will stay the first tab at all times?</p> http://stackoverflow.com/questions/1660647/linqs-insertonsubmit-not-added-to-changeset 1 Linq's InsertOnSubmit not added to changeset boris callens 2009-11-02T11:10:30Z 2009-11-13T02:39:18Z <p>Related to <a href="http://stackoverflow.com/questions/1660200/how-to-debug-a-linq-to-sql-insertonsubmit-statement">http://stackoverflow.com/questions/1660200/how-to-debug-a-linq-to-sql-insertonsubmit-statement</a></p> <p>I Execute the following bit of code:</p> <pre><code>db.DBUsers.InsertOnSubmit(new DBUser { Id = id, BrandCode3 = brandCode3.ToLower(), LoweredUsername = username.ToLower(), Username = username, CreationDate = date, Salt = salt, Password = SecurityService.CreateMD5Hash(salt + password), PasswordQuestion = passwordQuestion, PasswordAnswer = passwordAnswer, Comment = comment, Email = email, IsApproved = isApproved, LastPasswordChangedDate = date, FailedPasswordAnswerAttemptCount = 0, FailedPasswordAnswerAttemptWindowStart = date, IsLockedOut = false, IsOnLine = false, LastActivityDate = date } ); db.SubmitChanges(); </code></pre> <p><strong>UPDATE</strong><br> Here's the attributes for the primary key: </p> <pre><code>[Column(Storage="_Id", DbType="UniqueIdentifier NOT NULL", IsPrimaryKey=true)] public System.Guid Id </code></pre> <p>I noticed that the Auto-sync property has the value "Never" in the properties window. My guess would be this needs to be OnInsert. Gonna check that.</p> <p>Right before I call submitchanges I check the change set and it shows no inserts, updates or deletes... SQL profiler shows me no query is sent, attaching a db.Log shows me no action is executed.<br> Why isn't anything submitted?</p> http://stackoverflow.com/questions/560247/asp-net-mvc-in-ms-blend-and-other-web-editing-tools 1 Asp.net mvc in MS Blend (and other web editing tools) boris callens 2009-02-18T08:27:22Z 2009-11-10T19:58:07Z <p>Today I gave in to all the banners asking me to test MS Expression web 2 demo. After some setup hickups I fired up the thing and immediately encountered a problem: How do I make this tool work with my asp.net-mvc projects? Actually, how do I make my websites work with ANY tool but visual studio 2008?</p> <p>Untill now I did everything with VS2008 / Notepad++. Does anybody have experience with using asp.net-mvc projects in tools like dreamweaver, expression web etc?</p> http://stackoverflow.com/questions/301854/set-selected-value-in-selectlist-after-instantiation 1 Set selected value in SelectList after instantiation boris callens 2008-11-19T13:16:23Z 2009-11-07T22:07:31Z <p>Am I right to think that there is no way to set the selected value in the C# class SelectList after it is created? Isn't that a bit silly?</p> http://stackoverflow.com/questions/1687377/browser-takes-long-time-to-render-html-controls-asp-net/1687426#1687426 2 Answer by boris callens for Browser takes long time to render html controls asp.net boris callens 2009-11-06T12:55:56Z 2009-11-06T13:22:53Z <p>Have you tried monitoring your call in firefox's <a href="http://getfirebug.com/" rel="nofollow">firebug</a> Net tab? There you can dissect the transfer in detail and see what part of your page is taking how much time. Also the <a href="http://developer.yahoo.com/yslow/" rel="nofollow">YSlow</a> plugin will give you some sound advice on improving the performance of your pages.</p> http://stackoverflow.com/questions/793892/load-view-from-bin-folder 0 Load view from bin folder? boris callens 2009-04-27T14:55:50Z 2009-11-06T03:59:43Z <p>In an attempt to have several sites with one central set of views I created an external library with my views. They are marked as content and copy always.<br /> This views library is referenced in my websites and thus with compiling get a "Views" folder in their bin folder.<br /> Then I made a quick custom ViewEngine like this:</p> <pre><code>public class CommonViewLocator: WebFormViewEngine { public CommonViewLocator() { MasterLocationFormats = new[] { "~/bin/Views/{1}/{0}.master", "~/bin/Views/Shared/{0}.master" }; ViewLocationFormats = new[] { "~/bin/Views/{1}/{0}.aspx", "~/bin/Views/{1}/{0}.ascx", "~/bin/Views/Shared/{0}.aspx", "~/bin/Views/Shared/{0}.ascx" }; PartialViewLocationFormats = ViewLocationFormats; } } </code></pre> <p>After running I get this screen:</p> <pre><code>The view 'Index' or its master could not be found. The following locations were searched: ~/Views/Home/Index.aspx ~/Views/Home/Index.ascx ~/Views/Shared/Index.aspx ~/Views/Shared/Index.ascx ~/bin/Views/Home/Index.aspx ~/bin/Views/Home/Index.ascx ~/bin/Views/Shared/Index.aspx ~/bin/Views/Shared/Index.ascx </code></pre> <p>What's going wrong?<br /> Also, it feels kinda weird that the bin folder has the views, any other suggestions are welcome.</p> http://stackoverflow.com/questions/1680910/why-are-my-script-tags-rendered-outside-my-body-tag 0 Why are my script tags rendered outside my body tag? boris callens 2009-11-05T14:28:55Z 2009-11-05T14:33:58Z <p>This is my nhaml code</p> <pre><code>^ var title="" !!! XML !!! Strict %html{xmlns="http://www.w3.org/1999/xhtml"} %head %title Nhaml Master #{title} _styles %body .page %h1 = "hello world" _ _scripts </code></pre> <p>The resulting HTML renders the last tags as such:</p> <pre><code> &lt;/div&gt; &lt;/body&gt; &lt;script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.min.js" type="text/javascript"&gt; &lt;/script&gt; &lt;/html&gt; </code></pre> <p>As _scripts is still at the indentation level of %body +1, why does it close body down before rendering _scripts?</p> http://stackoverflow.com/questions/1571027/deployment-projects-for-multiple-sites 0 Deployment projects for multiple sites boris callens 2009-10-15T08:27:48Z 2009-11-05T12:08:26Z <p>I have 7 sites that should be deployed to my DEV server, then to my QA server and in the end to the PROD servers. </p> <p>Currently everything is done manually, but it's a chore. Today I looked at the Deployment solutions, but it seems it's one deployment solution per site. Is there a way to have multiple sites deployed with one action?</p> http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-04T20:48:37Z 2009-12-04T20:48:37Z Well, ok. I'll try that out tomorow. Howcome I never needed them before and now I do? http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-04T18:15:37Z 2009-12-04T18:15:37Z @Jb Evain: thx for your attention. The library on itself builds and does it's job in other situations. I'm referencing the Db4objects.Db4o.dll and Db4objects.Db4o.linq.dll. Is there something I'm missing? I updated the OP with the most bare instructions to recreate the behavior. http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req/1841111#1841111 Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-04T17:30:36Z 2009-12-04T17:30:36Z Hehe.. ninja's :) Well, I tried swapping them (ref OP), nothing. And I really want linq2db4O. Hope I can somehow get the DB4O ppl check this out. http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req/1841111#1841111 Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-04T16:57:46Z 2009-12-04T16:57:46Z I tried with Windsor last night, but didn't check Ninject. Although I fear the problem might lie in the dbo4o lib rather then the Ioc containers. I'll update OP once I got the chance to check this out. As a side note: do you have any good resources on why to pick one over the other? http://stackoverflow.com/questions/183316/asp-net-mvc-handleerror/1164402#1164402 Comment by boris callens on asp.net MVC HandleError boris callens 2009-12-04T08:14:30Z 2009-12-04T08:14:30Z True, but check out the RescueAttribute in MVC contrib (link in OP) http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req/1841111#1841111 Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-04T07:09:39Z 2009-12-04T07:09:39Z See comments from OP. I am running latest beta V2. But that doesn't seem to impose the problem. It's only as soon as I add Db4objects.Db4o.Linq.dll this error message shows up. With turbine but without the Db4objects.Db4o.Linq.dll everything works, without turbine and with the library everything works too. Combine them and you get the message. http://stackoverflow.com/questions/1833938/where-to-keep-things-like-connectionstrings-in-an-ioc-pattern/1843081#1843081 Comment by boris callens on Where to keep things like connectionstrings in an IoC pattern? boris callens 2009-12-04T07:07:18Z 2009-12-04T07:07:18Z Also thanks for signing up to answer this. Hope you enjoy your stay at SO http://stackoverflow.com/questions/1833938/where-to-keep-things-like-connectionstrings-in-an-ioc-pattern/1843081#1843081 Comment by boris callens on Where to keep things like connectionstrings in an IoC pattern? boris callens 2009-12-03T22:10:17Z 2009-12-03T22:10:17Z Thanks, that's a good solution. Although it might seem as overengeneering at first, I currently have my connectionstrings in web.config files, but plans are being made to have all configurations of all our applicatoins in a database and give the applications only a reference to that database. I would then prefer the configuration things to be pluggable. http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T22:01:14Z 2009-12-03T22:01:14Z It isn't. Will update OP. http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T20:55:53Z 2009-12-03T20:55:53Z Darn, could this be a Mvc1 vs MVC2 thing? I totally forgot I was running an MVC2 site. http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req/1841111#1841111 Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T20:49:43Z 2009-12-03T20:49:43Z Nope, nothing :( http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req/1841111#1841111 Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T19:04:07Z 2009-12-03T19:04:07Z I disabled all the Registrations and made all my controllers not accept a single parameter. Is there something else I can do? http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T11:24:27Z 2009-12-03T11:24:27Z Found the exception type in VS and set it to break on throw, nothing happened. http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T11:22:50Z 2009-12-03T11:22:50Z On second reading of your request: I don't know where this property is at either. Starting to sound rather clueless ey :S http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req Comment by boris callens on Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T11:18:33Z 2009-12-03T11:18:33Z I'm trying to find out, but don't have a clue where the exception is originating. VS doesn't break on the exception but just shows me the output in my browser. I tried finding the LoaderException in the Exceptions dialog of VS, but to no avail