User Ben Robbins - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:26:48Z http://stackoverflow.com/feeds/user/1880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1771226/how-to-detect-select-n1-problems-in-linq-to-sql/1780845#1780845 1 Answer by Ben Robbins for How to Detect Select n+1 problems in Linq to SQL? Ben Robbins 2009-11-23T02:37:30Z 2009-11-23T02:37:30Z <p>This won't outright detect n+1 problems, but they're pretty easy to spot when you look at your generated SQL.</p> <p>The DataContext.Log property takes a TextWriter that will output the generated SQL and some other diagnostic information. Here's an implementation that logs to the output. <a href="http://www.u2u.info/Blogs/Kris/Lists/Posts/Post.aspx?ID=11" rel="nofollow">Linq to SQL DebuggerWriter</a>. Here's the simple example of how to use the DebuggerWriter. </p> <pre><code>DataContext db = new DataContext(); #if DEBUG db.Log = new DebuggerWriter(); #endif </code></pre> http://stackoverflow.com/questions/1655118/is-the-book-nhibernate-in-action-for-v1-2-of-nhibernate-still-relevant-in-octo 3 Is the book "NHibernate in Action" for V1.2 of NHibernate still relevant in October 2009? Ben Robbins 2009-10-31T18:09:47Z 2009-11-02T09:33:36Z <p><strike>Manning is running a special on "NHibernate in Action" for $10.</strike> <em>NHibernate In Action</em> was released in February 2009 for V1.2 of NHibernate. Currently, NHibernate is up to V2.1. Will the book about V1.2 be relevant enough to apply towards the current release of NHibernate. I don't want to waste my time and money on a book about deprecated or irrelevant features.</p> <p>I'm a complete NHibernate noob, but I'm not a stranger to the general concept of ORM's.</p> <p>Update: </p> <p>I did buy the book, and from the small amount that I've read the V2.x series was in beta when the book was released. The book's authors do point out some of the differences in configuration between 1.x and 2.x. From what I've read so far, I recommend this book to anyone wanting a book about NHibernate. </p> http://stackoverflow.com/questions/1580938/tinymce-with-ajax-form-in-asp-net-mvc/1586042#1586042 1 Answer by Ben Robbins for TinyMCE with Ajax Form in ASP.NET MVC Ben Robbins 2009-10-18T21:07:20Z 2009-10-18T21:07:20Z <p>It looks like you need to add an OnBegin handler to your AjaxOptions to call <a href="http://tinymce.moxiecode.com/js/tinymce/docs/api/class%5Ftinymce.EditorManager.html#triggerSave" rel="nofollow">tinyMCE.triggerSave()</a> before your form submits. I'm more familiar with jQuery, so you may have to fix up the syntax for the Ajax.BeginForm calls.</p> <pre><code>new AjaxOptions() { UpdateTargetId = CustomerViewModel.WindowContentContainerId, OnFailure = "addValidation", OnBegin = "preSubmit" //OnSuccess = "refresh" } &lt;script="text/javascript"&gt; function preSubmit() { tinyMCE.triggerSave(); } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1584628/big-websites-using-asp-net-mvc/1585912#1585912 1 Answer by Ben Robbins for 'Big' websites using ASP.NET MVC Ben Robbins 2009-10-18T20:14:19Z 2009-10-18T20:14:19Z <p>I'm fairly certain that Louis DeJardin said that <a href="http://www.marketwatch.com" rel="nofollow">MarketWatch.com</a> used asp.net mvc and the <a href="http://sparkviewengine.com/" rel="nofollow">Spark view engine</a> when he was interviewed on <a href="http://herdingcode.com/?p=216" rel="nofollow">Herding Code</a>.</p> http://stackoverflow.com/questions/1560886/getting-jquery-going-object-expected-error/1562816#1562816 1 Answer by Ben Robbins for Getting jquery going: 'Object Expected' error Ben Robbins 2009-10-13T20:49:40Z 2009-10-13T20:49:40Z <p>You have the src attribute in your jQuery include wrong. Either take out the <code>~</code> or use <code>&lt;%= Url.Content()</code>. Also, I haven't had the best of luck with self-closing script tags, so I avoid them, but that might just be my superstition.</p> <p>Try either of these</p> <pre><code>&lt;script src="/Scripts/jquery-1.3.2.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="&lt;%= Url.Content("~/Scripts/jquery-1.3.2.js") %&gt;" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>I typed the following before I caught your typo and it may still be relevant:</p> <p>According to the <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">jQuery docs</a>, <code>$.post(url)</code> will send the request and ignore the result. You said you're submitting a form, but with the <code>$.post()</code> that you're using no data is being submitted. I can't tell if that's your intentions or not from your code snippet. Assuming that you only have one form on the page, you could change your post calls to <code>$.post('YourUrlHere', $('form').serialize());</code> and that would include the form data along with the post.</p> <p>Are your button ID's unique to the page? Have you tried the code manually in the <a href="http://getfirebug.com/" rel="nofollow">FireBug</a> JavaScript console? Do all of your braces and parentheses match up properly? Your asp.net mvc routing may be wrong here too, but if you still only have the default route, then this should work unless you've placed another route before the default route.</p> http://stackoverflow.com/questions/1417888/net-mvc-user-details-in-controller-ctor/1418113#1418113 1 Answer by Ben Robbins for .NET MVC user details in Controller CTOR Ben Robbins 2009-09-13T16:19:25Z 2009-09-13T16:19:25Z <p>Override the <code>Controller.Initialize()</code> method and put your code in there. The controller's context isn't available in the constructor.</p> <pre><code>protected override void Initialize(System.Web.Routing.RequestContext requestContext) { base.Initialize(requestContext); // your code here } </code></pre> <p>If you need the user's entity on every action, then push the behavior into a base class that your controllers inherit from.</p> http://stackoverflow.com/questions/1380944/problem-getting-mvc-ajax-partial-load-to-work/1381988#1381988 1 Answer by Ben Robbins for Problem getting MVC AJAX partial load to work Ben Robbins 2009-09-04T23:52:42Z 2009-09-05T01:31:16Z <p>The <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.ajaxhelper%28VS.100%29.aspx" rel="nofollow">AjaxHelper</a> class (Ajax.BeginForm()) uses the Microsoft AJAX libraries. It doesn't look like you're referencing them. Add them to your master page</p> <pre><code>&lt;script src="../../Scripts/MicrosoftAjax.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="../../Scripts/MicrosoftMvcAjax.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>Alternatively, you can use the <a href="http://malsup.com/jquery/form/" rel="nofollow">jQuery Form</a> plugin. Replace your <code>Ajax.BeginForm()</code> with an <code>Html.BeginForm()</code> and do something like this. In this approach, we'll load the ajax image dynamically, so take out the <code>&lt;img&gt;</code> tag from resultDiv.</p> <pre><code> &lt;script type="text/javascript" src="/path/to/jquery.form.js"&gt;&lt;/script&gt; $(function(){ $("#reportFormOne").ajaxForm({ target: "#resultDiv", resetForm: true, beforeSubmit: function() { $("&lt;img&gt;").attr("src", "../../Content/images/ajax-loader.gif").appendTo("#resultDiv"); }, success: function(data) { $("#resultDiv").hide().html(data).fadeIn("fast"); } }); }); </code></pre> <p>Also, you should make sure it's an AJAX request in your Archive action. (My VB is rusty. You simply need to check for Request.IsAjaxRequest())</p> <pre><code>Function Archive() As ActionResult Threading.Thread.Sleep(5000) If(Request.IsAjaxRequest()) Return PartialView() End If Return View() End Function </code></pre> http://stackoverflow.com/questions/1343652/enforce-action-filter-on-all-controller-actions-c-asp-net-mvc/1343929#1343929 2 Answer by Ben Robbins for Enforce Action Filter on all Controller Actions (C# / ASP.NET MVC) Ben Robbins 2009-08-27T21:48:13Z 2009-08-27T21:48:13Z <p>Running with <a href="http://stackoverflow.com/questions/1343652/enforce-action-filter-on-all-controller-actions-c-asp-net-mvc/1343726#1343726">jeef3</a>'s answer, I came up with this. It could use more error checking and robustness like multiple delimited actions, but the general idea works.</p> <p>In your specific case, you could test for the session value and decide to return out of the authorization also.</p> <pre><code>public class AuthorizeWithExemptionsAttribute : AuthorizeAttribute { public string Exemption { get; set; } public override void OnAuthorization(AuthorizationContext filterContext) { if (filterContext.RouteData.GetRequiredString("action") == Exemption) return; base.OnAuthorization(filterContext); } } </code></pre> <p>Usage:</p> <pre><code>[AuthorizeWithExemptions(Roles="admin", ExemptAction="Index")] public class AdminController : Controller ... </code></pre> http://stackoverflow.com/questions/1329200/executing-method-against-datacontext-returning-inserted-id/1332065#1332065 0 Answer by Ben Robbins for Executing Method Against DataContext Returning Inserted ID Ben Robbins 2009-08-26T02:25:09Z 2009-08-26T02:52:13Z <p>If you insist on using raw sql queries, then why not just use sprocs for your inserts? You could get the identity returned through an output parameters.</p> <p>I'm not the greatest at SQL, but I broke out LinqPad and came up with this. It's a big hack in my opinion, but it works ... kinda.</p> <p><code>DataContext.ExecuteQuery&lt;T&gt;()</code> returns an <code>IEnumerable&lt;T&gt;</code> where T is a mapped linq entity. The extra select I added will only populate the <code>YourPrimaryKey</code> property. </p> <pre><code>public int CreateSomething(Something somethingToCreate) { // sub out your versions of YourLinqEntity &amp; YourPrimaryKey string query = "MyFunkyQuery" + "select Convert(Int, SCOPE_IDENTITY()) as [YourPrimaryKey]"; var result = this.ExecuteQuery&lt;YourLinqEntity&gt;(query); return result.First().YourPrimaryKey; } </code></pre> http://stackoverflow.com/questions/1320279/code-re-use-with-linq-to-sql-creating-generic-look-up-tables/1325087#1325087 1 Answer by Ben Robbins for Code re-use with Linq-to-Sql - Creating 'generic' look-up tables Ben Robbins 2009-08-24T22:18:29Z 2009-08-24T22:18:29Z <p>Instead of using a switch statement, you can use a lookup dictionary. This is psuedocode-ish, but this is one way to get your table in question. You'll have to manually maintain the dictionary, but it should be much easier than a switch. </p> <p>It looks like the <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.gettable.aspx" rel="nofollow">DataContext.GetTable()</a> method could be the answer to your problem. You can get a table if you know the type of the linq entity that you want to operate upon.</p> <pre><code>Dictionary&lt;string, Type&gt; lookupDict = new Dictionary&lt;string, Type&gt; { "Colour", typeof(MatchingLinqEntity) ... } Type entityType = lookupDict[AttributeFromRouteValue]; YourDataContext db = new YourDataContext(); var entityTable = db.GetTable(entityType); var entity = entityTable.Single(x =&gt; x.Id == IdFromRouteValue); // or whatever operations you need db.SubmitChanges() </code></pre> <p>The <a href="http://code.google.com/p/sutekishop/" rel="nofollow">Suteki Shop project</a> has some <em>very</em> slick work in it. You could look into their implementation of <code>IRepository&lt;T&gt;</code> and IRepositoryResolver for a generic repository pattern. This really works well with an IoC container, but you could create them manually with reflection if the performance is acceptable. I'd use this route if you have or can add an IoC container to the project. You need to make sure your IoC container supports open generics if you go this route, but I'm pretty sure all the major players do.</p> http://stackoverflow.com/questions/1297876/asp-net-mvc-how-do-i-reference-an-asp-file-inside-the-view-directory/1297971#1297971 0 Answer by Ben Robbins for asp.net mvc - how do i reference an asp file inside the View Directory Ben Robbins 2009-08-19T05:43:31Z 2009-08-19T05:43:31Z <p>Have you tried adding an <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.routecollectionextensions.ignoreroute.aspx" rel="nofollow">IgnoreRoute</a> method to the top of your register routes method that ignores this specific URL? You'll have to edit the web.config in the Views folder to assign this path to the ASP handler because the ~/Views folder gives out 404's by default. The ASP handler should then pick up the request since the MVC handler will ignore it.</p> http://stackoverflow.com/questions/1278441/httpcontext-current-user-isinrolerolename-always-returns-false/1278966#1278966 0 Answer by Ben Robbins for HttpContext.Current.User.IsInRole(roleName) always returns false Ben Robbins 2009-08-14T16:56:12Z 2009-08-14T16:56:12Z <p>Try clearing out your browser cookie cache. I spent a while banging my head on a similar problem, and clearing out my cookies solved the problem. </p> http://stackoverflow.com/questions/1252144/when-starting-a-mvc-project-no-test-project-is-created/1252881#1252881 0 Answer by Ben Robbins for When starting a MVC project, no Test project is created Ben Robbins 2009-08-10T02:16:41Z 2009-08-10T02:16:41Z <p>Ultimately, the unit test project that is automagically added is just a class library project with the proper references added. Instead of worrying why the dialog doesn't pop up, add a class library project to your solution that references your testing framework. You'll end up with the results you want. </p> http://stackoverflow.com/questions/1189370/asp-net-mvc-how-much-processing-in-the-view-when-to-use-helper-methods/1191040#1191040 2 Answer by Ben Robbins for ASP.NET MVC: How much processing in the view & when to use helper methods? Ben Robbins 2009-07-27T22:36:09Z 2009-07-27T22:36:09Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.tagbuilder.aspx" rel="nofollow">TagBuilder</a> class to make HTML strings if you prefer it over String.Format() or string concatenation. I've also used the System.Xml.Linq classes for very complicated HTML.</p> <p>The general rule that i follow is: "If there's an if, write an HTML helper." I can't claim credit for that statement, but I don't remember where I heard it. This rule is going to cause an explosion of HTML helper extensions, so I organize my extensions with namespaces. I make an extension namespace that is shared amongst views that I add to the web.config, and then I make view-specific extension code files and namespaces that I use for each specific view. This makes it much easier to find where your extensions reside if you organize your code in a logical manner and you won't have a huge amount of unnecessary helpers cluttering up your HTML object where they aren't needed.</p> <p>Here's an example, using the default app name MvcApplication1.</p> <p>Added to web.config to include my shared helpers in all views: </p> <pre><code>&lt;pages&gt; &lt;namespaces&gt; &lt;add namespace="MvcApplication1.Helpers.Shared"/&gt; &lt;/namespaces&gt; &lt;/pages&gt; </code></pre> <p>This is a simplified and contrived example of my view-specific helpers for Home/About.aspx. </p> <pre><code>namespace MvcApplication1.Helpers.About { public static class AboutViewExtensions { public static string AboutViewHelper(this HtmlHelper Html) { var tb = new TagBuilder("b"); tb.SetInnerText("bold text"); return tb.ToString(TagRenderMode.Normal); } } } </code></pre> <p>Here's the About.aspx view using the <code>&lt;%@ Import %&gt;</code> directive to bring in my namespace.</p> <pre><code>&lt;%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %&gt; &lt;%@ Import Namespace="MvcApplication1.Helpers.About" %&gt; &lt;asp:Content ID="aboutContent" ContentPlaceHolderID="MainContent" runat="server"&gt; &lt;h2&gt;About&lt;/h2&gt; &lt;p&gt; &lt;%= Html.AboutViewHelper() %&gt; &lt;/p&gt; &lt;/asp:Content&gt; </code></pre> http://stackoverflow.com/questions/1056031/how-would-you-create-a-user-database-with-asp-net-mvc/1056082#1056082 3 Answer by Ben Robbins for How would you create a user database with asp.net mvc Ben Robbins 2009-06-28T23:56:30Z 2009-06-29T00:23:22Z <p>You could use an <a href="http://msdn.microsoft.com/en-us/library/system.web.profile.sqlprofileprovider.aspx" rel="nofollow">Asp.net profile provider</a> to store the information. Follow the link for instructions on using the built-in SqlProfileProvider. By default, the SqlProfileProvider will create tables in the aspnetdb.mdf file, so you can keep everything in one place. You can access the profile provider as a property on the HttpContext. </p> <p>Edit: Better link for <a href="http://msdn.microsoft.com/en-us/library/2y3fs9xs.aspx" rel="nofollow">ASP.Net profile information</a></p> <p>Using the Profile provider, you don't have to worry about making database calls or identifying the current user. It's all done on your behalf. Double-check the documentation, because the following might be a little off.</p> <p>You add the fields that you want in your web.config inside <code>&lt;system.web&gt;</code>. In your case, it would be the necessary contact information.</p> <pre><code>&lt;profile&gt; &lt;properties&gt; &lt;add name="Address" /&gt; &lt;add name="City" /&gt; &lt;add name="State" /&gt; &lt;plus other fields ... /&gt; &lt;/properties&gt; &lt;/profile&gt; </code></pre> <p>Then, you can access HttpContext.Profile.Address and so forth and the provider will take care of tying everything to the current user.</p> <p>Adding and editing the information means displaying a form. Viewing the details is just displaying all the fields you saved from the previous form post. </p> <p>The NerdDinner <a href="http://nerddinner.codeplex.com/" rel="nofollow">source</a> and <a href="http://tinyurl.com/aspnetmvc" rel="nofollow">tutorial</a> are well worth checking out if you're completely new to MVC.</p> http://stackoverflow.com/questions/1053315/asp-net-mvc-newbie-cant-get-aspnetregsql-exe-to-work/1053358#1053358 2 Answer by Ben Robbins for ASP.NET MVC newbie: can't get aspnet_regsql.exe to work Ben Robbins 2009-06-27T18:16:21Z 2009-06-27T18:16:21Z <p>First, copy a backup of your MDF file in case this command totally hoses your work. Try this: <code>aspnet_regsql -A all -C "Data Source=.\SQLEXPRESS;Integrated Security=True;User Instance=True" -d "PATH_TO_MY_DATABASE.MDF_FILE"</code></p> <p>Change <code>PATH_TO_MY_DATABASE.MDF_FILE</code> to the full path to your MDF file. It most likely resides in your APP_DATA folder.</p> <p>This information comes from <a href="http://weblogs.asp.net/lhunt/archive/2005/09/26/425966.aspx" rel="nofollow">this blog post</a>, and I have succesfully used it in the past to setup the membership tables for a SQL Server Express project with a MDF file database.</p> http://stackoverflow.com/questions/476540/how-to-properly-mock-and-unit-test 8 How to properly mock and unit test Ben Robbins 2009-01-24T19:40:15Z 2009-06-26T15:57:00Z <p>I'm basically trying to teach myself how to code and I want to follow good practices. There are obvious benefits to unit testing. There is also much zealotry when it comes to unit-testing and I prefer a much more pragmatic approach to coding and life in general. As context, I'm currently writing my first "real" application which is the ubiquitous blog engine using asp.net MVC. I'm loosely following the MVC Storefront architecture with my own adjustments. As such, this is my first real foray into mocking objects. I'll put the code example at the end of the question.</p> <p>I'd appreciate any insight or outside resources that I could use to increase my understanding of the fundamentals of testing and mocking. The resources I've found on the net are typically geared towards the "how" of mocking and I need more understanding of the where, why and when of mocking. If this isn't the best place to ask this question, please point me to a better place.</p> <p>I'm trying to understand the value that I'm getting from the following tests. The UserService is dependent upon the IUserRepository. The value of the service layer is to separate your logic from your data storage, but in this case most of the UserService calls are just passed straight to IUserRepository. The fact that there isn't much actual logic to test could be the source of my concerns as well. I have the following concerns.</p> <ul> <li>It feels like the code is just testing that the mocking framework is working. </li> <li>In order to mock out the dependencies, it makes my tests have too much knowledge of the IUserRepository implementation. Is this a necessary evil? </li> <li>What value am I actually gaining from these tests? Is the simplicity of the service under test causing me to doubt the value of these tests. </li> </ul> <p>I'm using NUnit and Rhino.Mocks, but it should be fairly obvious what I'm trying to accomplish.</p> <pre><code> [SetUp] public void Setup() { userRepo = MockRepository.GenerateMock&lt;IUserRepository&gt;(); userSvc = new UserService(userRepo); theUser = new User { ID = null, UserName = "http://joe.myopenid.com", EmailAddress = "joe@joeblow.com", DisplayName = "Joe Blow", Website = "http://joeblow.com" }; } [Test] public void UserService_can_create_a_new_user() { // Arrange userRepo.Expect(repo =&gt; repo.CreateUser(theUser)).Return(true); // Act bool result = userSvc.CreateUser(theUser); // Assert userRepo.VerifyAllExpectations(); Assert.That(result, Is.True, "UserService.CreateUser(user) failed when it should have succeeded"); } [Test] public void UserService_can_not_create_an_existing_user() { // Arrange userRepo.Stub(repo =&gt; repo.IsExistingUser(theUser)).Return(true); userRepo.Expect(repo =&gt; repo.CreateUser(theUser)).Return(false); // Act bool result = userSvc.CreateUser(theUser); // Assert userRepo.VerifyAllExpectations(); Assert.That(result, Is.False, "UserService.CreateUser() allowed multiple copies of same user to be created"); } </code></pre> http://stackoverflow.com/questions/1035611/mvc-unity-how-to-inject-dependencies-into-custom-filterattributes/1036241#1036241 0 Answer by Ben Robbins for MVC/Unity - How to inject dependencies into custom FilterAttributes? Ben Robbins 2009-06-24T03:22:10Z 2009-06-24T03:22:10Z <p>You have two options</p> <p>The first option is to write a custom ActionInvoker, which isn't nearly as hard as it sounds. Check out this <a href="http://codeclimber.net.nz/archive/2009/02/10/how-to-use-ninject-to-inject-dependencies-into-asp.net-mvc.aspx" rel="nofollow">blog post</a>. It specifically deals with NInject, but Unity supports property injection so you can modify the example to use Unity.</p> <p>This is the option that couples your IoC Container and isn't recommended.</p> <pre><code>public class MyFilter { IMyService MyService {get; set;} MyFilter() : MyFilter(MyUnityContainer.Resolve&lt;IMyService&gt;()) { } MyFilter(IMyService service) { MyService = service; } } </code></pre> http://stackoverflow.com/questions/861251/asp-net-mvc-in-medium-trust/861525#861525 1 Answer by Ben Robbins for ASP.NET MVC in Medium Trust Ben Robbins 2009-05-14T04:17:21Z 2009-05-14T04:17:21Z <p>I can't reproduce this exception on my machine. You should be able to <a href="http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx" rel="nofollow">bin deploy ASP.Net MVC in medium trust</a>. I have successfully done it on my host and godaddy. Are you using MVC 1.0? Have you changed or added restrictions to the Medium trust settings, possibly in an inherited web.config or machine.config file? </p> http://stackoverflow.com/questions/838166/getting-mvc-on-shared-host-to-work/838179#838179 0 Answer by Ben Robbins for getting mvc on shared host to work Ben Robbins 2009-05-08T03:58:00Z 2009-05-08T03:58:00Z <p>If you do have IIS7, then you may have an option to switch IIS7 between integrated and pipeline mode. Try switching to the other mode in your control panel. That's what worked for me.</p> http://stackoverflow.com/questions/796329/how-to-get-the-id-from-url/796349#796349 1 Answer by Ben Robbins for How to get the ID from URL? Ben Robbins 2009-04-28T05:33:37Z 2009-04-28T05:33:37Z <p>Put the ID in the ViewData in your action method, then your view can access the value from the ViewData.</p> <p>Controller: <code>ViewData["ID"] = id;</code></p> <p>View: <code>&lt;%=Html.ActionLink("name", "Action", "Controller", new{ ID = (int)ViewData["ID"]} ) %&gt;</code></p> http://stackoverflow.com/questions/796185/how-would-you-use-asp-net-mvc-to-create-pages-in-a-cms/796292#796292 0 Answer by Ben Robbins for How would you use ASP.NET MVC to create pages in a CMS? Ben Robbins 2009-04-28T04:58:29Z 2009-04-28T04:58:29Z <p>You should be able to use one controller and a couple views (display, create, edit) with some routing work. I did a super simple implementation for a personal project that went like this. I put this route near the top of my routing list and used the constraint to determine if it should be considered as a static page from my rules. My implementation didn't have any sort of hierarchy, i.e. pages/About-us/contact - only /contact.</p> <pre><code>route: routes.MapRoute("StaticContent", "{title}", new { controller = "Page", action = "Details"}, new { title = new InvalidTitleContstraint()}); controller: public class PageController : Controller { // Details checks if it can find a matching title in the DB // redirects to Create if no match public ActionResult Details(string title) // GET public ActionResult Create() // POST public ActionResult Create(Page page) } </code></pre> http://stackoverflow.com/questions/796197/ironpython-convert-int-to-byte-array/796222#796222 1 Answer by Ben Robbins for IronPython - Convert int to byte array Ben Robbins 2009-04-28T04:29:20Z 2009-04-28T04:36:23Z <p>using .Net: </p> <pre><code>byte[] buffer = System.BitConverter.GetBytes(string.Length) print System.BitConverter.ToString(buffer) </code></pre> <p>That will output the bytes as hex. You may have to clean up the syntax for IronPython.</p> http://stackoverflow.com/questions/738999/asp-net-mvc-rtm-project-type-is-not-supported/740564#740564 0 Answer by Ben Robbins for ASP.net MVC RTM - "project type is not supported" Ben Robbins 2009-04-11T18:16:01Z 2009-04-11T18:16:01Z <p>Did you install SP1 for .Net and VS2008? </p> http://stackoverflow.com/questions/724373/mvc-masterpage-design-time-support-when-running-in-a-virtual-directory/728059#728059 0 Answer by Ben Robbins for MVC MasterPage Design Time Support When Running in a Virtual Directory Ben Robbins 2009-04-08T00:08:20Z 2009-04-08T00:08:20Z <p>You can combine the two ways if you need design time support with the if false hack. This method is more of a hack than the runat="server" method, but it is useful in a few cases. I use this method for css class intellisense and for the jQuery vsdoc files. </p> <pre><code>&lt;% // design-time use only %&gt; &lt;% if (false) { %&gt; &lt;img src="../../Content/Images/myimage.jpg" alt="image" /&gt; &lt;% } %&gt; &lt;% // run-time %&gt; &lt;img src="&lt;%=Url.Content("~/Content/Images/myimage.jpg")%&gt;" alt="image" /&gt; </code></pre> http://stackoverflow.com/questions/727285/is-really-impossible-to-write-code-in-an-mvc-master-page/727911#727911 1 Answer by Ben Robbins for Is really impossible to write code in an mvc master page? Ben Robbins 2009-04-07T22:56:27Z 2009-04-07T22:56:27Z <p>Put your code inside a <code>&lt;asp:PlaceHolder runat="server"&gt;</code> tag. There was a known bug in RC1 that caused this problem. Check page 23 of the <a href="http://go.microsoft.com/fwlink/?LinkID=137661&amp;clcid=0x409" rel="nofollow">release notes</a> .</p> <p>I haven't upgraded to 1.0, so I don't know if this was fixed or not.</p> http://stackoverflow.com/questions/583654/how-do-i-find-microsoft-apis/583679#583679 4 Answer by Ben Robbins for How do I find Microsoft APIs? Ben Robbins 2009-02-24T21:26:37Z 2009-02-24T21:26:37Z <p>Use google to narrow down the search to MSDN</p> <p>site:<a href="http://msdn.microsoft.com/en-us/library/" rel="nofollow">http://msdn.microsoft.com/en-us/library/</a> "search terms"</p> <p>Also, you can just enter the fully qualified name if you happen to know it. For example, I want to learn about the ConfigurationManager class in the System.Configuration namespace. Dont forget to tack the ".aspx" onto the end</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.aspx</a></p> http://stackoverflow.com/questions/579598/injecting-a-dependency-into-a-custom-modelbinder/580330#580330 0 Answer by Ben Robbins for Injecting a dependency into a custom ModelBinder Ben Robbins 2009-02-24T03:12:26Z 2009-02-24T03:12:26Z <p>I personally use setter injection in my scenario similar to yours. After looking it up, NInject calls this property injection. It works and gets the job done.</p> http://stackoverflow.com/questions/574368/should-you-have-branch-tag-and-trunk-folders-even-for-small-projects/574380#574380 2 Answer by Ben Robbins for Should you have branch, tag and trunk folders even for small projects? Ben Robbins 2009-02-22T04:59:31Z 2009-02-22T04:59:31Z <p>They're convention, so what does it hurt to add them. If your project gets to the point where you need them, then it's much easier to have them in place from the beginning than to try to add them in after the fact. </p> http://stackoverflow.com/questions/568359/write-mbr-code/568587#568587 1 Answer by Ben Robbins for Write MBR Code Ben Robbins 2009-02-20T07:18:31Z 2009-02-20T07:18:31Z <p>You could look into <a href="http://www.gnu.org/software/grub/" rel="nofollow">GRUB</a>. I am by no means an expert at MBR code and it's been a long while since I ran a *nix OS, but I remember that the bootloader worked in stages and loaded the stages from the disk before the OS started. You could write your own stage to do the work you need done before the OS loads and then boot the OS. I'm not sure how practical this option is, particularly since the code seems to be in the middle of a rewrite because the "legacy" version was unmaintainable according to the documentation.</p> http://stackoverflow.com/questions/1807665/specialized-authorize-attribute-for-asp-net-mvc-application/1807696#1807696 Comment by Ben Robbins on Specialized Authorize attribute for asp.net mvc application Ben Robbins 2009-11-27T16:56:29Z 2009-11-27T16:56:29Z Your answer is correct outside of ASP.NET MVC; However, ASP.NET MVC action filters are a special kind of attribute. They do get executed as part of the MVC pipeline, and allow you to handle certain events. <a href="http://www.asp.net/learn/mvc/tutorial-14-cs.aspx" rel="nofollow">asp.net/learn/mvc/tutorial-14-cs.aspx</a> Your answer is wrong in the context of ASP.NET MVC. http://stackoverflow.com/questions/1708103/how-to-impress-developers-with-ironpython-python Comment by Ben Robbins on How to impress developers with IronPython/Python Ben Robbins 2009-11-13T18:26:35Z 2009-11-13T18:26:35Z The language is awesome. The hard sell is good IDE support for python and .Net together. http://stackoverflow.com/questions/1560886/getting-jquery-going-object-expected-error/1562816#1562816 Comment by Ben Robbins on Getting jquery going: 'Object Expected' error Ben Robbins 2009-10-14T20:26:47Z 2009-10-14T20:26:47Z I wasn't exactly superstitious, I just didn't know exactly why it didn't work. See here: <a href="http://stackoverflow.com/questions/69913/why-dont-self-closing-script-tags-work" rel="nofollow" title="why dont self closing script tags work">stackoverflow.com/questions/69913/&hellip;</a> The short story is that self-closing script tags aren't valid html4. http://stackoverflow.com/questions/1302267/using-a-guid-as-the-id-in-a-database-with-asp-net-mvc/1302349#1302349 Comment by Ben Robbins on Using a GUID as the ID in a database with ASP.NET MVC Ben Robbins 2009-08-19T20:32:15Z 2009-08-19T20:32:15Z I put my custom binders in a folder called Binders in the Models folder of my MVC Application. http://stackoverflow.com/questions/1061393/how-does-nerddinners-addmodelerrors-work/1061414#1061414 Comment by Ben Robbins on How does NerdDinner's AddModelErrors work? Ben Robbins 2009-06-30T02:18:28Z 2009-06-30T02:18:28Z An extension method is just a static method with an easier to read syntax. This is why you need to add the using directive for the namespace where the extension method is defined. ModelState.AddModelErrors(dinner.GetRuleViolations()); is the same as ModelStateHelpers.AddModelErrors(ModelState, dinner.GetRuleViolations()); http://stackoverflow.com/questions/1060724/how-to-troubleshoot-asp-net-mvc Comment by Ben Robbins on How to Troubleshoot ASP.NET MVC Ben Robbins 2009-06-30T01:28:08Z 2009-06-30T01:28:08Z Is a firewall rule or antivirus program blocking the requests? http://stackoverflow.com/questions/1056031/how-would-you-create-a-user-database-with-asp-net-mvc/1056082#1056082 Comment by Ben Robbins on How would you create a user database with asp.net mvc Ben Robbins 2009-06-29T00:24:17Z 2009-06-29T00:24:17Z I added some more information. I'd check out the NerdDinner tutorial, It's great stuff. http://stackoverflow.com/questions/1053114/how-to-know-if-asp-net-3-5-sp1-and-asp-net-mvc-are-installed-in-the-server Comment by Ben Robbins on How to know if asp.net 3.5 sp1 and asp.net mvc are installed in the server? Ben Robbins 2009-06-27T18:23:19Z 2009-06-27T18:23:19Z This doesn't directly answer your question. You can bin deploy MVC if you know that 3.5 is installed. <a href="http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx" rel="nofollow">haacked.com/archive/2008/&hellip;</a> http://stackoverflow.com/questions/1052666/is-there-a-free-hosted-issue-tracker/1052738#1052738 Comment by Ben Robbins on Is there a free hosted issue tracker? Ben Robbins 2009-06-27T13:56:51Z 2009-06-27T13:56:51Z Student and startup edition supports 2 users. This is the signup link: <a href="https://shop.fogcreek.com/FogBugz/default.asp?sCategory=HOSTEDFB&amp;sStep=stepEnterEmailAddress&amp;HFBnForm=1" rel="nofollow">shop.fogcreek.com/FogBugz/&hellip;</a> http://stackoverflow.com/questions/963183/what-is-the-best-way-to-organize-a-asp-net-mvc-solution-using-dependency-injectio Comment by Ben Robbins on What is the Best Way to Organize a ASP.Net MVC Solution Using Dependency Injection? Ben Robbins 2009-06-08T03:24:28Z 2009-06-08T03:24:28Z My newbie trap with StructureMap was security permission exceptions under Medium Trust. You will want to look into an alternate DI container if your app will run in Medium Trust environments. http://stackoverflow.com/questions/734892/asp-net-mvc-is-now-open-source-is-this-a-good-thing/734913#734913 Comment by Ben Robbins on ASP.NET MVC is now "open source". Is this a good thing? Ben Robbins 2009-04-10T00:24:02Z 2009-04-10T00:24:02Z Corporate management or the legal dept may not approve of using open-source software for many reasons. This is one of the reasons Microsoft has duped popular OSS projects. http://stackoverflow.com/questions/735571/asp-net-mvc-and-custom-membership-and-role-providers/735583#735583 Comment by Ben Robbins on asp.net mvc and custom membership and role providers Ben Robbins 2009-04-10T00:10:35Z 2009-04-10T00:10:35Z I use the lightweight PAB.Web.Providers I got from an eggheadcafe.com article in my MVC project and they work as expected. http://stackoverflow.com/questions/544152/connect-my-360-to-an-application/544193#544193 Comment by Ben Robbins on Connect my 360 to an application Ben Robbins 2009-02-13T00:34:42Z 2009-02-13T00:34:42Z My specific experience is with the PS3, so DLNA might not be the way to go. I assumed the 360 was a DLNA device because TVersity supports the 360, but TVersity may be emulating WMP as stated by Jarin Udom. http://stackoverflow.com/questions/490477/nunit-is-not-an-available-test-framework-in-vs2008/490611#490611 Comment by Ben Robbins on nunit is not an available test framework in vs2008 Ben Robbins 2009-01-29T22:25:43Z 2009-01-29T22:25:43Z The link I posted is from March 2008. You have to edit the templates if you want them to work. http://stackoverflow.com/questions/467064/mvc-helper-extension/467084#467084 Comment by Ben Robbins on MVC helper extension Ben Robbins 2009-01-28T07:06:34Z 2009-01-28T07:06:34Z You can import the namespace in your web.config instead of the view itself.