User jonathanconway - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:58:10Z http://stackoverflow.com/feeds/user/23341 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1788399/separating-rapid-development-from-refactoring-optimization 0 Separating rapid development from refactoring/optimization jonathanconway 2009-11-24T07:17:25Z 2009-11-24T07:33:37Z <p>I'm working in a team of 2 front-end developers on a web-based late-stage startup project.</p> <p>The site works quite well, but there's a lot of room for improvement code-wise, as the code is quite messy and disorganized.</p> <p>I would like to clean things up gradually by writing tests and carefully refactoring to avoid breaking anything. (Using principles from the book 'Working Effectively with Legacy Code')</p> <p>However, the developer I'm working with is being given a lot of high-priority feature work, and I don't want to burden him with maintenance tasks. A lot of the time he has to write messy code simply because of the time-constraints.</p> <p>As the team grows I'm concerned about how to manage the different concerns.</p> <p>I'm thinking of dividing the team into 2 groups:</p> <ol> <li>Does rapid development on new features, with less care on code quality.</li> <li>Writes unit tests, refactors code, generally optimizes things.</li> </ol> <p>The result I'm aiming for is to bring as much of the code under test as possible, while still keeping up the pace of new-feature development.</p> <p>Has this been tried before? Any thoughts?</p> http://stackoverflow.com/questions/1788342/test-driven-development-with-asp-net-mvc-where-to-begin 6 Test-driven development with ASP.NET MVC - where to begin? jonathanconway 2009-11-24T07:03:54Z 2009-11-24T07:23:23Z <p>I've read a lot about Test-Driven Development (TDD) and I find the principles very compelling, based on personal experience.</p> <p>At the moment I'm developing a web-site for a start-up project I'm involved in, and I'd like to try my hand at putting TDD into practice.</p> <p>So ... I create a blank solution in Visual Studio 2010, add an ASP.NET MVC Website project and a test project.</p> <p>I also add a class library called 'Domain', for my domain objects, and a test project for that.</p> <p>Now I'm wondering where to begin. I should be writing a test before I do anything right? The question is - should I start writing tests for domain objects? If so, what exactly should I be testing for, since the domain objects don't yet exist?</p> <p>Or should I be starting with the Website project and writing tests for that? If so, what should I write a test for? The Home controller / Index action?</p> http://stackoverflow.com/questions/647385/is-it-possible-to-have-two-partial-classes-in-different-assemblies-represent-the 2 Is it possible to have two partial classes in different assemblies represent the same class? jonathanconway 2009-03-15T06:25:46Z 2009-11-23T13:58:58Z <p>I have a class called 'Article' in a project called 'MyProject.Data', which acts as the data layer for my web application.</p> <p>I have a separate project called 'MyProject.Admin', which is a web-based admin system for viewing/editing the data, and was build using ASP.NET Dynamic Data.</p> <p>Basically I want to extend the Article class, using a partial class, so that I can augment one of its properties with a "UIHint" extender, which will allow me to replace the normal multi-line textbox with an FCKEdit control.</p> <p>My partial class and extender would look like this:</p> <pre><code>[MetadataType(typeof(ProjectMetaData))] public partial class Project { } public class ProjectMetaData { [UIHint("FCKeditor")] public object ItemDetails { get; set; } } </code></pre> <p>Now this all works fine if the partial class is in the same project as the original partial class - i.e. the MyProject.Data project.</p> <p>But UI behavior shouldn't sit in the Data layer, but rather, in the Admin layer. So I want to move this class to MyProject.Admin.</p> <p>However, if I do that, the functionality is lost.</p> <p>My fundamental question is: can I have 2 partial classes in separate projects, but both referring to the same "class"?</p> <p>If not, is there a way to accomplish what I'm trying to do, without mixing data-layer logic with UI logic?</p> http://stackoverflow.com/questions/656455/building-a-cms-in-asp-net-mvc 5 Building a CMS in ASP.NET MVC jonathanconway 2009-03-17T23:47:44Z 2009-11-20T03:04:27Z <p>I'm curious to know if any basic CMS code has been written for ASP.NET MVC.</p> <p>The reason I ask is, I'm making a data-driven website for a client, and I've already spent a significant amount of time building it from the ground-up in MVC, but now the client wants content management facilities.</p> <p>Basically they want to be able to add/edit/remove articles and have revision control.</p> <p>It would be great if I could somehow 'bolt on' the content management without having to start again from scratch, developing it <em>under</em> an existing CMS.</p> <p>Should I build the article management and revision control myself, or should I re-use some existing package?</p> http://stackoverflow.com/questions/460829/whats-a-quick-easy-way-to-send-html-emails-to-myself-to-test-them 1 What's a quick, easy way to send HTML emails to myself to test them? jonathanconway 2009-01-20T11:01:49Z 2009-11-16T04:54:01Z <p>I've been given the task of optimizing HTML emails for different email/webmail clients. I used to test the HTML file by doing a trick in Outlook Express, to make it send the raw HTML, but Microsoft seems to have stopped supplying Outlook Express now (I think "Live Mail" is supposed to replace it).</p> <p>So my question is, is there a simple, quick way to send HTML emails? Maybe even a freeware program that does the job?</p> http://stackoverflow.com/questions/1721030/what-technology-stack-is-second-life-built-on 0 What technology stack is Second Life built on? jonathanconway 2009-11-12T09:32:46Z 2009-11-12T10:18:35Z <p>For example, are they using Java/Struts? Or ASP.NET? Or PHP? Or some combination of technologies?</p> <p>Not sure how public they are about their infrastructure, but it would be very interesting to know what they use.</p> http://stackoverflow.com/questions/1591902/converting-long-lat-to-pixel-x-y-given-a-zoom-level 1 Converting long/lat to pixel x/y, given a zoom-level jonathanconway 2009-10-20T00:42:08Z 2009-11-10T17:44:24Z <p>I'm trying to develop a page in ASP.NET that will act as a tile-server for a Google Map</p> <p>It will pull a collection of latitude/longitude points from the database, then render them as small red dots on a transparent background, given a zoom-level (default: 15).</p> <p>It will then return the result as a GIF-type image.</p> <p>Have any algorithms or libraries been developed that allow me to take this set of latitudes/longitudes and convert them to a set of 2D pixel co-ordinates, given a zoom level?</p> <p>(This is all being done server-side, so I can't use the Google Maps API.)</p> <p><hr /></p> <p>Update: Found a code-sample in Perl that does something similar:</p> <p><a href="http://blog.barros.ws/2009/03/06/convert-lat-lng-and-zoom-values-to-pixel-xy-on-a-map/" rel="nofollow">http://blog.barros.ws/2009/03/06/convert-lat-lng-and-zoom-values-to-pixel-xy-on-a-map/</a></p> <p>Trouble is, I don't know Perl, and don't really have the time to crack open a book and learn it.</p> <p>Can anyone help me to decipher what's going on in this function?</p> <pre><code>sub Google_Coord_to_Pix { my $value = shift ; my $lat = shift ; my $lng = shift ; my @d = ( ) ; my $e = 0 ; $d[1] = sprintf("%0.0f", $$value{'bmO'} + $lng * $$value{'pixLngDeg'} ) ; $e = sin($lat * $$value{'Wa'}) ; if( $e &gt; 0.99999 ) { $e = 0.99999 ; } if( $e &lt; -0.99999 ) { $e = -0.99999 ; } $d[0] = sprintf("%0.0f", $$value{'bmO'} + 0.5 * log((1 + $e) / (1 - $e)) * (-1) * $$value{'pixLngRad'} ) ; return (@d) ; } </code></pre> http://stackoverflow.com/questions/551894/whats-the-best-way-to-store-co-ordinates-longitude-latitude-from-google-maps 5 What's the best way to store co-ordinates (longitude/latitude, from Google Maps) in SQL Server? jonathanconway 2009-02-16T00:13:15Z 2009-11-10T00:49:14Z <p>I'm designing a table in SQL Server 2008 that will store a list of users and a Google Maps co-ordinate (longitude &amp; latitude).</p> <p>Will I need two fields, or can it be done with 1?</p> <p>What's the best (or most common) data-type to use for storing this kind of data?</p> http://stackoverflow.com/questions/593651/what-do-you-do-when-every-possible-business-idea-is-already-taken 11 What do you do when every possible business idea is already taken? jonathanconway 2009-02-27T05:57:49Z 2009-11-05T00:57:35Z <p>I have a bit of free time and lots of enthusiasm for software and the web. </p> <p>I want to make a start-up, to sell kind of product or online service, but I'm having a hard time coming up with business ideas that haven't already been implemented.</p> <p>For example, I thought of making an e-ordering website for ordering food from restaurants online.</p> <p>Good thing I typed it into Google, because the market is already full of hundreds of websites doing the same thing and competing heavily.</p> <p>The same thing has happened with so many other business ideas I've become excited and passionate about - they're all taken.</p> <p>What's your response to this? Do you agree that all the good ideas seem to be taken? Or do you think there is room for new businesses, and that I'm just not thinking (or looking) hard enough?</p> <p>Have you ever tried idea after idea, only to find that it was already being done, and you had to move onto something else?</p> http://stackoverflow.com/questions/1634498/is-there-a-convenient-tool-for-viewing-analysing-json-responses 2 Is there a convenient tool for viewing/analysing JSON responses? jonathanconway 2009-10-28T00:24:10Z 2009-10-28T00:31:19Z <p>I find it inconvenient using my browser to view JSON responses, then copy/paste the code into my editor, then have to put line-breaks in to make it more readable.</p> <p>It would be great to have a tool that allows me to enter a URL and receive a JSON in a more usable format, like say, a drill-down tree, or at least some color-coding of the text.</p> <p>What tools are recommended?</p> http://stackoverflow.com/questions/1408786/maintaining-viewdata-between-renderaction-calls 0 Maintaining ViewData between RenderAction calls jonathanconway 2009-09-11T03:08:12Z 2009-10-24T16:17:04Z <p>I'm rendering a common Log-In form using Html.RenderAction, on every page of my site.</p> <p>If the user enters their details into the text-box and clicks 'Submit', it does a POST to a controller that handles the log in.</p> <p>If they make a mistake, such as entering an invalid email address, it will populate the ModelState with an error message and then redirect back to whatever page they were on before.</p> <p>The problem is, because RenderAction occurs as a separate request, I'm losing the ViewModel.</p> <p>Even when I put it into TempData it gets lost, since TempData is flushed on each separate request.</p> <p>Is there a way of preserving data between consecutive Html.RenderAction calls?</p> <p>If not, any suggestions on how I might be able to hack this? (Should put the data in Session?)</p> http://stackoverflow.com/questions/1598268/using-the-sharpmap-library-to-generate-a-google-maps-overlay 0 Using the SharpMap library to generate a Google Maps overlay jonathanconway 2009-10-21T01:21:45Z 2009-10-21T02:23:26Z <p>I wish to dynamically generate a Google Maps overlay, that will consist of a single transparent GIF/PNG image with multiple dots on various locations.</p> <p>There will be a large quantity of dots and if I use normal markers, the performance will be unacceptable.</p> <p>I came across the SharpMap library and it looks like an excellent, comprehensive library for dealing with maps.</p> <p>Problem is, it's also very big and I'm not sure where to begin.</p> <p>For starters I don't think I need to use the whole framework, and I may not even need to instantiate a 'Map' object.</p> <p>All I need to do is convert a collection of latitude/longitude co-ordinates into a collection of pixel co-ordinates, given the current zoom level and the size of the viewport (which is fixed).</p> <p>Can anyone who's had experience with SharpMap point me in the direction of what classes/namespaces I could/should be using to get this done?</p> <p><hr /></p> <p>Found an article somewhat related to this, but applied to Google Earth rather than the Maps API.</p> <p><a href="http://web.archive.org/web/20080113140326/http%3A//www.sharpgis.net/PermaLink,guid,f5bf2808-4cda-4f41-9ae5-98109efeb8b0.aspx" rel="nofollow">http://web.archive.org/web/20080113140326/http%3A//www.sharpgis.net/PermaLink,guid,f5bf2808-4cda-4f41-9ae5-98109efeb8b0.aspx</a></p> <p>Trying to get the sample working.</p> http://stackoverflow.com/questions/1598143/where-do-you-put-classes-that-are-neither-controllers-models-helpers-or-viewmod 2 Where do you put classes that are neither Controllers, Models, Helpers or ViewModels? jonathanconway 2009-10-21T00:40:07Z 2009-10-21T00:53:08Z <p>In an ASP.NET MVC application, what do you do when you have unique classes that aren't controllers, helpers or view-models?</p> <p>For example, say you have a class of utilities that are useful for processing map/location data.</p> <p>These utilities may be used by more than one controller.</p> <p>Would you create a top-level folder/namespace for them and call it 'Maps' or something?</p> http://stackoverflow.com/questions/1558152/using-editorfor-to-render-a-drop-down-list 1 Using EditorFor<> to render a drop-down list jonathanconway 2009-10-13T04:09:47Z 2009-10-13T18:16:26Z <p>So far we can use Html.EditorFor() to dynamically render the appropriate template for a datatype - e.g. string, int, or a custom type, say 'Address'.</p> <p>Now I want to use EditorFor() to render a 'Parent' field. I want a drop-down containing every row, and the user picks a parent from this drop-down.</p> <p>The 'Parent' template has access to the 'ParentID', but what about the names and ID's of rows, to populate the list-box with?</p> <p>Where should these come from?</p> <p>I could put data-access logic in the template, but that would be violating the separation of concerns.</p> <p>I could create an HtmlHelper that renders the list, but wouldn't this also break separation of concerns, since HtmlHelpers should only do UI stuff, not data access?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1553064/getting-the-pixel-co-ordinates-of-a-google-map-marker 1 Getting the pixel co-ordinates of a Google map marker jonathanconway 2009-10-12T06:46:53Z 2009-10-12T09:04:38Z <p>Is it possible to determine the pixel co-ordinates of a given marker, taking into account current zoom level and visible area of the map?</p> http://stackoverflow.com/questions/1535253/how-can-i-generate-images-of-circles-of-varying-sizes 1 How can I generate images of circles, of varying sizes? jonathanconway 2009-10-08T02:10:18Z 2009-10-08T03:27:16Z <p>For the task I'm trying to accomplish, I need to generate many images, all consisting of a black circle border on a transparent background, but each a different size (going up in size from 3x3 to, say, 20x20).</p> <p>Preferably they would be GIFs or PNGs, as these support transparency.</p> <p>I started building a simple C# Console project for this, but I'm wondering if there's already a tool out there that does this, so I can avoid wasting time.</p> http://stackoverflow.com/questions/1529312/doing-custom-binding-for-a-specific-data-type-in-a-modelbinder 1 Doing custom binding for a specific data-type in a ModelBinder jonathanconway 2009-10-07T03:16:52Z 2009-10-07T03:36:23Z <p>I'm in the process of creating my own custom ModelBinder that inherits from DefaultModelBinder, and manually binds XElement-typed properties.</p> <p>Now it seems that I have to override the 'BindProperty' method, like so:</p> <pre><code> protected override void BindProperty( ControllerContext controllerContext, ModelBindingContext bindingContext, System.ComponentModel.PropertyDescriptor propertyDescriptor) { if (propertyDescriptor.PropertyType == typeof(XElement)) { // code here to take the POST-ed form value and put it in the property as an XElement instance } else base.BindProperty(controllerContext, bindingContext, propertyDescriptor); } </code></pre> <p>What code should I be using to:</p> <p>A) get the value of the property from the posted Form values?</p> <p>B) inject this value into the property?</p> <p>I tried running Reflector on the DefaultModelBinder class to see how it does it, but the code was very confusing.</p> <p>I need someone who's done this before to walk me through it.</p> http://stackoverflow.com/questions/1482925/rendering-the-field-name-in-an-editortemplate-rendered-through-editorfor 1 Rendering the field name in an EditorTemplate (rendered through EditorFor()) jonathanconway 2009-09-27T06:17:26Z 2009-09-30T18:53:12Z <p>I'm currently building the Admin back-end for a website in ASP.NET MVC.</p> <p>In an ASP.NET MVC application, I've started using the 'EditorFor' helper method like so:</p> <pre><code>&lt;div id="content-edit" class="data-form"&gt; &lt;p&gt; &lt;%= Html.LabelFor(c =&gt; c.Title) %&gt; &lt;%= Html.TextBoxFor(c =&gt; c.Title)%&gt; &lt;/p&gt; &lt;p&gt; &lt;%= Html.LabelFor(c =&gt; c.Biography) %&gt; &lt;%= Html.EditorFor(c =&gt; c. Biography)%&gt; &lt;/p&gt; &lt;/div&gt; </code></pre> <p>In the model, the 'Biography' field has been decorated with: [UIHelper("Html")].</p> <p>I have an 'Html' partial view (under Views/Shared/EditorTemplates):</p> <pre><code>&lt;%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl&lt;System.XML.Linq.XElement&gt;" %&gt; &lt;textarea class="html"&gt; &lt;%= Model.ToString() %&gt; &lt;/textarea&gt; </code></pre> <p>Now I'd like to have the 'ID' attribute of the 'textarea' set to the name of the field, like this:</p> <pre><code>&lt;textarea id="Biography" class="html"&gt; ... &lt;/textarea&gt; </code></pre> <p>But I can't see a way to do that with the current set up.</p> <p>All I can think of is creating an 'Html' ViewModel that contains a 'Value' property and a 'ControlID' property.</p> <p>But if I based the view off that, rather than 'System.XML.Linq.XElement', it would no longer be compatible with the 'EditorFor' helper method and I'd have to do everything manually.</p> <p>Has anyone had a similar problem yet?</p> http://stackoverflow.com/questions/186062/can-an-asp-net-mvc-controller-return-an-image 19 Can an ASP.Net MVC controller return an Image? jonathanconway 2008-10-09T05:58:17Z 2009-09-29T22:09:10Z <p>Can I create a Controller that simply returns an image asset?</p> <p>I would like to route this logic through a controller, whenever a url such as the following is requested:</p> <p>www.mywebsite.com/resource/image/topbanner</p> <p>The controller will look up "topbanner.png" and send that image directly back to the client.</p> <p>I've seen examples of this where you have to create a View -- I don't want to use a View. I want to do it all with just the Controller.</p> <p>Is this possible?</p> http://stackoverflow.com/questions/1490467/c-code-to-serialize-plain-old-clr-objects-to-json 0 C# code to serialize plain-old-CLR-objects to JSON jonathanconway 2009-09-29T03:40:15Z 2009-09-29T03:43:22Z <p>Within an ASP.NET application, I'd like to serialize a collection of plain-old-CLR-objects (POCO) to a JSON string, which will then be sent down to the client as part of a web response.</p> <p>Is there a light-weight C# library that does this?</p> http://stackoverflow.com/questions/1397795/is-it-a-good-idea-to-put-content-access-logic-in-a-basecontroller 0 Is it a good idea to put content access logic in a BaseController? jonathanconway 2009-09-09T06:06:39Z 2009-09-28T11:17:58Z <p>I'm developing an ASP.NET MVC application where the content for any page can be pulled from the database, if it exists, and displayed on the page.</p> <p>This is to make it possible for non-technical persons to edit the content without having to go into the source code (e.g. views) and change things.</p> <p>The way I'm doing this is, each controller derives from a base controller. The base controller overloads 'OnActionExecuted' and takes this opportunity to pull any content assigned to the current Action/Controller.</p> <p>If the action returns a ViewModel that derives from 'ContentViewModel', it populates the 'Text' property of the ViewModel with the text from the database.</p> <p>And then the text gets rendered by the View.</p> <p>Can you see any weakness to this design?</p> <p>Would it be better if, rather than having a base controller, I had HtmlHelper extensions for pulling content, which I call from the View?</p> <p>One reason I'm asking this is, having my own base controller seems to interfere with calling 'Html.RenderAction', which seems to expect the specified controller to directly inherit from 'System.Web.Mvc.Controller'.</p> http://stackoverflow.com/questions/1408743/asp-net-mvc-current-action-from-controller-code 0 ASP.NET MVC - Current Action from controller code? jonathanconway 2009-09-11T02:49:07Z 2009-09-28T11:03:22Z <p>This is very similar to another recent question:</p> <p><a href="http://stackoverflow.com/questions/362514/asp-net-mvc-current-action">http://stackoverflow.com/questions/362514/asp-net-mvc-current-action</a></p> <p>However, I want to get the name of the current action from within <em>controller</em> code.</p> <p>So within the code of a function that's being called by an Action, I want to get a string of the name of the current Action.</p> <p>Is this possible?</p> http://stackoverflow.com/questions/1469678/hybrid-static-dynamic-google-map 1 Hybrid static/dynamic Google Map jonathanconway 2009-09-24T03:49:29Z 2009-09-24T15:28:39Z <p>Ever noticed that when you go to maps.google.com and do a search (say, car wash), it renders a lot of results (represented by small circles) and a few prominent ones (seen as regular-size pins)?</p> <p>Notice how quickly it does this?</p> <p>From what I can tell from analyzing this in Firebug, much of this is generated on the server and sent to the client as a static image.</p> <p>However, it's still dynamic. You can still zoom in and out, or click on a result and see a dynamic InfoWindow rendered.</p> <p>Google have made the map quick and smooth using static images, while still making it flexible.</p> <p>Is there a way to do this kind of 'pre-loading' with my own Google Map (implemented with the Google Maps API)?</p> http://stackoverflow.com/questions/1458293/passing-a-large-dataset-to-the-client-javascript-arrays-or-json 2 Passing a large dataset to the client - Javascript arrays or JSON? jonathanconway 2009-09-22T05:42:07Z 2009-09-22T06:57:55Z <p>I'm passing a table of up to 1000 rows, consisting of name, ID, latitude and longitude values, to the client.</p> <p>The list will then be processed by Javascript and converted to markers on a Google map.</p> <p>I initially planned to do this with JSON, as I want the code to be readable and easy to deal with, and because we may be adding more structure to it over time.</p> <p>However, my colleague suggested passing it down as a Javascript array, as it would reduce the size greatly.</p> <p>This made me think, maybe JSON is a bit redundant. After all, for each row defined, the name of each field is also being outputted repetitively. Whereas, for an array, the position of the cells is used to indicate the field.</p> <p>However, would there really be a performance improvement by using an array?</p> <p>The site uses GZIP compression. Is this compression effective enough to take care of any redundancy found in a JSON string?</p> <p><strong>[edit]</strong></p> <p>I realize JSON is just a notation.</p> <p>But my real question is - what notation is best, performance-wise?</p> <p>If I use fully named attributes, then I can have code like this:</p> <pre><code>var x = resultset.rows[0].name; </code></pre> <p>Whereas if I don't, it will look less readable, like so:</p> <pre><code>var x = resultset.rows[0][2]; </code></pre> <p>My question is - would the sacrifice in code readability be worth it for the performance gains? Or not?</p> <p><hr /></p> <p>Further notes:</p> <p>According to Wikipedia, the Deflate compression algorithm (used by gzip) performs 'Duplicate string elimination'. <a href="http://en.wikipedia.org/wiki/DEFLATE#Duplicate%5Fstring%5Felimination" rel="nofollow">http://en.wikipedia.org/wiki/DEFLATE#Duplicate%5Fstring%5Felimination</a> </p> <p>If this is correct, I have no reason to be concerned about any redundancy in JSON, as it's already been taken care of.</p> http://stackoverflow.com/questions/1430552/is-it-possible-to-run-an-asp-net-project-and-an-asp-net-mvc-project-side-by-site 0 Is it possible to run an ASP.NET project and an ASP.NET MVC project side-by-site on the same website? jonathanconway 2009-09-16T02:04:29Z 2009-09-16T02:25:31Z <p>I have an existing ASP.NET website with some custom routing, within a Solution that also contains Business Logic projects.</p> <p>I want to create a new project within the Solution, which is an ASP.NET MVC website.</p> <p>This website will also call the Business logic, and the ultimate aim is to port most of the code from ASP.NET to ASP.NET MVC.</p> <p>But I want them to both work side-by-side for now, to ensure minimal down-time, as it's a high-traffic website.</p> <p>Is it possible to accomplish this somehow using either ASP.NET routing or some kind of IIS setting?</p> http://stackoverflow.com/questions/1419918/google-map-infowindow-is-too-wide 0 Google Map InfoWindow is too wide jonathanconway 2009-09-14T06:12:23Z 2009-09-14T06:20:23Z <p>On click of a marker, I'm opening an InfoWindow on a Google Map.</p> <p>The code is like this:</p> <pre><code>var point = new GLatLng( mPointSet.points[i].lat, mPointSet.points[i].long); var marker = new GMarker(point); function createMarker(marker, message) { GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml( $("#marker-popup-template").html()); }); } createMarker(marker); mBigMap.addOverlay(marker); </code></pre> <p>The problem is, even though the that the InfoWindow is being populated with has been styled to be 200 px max-width, the InfoWindow <em>still</em> renders too wide, at around 400 px.</p> <p>Is there a way to make it smaller?</p> http://stackoverflow.com/questions/1408786/maintaining-viewdata-between-renderaction-calls/1409105#1409105 0 Answer by jonathanconway for Maintaining ViewData between RenderAction calls jonathanconway 2009-09-11T05:17:50Z 2009-09-11T05:17:50Z <p>Here's what I've done for the time being. (This probably isn't the most ideal solution.)</p> <p>I created a 'PreserveViewDataAttribute', which I put on any action for which I want to preserve the ViewData in the session.</p> <p>In my BaseController, I overrode the 'Redirect' method with my own method, which does the following.</p> <ol> <li><p>Gets a reference to the Action method that called it (a bit of reflection here)</p></li> <li><p>Checks if this method has the 'PreserveViewDataAttribute' defined on it</p></li> <li><p>If it does, copies the current ViewData to a Session variable. (The label of the variable is the same as the current action name, with '_ViewData' tacked onto the end.)</p></li> <li><p>In either case, calls the base Redirect method.</p></li> </ol> <p>Then I created a property in the BaseController called 'PreservedViewData', which returns the ViewData in session, relevant to the current action. (Or returns null if not found).</p> <p>Thus, to preserve ViewData as long as I want, I need only decorate my action with 'PreserveViewDataAttribute', and then call 'PreservedViewData' whenever I need it.</p> <p>Let me know if you want the source-code to this.</p> http://stackoverflow.com/questions/173025/would-you-take-a-pay-cut-to-get-a-higher-position 3 Would you take a pay-cut to get a higher position? jonathanconway 2008-10-06T02:10:46Z 2009-09-08T19:56:56Z <p>Say you're in a contracting developer role at a bank that pays well and will probably be extended.</p> <p>Then you get offered a permanent role at an IT solution provider as a Senior Developer/Technical Lead.</p> <p>Would you stick with the contracting, or go to the permanent role?</p> <p>The contract role: - pays well - will probably be extended - provides finance industry experience - is reasonably challenging, although I don't get much ownership over the projects</p> <p>The permanent role: - pays less - gives me technical lead/team lead experience- - involves a range of websites for different clients, and I get to take ownership of projects - much more challenging technically, as I have to "earn my stripes" within the team before I'll be given team lead responsibilities.</p> <p>If you were in this situation, would you take the pay-cut and go with the permanent role? Or would you continue contracting, and not feel like you might have missed out on something really good?</p> http://stackoverflow.com/questions/1391887/redirecttoaction-between-areas 0 RedirectToAction between areas? jonathanconway 2009-09-08T03:54:27Z 2009-09-08T05:41:53Z <p>Is there a way to redirect to a specific action/controller on a different Area?</p> http://stackoverflow.com/questions/1391655/error-40-could-not-open-a-connection-to-sql-server-only-on-staging-website 1 Error: 40 - Could not open a connection to SQL Server - only on Staging website jonathanconway 2009-09-08T02:22:56Z 2009-09-08T03:53:19Z <p>I have two ASP.NET websites on a web-server, and two SQL Server databases.</p> <p>I have a folder for Website #1, which contains a web.config with a connection string pointing to Database #1.</p> <p>Under the folder for Website #1 there's a staging folder called 'staging', containing Website #2, and the web.config there has a connection string that points to Database #2.</p> <p>Website #1 works perfectly.</p> <p>But when I try to run Website 2, I <em>always</em> get the following error:</p> <blockquote> <p>A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)</p> </blockquote> <p>I've verified that the connection string is correct and that it's pointing to Database #2.</p> <p>But even when I swap in the connection string from Website #1, which works perfectly on Website #1, it still fails.</p> <p>Here's what the connection string looks like:</p> <pre><code>&lt;connectionStrings&gt; &lt;add name="WebsiteConnectionString" connectionString="Data Source=localhost;Initial Catalog=WebsiteStaging;User Instance = false;User Id=xxxx;Password=yyyy" providerName="System.Data.SqlClient" /&gt; &lt;/connectionStrings&gt; </code></pre> <p>Is there anything unusual going on here that I'm not aware of?</p> http://stackoverflow.com/questions/1553064/getting-the-pixel-co-ordinates-of-a-google-map-marker/1553106#1553106 Comment by jonathanconway on Getting the pixel co-ordinates of a Google map marker jonathanconway 2009-10-12T07:33:44Z 2009-10-12T07:33:44Z Thanks, that's just the method I needed! (Actually it would be: 'map.fromLatLngToContainerPixel(markerPoint.getLatLng(), zoomLevel);' as the first parameter should be a GLatLng object.) http://stackoverflow.com/questions/1482925/rendering-the-field-name-in-an-editortemplate-rendered-through-editorfor Comment by jonathanconway on Rendering the field name in an EditorTemplate (rendered through EditorFor()) jonathanconway 2009-09-27T06:25:00Z 2009-09-27T06:25:00Z Just found a similar question being asked by @nathan-taylor: <a href="http://stackoverflow.com/questions/1329148/asp-net-mvc-solution-layout-suggestions" rel="nofollow" title="asp net mvc solution layout suggestions">stackoverflow.com/questions/1329148/&hellip;</a> http://stackoverflow.com/questions/1469678/hybrid-static-dynamic-google-map/1472436#1472436 Comment by jonathanconway on Hybrid static/dynamic Google Map jonathanconway 2009-09-25T08:34:09Z 2009-09-25T08:34:09Z Hey Chris, sounds like an awesome site. Do you have any of it up on the web yet? Could you send me a link? http://stackoverflow.com/questions/1420377/programming-demotivation-and-further-plans Comment by jonathanconway on Programming (de)motivation and further plans... jonathanconway 2009-09-25T08:04:00Z 2009-09-25T08:04:00Z I wish I was in your situation. I'm depressed at the moment because the guys I'm working with aren't much better than me, and I feel like I'm learning nothing new and my career is stagnating. So don't feel envious. You're in an excellent career position. Learn all you can from these guys, because that knowledge will help move you to the top. http://stackoverflow.com/questions/1419918/google-map-infowindow-is-too-wide/1419936#1419936 Comment by jonathanconway on Google Map InfoWindow is too wide jonathanconway 2009-09-14T06:32:01Z 2009-09-14T06:32:01Z Thanks! Just what I needed! http://stackoverflow.com/questions/1408786/maintaining-viewdata-between-renderaction-calls Comment by jonathanconway on Maintaining ViewData between RenderAction calls jonathanconway 2009-09-11T05:28:33Z 2009-09-11T05:28:33Z Note: Looks like I'm not the only one with this issue: <a href="http://forums.asp.net/t/1438013.aspx" rel="nofollow">forums.asp.net/t/1438013.aspx</a> http://stackoverflow.com/questions/609772/rendering-a-view-on-the-fly/609797#609797 Comment by jonathanconway on Rendering a view on-the-fly jonathanconway 2009-09-04T03:44:18Z 2009-09-04T03:44:18Z This method worked after some modification, except that it resulted in the following error: &quot;Cannot redirect after HTTP headers have been sent&quot;. This is something to do with it sending HTTP headers down the shared Response object, rather than its own stream (sorry, my understanding of the .NET HTTP objects isn't all that). http://stackoverflow.com/questions/1371813/why-does-string-compare-seem-to-handle-accented-characters-inconsistently Comment by jonathanconway on Why does string.Compare seem to handle accented characters inconsistently? jonathanconway 2009-09-03T07:50:35Z 2009-09-03T07:50:35Z @divo Thanks for the reference. Never realized this was possible! http://stackoverflow.com/questions/1371813/why-does-string-compare-seem-to-handle-accented-characters-inconsistently Comment by jonathanconway on Why does string.Compare seem to handle accented characters inconsistently? jonathanconway 2009-09-03T07:21:04Z 2009-09-03T07:21:04Z It's moments like this that I wish the .NET Framework was open-source, so I could just step through in debug mode and figure out exactly what it's doing. http://stackoverflow.com/questions/1355607/averaging-a-set-of-points-on-a-google-map-into-a-smaller-set/1355634#1355634 Comment by jonathanconway on Averaging a set of points on a Google Map into a smaller set jonathanconway 2009-08-31T03:09:22Z 2009-08-31T03:09:22Z Thanks a bunch Alex! I guess clustering was the word I was hunting for. I'll give this K-means clustering a shot. http://stackoverflow.com/questions/1215026/plotting-a-trajectory-over-time-a-movie-using-google-earth-maps Comment by jonathanconway on Plotting a trajectory over time (a movie) using Google Earth/Maps jonathanconway 2009-08-26T06:49:05Z 2009-08-26T06:49:05Z Sounds like a really cool idea. Would you be able to post the URL once you've finished it? http://stackoverflow.com/questions/1322759/two-net-projects-one-db-connection-string/1322822#1322822 Comment by jonathanconway on Two .NET projects, one DB connection string? jonathanconway 2009-08-25T03:46:14Z 2009-08-25T03:46:14Z BTW, I didn't do any downvoting. http://stackoverflow.com/questions/1322759/two-net-projects-one-db-connection-string/1323023#1323023 Comment by jonathanconway on Two .NET projects, one DB connection string? jonathanconway 2009-08-25T03:44:59Z 2009-08-25T03:44:59Z I tried this, but it seems to be getting the connection string from a 'Settings' file under the properties of the Models project. There's some code like this in the class: 'global::Models.Properties.Settings.Default.WebConnectionString, mappingSource)' http://stackoverflow.com/questions/1322759/two-net-projects-one-db-connection-string/1322822#1322822 Comment by jonathanconway on Two .NET projects, one DB connection string? jonathanconway 2009-08-25T03:17:34Z 2009-08-25T03:17:34Z But how will this work, since partial classes must belong in the same assembly? I want the 'Models' assembly to use the connection string from the web.config in the 'Website' assembly. http://stackoverflow.com/questions/1275854/svn-error-when-trying-to-merge-from-a-branch/1275991#1275991 Comment by jonathanconway on SVN error when trying to merge from a branch jonathanconway 2009-08-15T09:19:37Z 2009-08-15T09:19:37Z That would explain why Tortoise defaults to the root path. However in this particular situation, I had to apply the merge to specific files.