User JPrescottSanders - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:10:48Z http://stackoverflow.com/feeds/user/19444 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/685818/neodynamic-barcode-prfessional-for-ssrs 1 Neodynamic Barcode Prfessional for SSRS JPrescottSanders 2009-03-26T13:35:11Z 2009-08-12T08:00:02Z <p>Our application needs to be able to render barcodes to PDF documents that will be accessible over the internet. Our technology stack includes Sql Server Reporting Services so we would like to leverage it and it's ability to render to PDF; however, we are not able to get it to embedded the FREE3OF9.ttf font in any consistent manner. I have reviewed this <a href="http://stackoverflow.com/questions/19437/custom-font-in-sql-server-2005-reporting-services">question</a>, but would like to know if any one has used Neodynamic products particularly their SSRS product and whether or not they were satisfied with it. If anyone has any other solutions besides Neodynamic for rendering barcodes to a PDF via SSRS I would also like to hear those.</p> http://stackoverflow.com/questions/695658/lighthouse-best-practices 1 Lighthouse Best Practices JPrescottSanders 2009-03-29T23:58:48Z 2009-06-03T19:34:09Z <p>I recently started using <a href="http://lighthouseapp.com/" rel="nofollow">Lighthouse</a> to manage a couple of development projects and would like to know what some of the seasoned users consider to be their best practices for maximizing this applications usefulness. Perhaps there are certain tags that make it simpler to track aspects of projects, or more advanced ways to setup milestones than the obvious. </p> http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment 4 ASP.NET MVC on GoDaddy Not Working (Not Primary Domain Deployment) JPrescottSanders 2008-12-13T01:32:26Z 2009-05-11T14:40:32Z <p>I am trying to get ASP.NET MVC working on GoDaddy and I'm not having much luck. I have read the <a href="http://stackoverflow.com/questions/266205/is-there-a-way-that-i-can-run-a-aspnet-mvc-project-on-godaddycom-shared-web-hos">post</a> on SO that covers the subject, but I must have a slightly different configuration or must be missing somehting along the way because the main MVC page comes up, but all links seem to fail and no amount of tweaking the URLs seems to get it to work. A little back ground. I have a single hosting plan with many domains pointed to sub folders of the main domain. Basic ASP.NET web forms pages work just fine, but of course I wanted to try and host a sample MVC site in one of these non-primary domains. You can go to the URL <a href="http://www.jprescottsanders.com/" rel="nofollow">here</a>. As you can see this first page comes up, but if you click on Home or About it doesn't work. Clicking on Home creates this link "http://www.jprescottsanders.com/jps/" and clicking on about creates this link "http://www.jprescottsanders.com/jps/Home/About". As you can see JPS sneaks in there, this of course is the sub folder that i place my web app files in. I would like to know if this is a MVC related issue or a GoDaddy issue. I suspect that MVC may want to sit in the root directory of the site, and when it puts the "jps" into the URLs it breaks the routing mechanisms (but this is conjecture). I know <a href="http://stackoverflow.com/users/19020/dan">Dan</a> said this was possible so I'm hoping he sees this and helps me get to the bottom of this deployment strategy for MVC.</p> http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/811092#811092 1 Answer by JPrescottSanders for What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners! JPrescottSanders 2009-05-01T11:55:40Z 2009-05-01T11:55:40Z <p>You could have your students go to the codeplex IronPython silverlight sample site which includes a &lt; 10 line demonstration of altering a canvas and interacting with the mouse. You can find the silverlight example <a href="http://ironpython.codeplex.com/Wiki/View.aspx?title=SilverlightInteractiveSession" rel="nofollow">here</a></p> <p>Just seeing code written in a web browser and then executing an altering a small WPF might be intoxicating for some.</p> http://stackoverflow.com/questions/749890/mschart-and-asp-net-mvc-partial-view 0 MSChart and ASP.NET MVC Partial View JPrescottSanders 2009-04-15T00:38:06Z 2009-04-25T20:51:29Z <p>I'm currently trying to add an MSChart to a partial view in ASP.NET MVC RTM. I have reviewed the following blog <a href="http://code-inside.de/blog-in/2008/11/27/howto-use-the-new-aspnet-chart-controls-with-aspnet-mvc/" rel="nofollow">entry</a>, and I'm currently investigating Option B. If I take my code an place it inside a View (ASPX) Page and it works fine, but when I copy the exact code into a Partial View (ASCX) I get the following excpetion: "CS1502: The best overloaded method match for 'System.IO.TextWriter.Write(char)' has some invalid arguments ". Has anyone else run into this and solved the issue or do they know why it's impossible to use this strategy with MSChart and MVC?</p> <p>My code is exactly what's in option B on the linked article.</p> http://stackoverflow.com/questions/758526/testing-rss-feeds/758544#758544 0 Answer by JPrescottSanders for Testing RSS feeds JPrescottSanders 2009-04-17T00:09:21Z 2009-04-17T00:09:21Z <p><a href="http://www.newsgator.com/Individuals/FeedDemon/Default.aspx" rel="nofollow">Feed Demon</a></p> http://stackoverflow.com/questions/738816/what-do-you-enjoy-about-programming-and-whats-the-effect-on-the-quality-of-your/738825#738825 7 Answer by JPrescottSanders for What do you enjoy about programming and what's the effect on the quality of your code? JPrescottSanders 2009-04-10T20:51:59Z 2009-04-10T21:09:21Z <p>I enjoy working through a problem and trying to come up with a simple and elegant solution. This results in much more thought than key pounding for the most part.</p> http://stackoverflow.com/questions/732400/table-design/732409#732409 1 Answer by JPrescottSanders for Table design JPrescottSanders 2009-04-09T00:43:07Z 2009-04-09T00:43:07Z <p>I'm not sure I would head down that path. I can understand having a country table and certainly a state table, but a city table that ensures that city belongs to the particular country/state in question. I would just imagine the amount of data that would be necessary in your City FK table would be enormous, and I'm not sure I see the benefit. Perhaps if you could detail a little more what benefit you hoped to derive from having a city table I might be better able to answer this. Most systems I have seen have FK tables for Country and State, but those tables are not necessarily related to one another.</p> http://stackoverflow.com/questions/728268/pull-string-value-out-of-json-object/728284#728284 0 Answer by JPrescottSanders for Pull string value out of JSON object. JPrescottSanders 2009-04-08T02:25:00Z 2009-04-08T02:25:00Z <p>If you are using jQuery's post function you might follow this example found <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">here</a>.</p> <pre><code> $.post("test.php", { func: "getNameAndTime" }, function(data){ alert(data.name); // John console.log(data.time); // 2pm }, "json"); </code></pre> <p>In your case I would suspect that you would call data.data.</p> http://stackoverflow.com/questions/723315/what-site-do-you-specify-when-applying-for-key-to-google-maps/723325#723325 0 Answer by JPrescottSanders for What site do you specify when applying for key to google maps? JPrescottSanders 2009-04-06T21:32:33Z 2009-04-06T21:43:57Z <p>I have always set up the API key to represent the sites future URL. I have seen no issues with using the API key on localhost that was setup for domainname.com, but that may be related to the subset of the Google Map APIs that I utilize. I would use your site's final URL when you set up the key for Google Maps.</p> http://stackoverflow.com/questions/722717/asp-net-mvc-reporting/722734#722734 0 Answer by JPrescottSanders for ASP.NET MVC Reporting JPrescottSanders 2009-04-06T19:06:19Z 2009-04-06T19:06:19Z <p>I was going to suggest the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&amp;DisplayLang=en" rel="nofollow">Microsoft Chart Controls</a>, you can read about them <a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx" rel="nofollow">here</a>; however, I do not recall seeing anything regarding exporting to Excel. To get the data to export to Excel, I would simply let that be part of the request for the page. You may want to give these a look as the exporting to Excel may not need to occur with in the charting controls themselves.</p> http://stackoverflow.com/questions/722559/how-to-recognize-that-an-article-or-demo-about-asp-net-mvc-is-out-of-date/722572#722572 2 Answer by JPrescottSanders for How to recognize that an article or demo about asp.net-mvc is out of date? JPrescottSanders 2009-04-06T18:16:04Z 2009-04-06T18:16:04Z <p>I have run into that issue myself. I generally look at the publish date and if it was published before the release candidates started showing up (Late January 2009) I treated it with caution. I sometimes go as far as to use advanced Google searches to search for articles published after January 2009.</p> <p>Anther good option is to check out information that is to be published in a book since it will (or should) be based on the RTM version. You can view some of Stephen Walther's chapters <a href="http://stephenwalther.com/blog/category/11.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/722217/is-sql-server-2008-management-studio-express-the-same-as-standard/722258#722258 0 Answer by JPrescottSanders for Is SQL Server 2008 Management Studio Express the same as Standard? JPrescottSanders 2009-04-06T16:44:27Z 2009-04-06T16:53:19Z <p>They are different. SSMS Express appears to be somewhat of a hybrid of several standard SQL 2008 applications, each paired down to some extent and packaged together. Read more <a href="http://coolthingoftheday.blogspot.com/2009/02/sql-server-2008-management-studio.html" rel="nofollow">here</a>. You can get more details on SSMSE <a href="http://msdn.microsoft.com/en-us/library/ms365247.aspx" rel="nofollow">here</a>. If I were you I would install the full set of tools from the standard addition.</p> http://stackoverflow.com/questions/712251/how-did-you-get-started-in-programming/712259#712259 0 Answer by JPrescottSanders for How did you get started in programming? JPrescottSanders 2009-04-03T01:31:47Z 2009-04-03T01:31:47Z <p>Parents bought our family an <a href="http://en.wikipedia.org/wiki/Apple%5FIIC" rel="nofollow">Apple IIC</a>... I tried my hand at <a href="http://en.wikipedia.org/wiki/Logo%5F%28programming%5Flanguage%29" rel="nofollow">LOGO</a> and was hooked for life.</p> http://stackoverflow.com/questions/712220/whats-your-choice-for-your-next-asp-net-project-webforms-or-mvc/712237#712237 1 Answer by JPrescottSanders for What's your choice for your next Asp.Net project: WebForms or MVC? JPrescottSanders 2009-04-03T01:21:13Z 2009-04-03T01:21:13Z <p>I would currently choose ASP.NET MVC for 2 reasons: 1) I want to learn to master it. 2) There is already a great community forming around ASP.NET MVC and everyone seems to have very positive entergy regarding it's use. I can't wait to see where it all ends up and I want to be part of it.</p> http://stackoverflow.com/questions/709560/linq-in-line-property-update-during-join 2 LINQ In Line Property Update During Join JPrescottSanders 2009-04-02T12:44:52Z 2009-04-02T13:23:08Z <p>I have two obects, A &amp; B for this discussion. I can join these objects (tables) via a common relationship or foreign key. I am using linq to do this join and I only want to return ObjectA in my result set; however, I would like to update a property of ObejctA with data from ObjectB during the join so that the ObjectAs I get out of my LINQ query are "slightly" different from their original state in the storage medium of choice.</p> <p>Here is my query, you can see that I would just like to be able to do something like objectA.SomeProperty = objectB.AValueIWantBadly</p> <p>I know I could do a new in my select and spin up new OBjectAs, but I would like to avoid that if possible and simply update a field.</p> <pre><code>return from objectA in GetObjectAs() join objectB in GetObjectBs() on objectA.Id equals objectB.AId // update object A with object B data before selecting it select objectA; </code></pre> http://stackoverflow.com/questions/706308/what-are-the-best-practices-for-building-a-community-site/706318#706318 1 Answer by JPrescottSanders for What are the best practices for building a community site? JPrescottSanders 2009-04-01T16:21:49Z 2009-04-01T16:21:49Z <p>I think one of the best qualities of SOF is that the more you immerse yourself in the community of SOF the more reputation you build and the more rights you receive. With the additional rights you can further influence the community as a whole, and hopefully make it better. Your first focus should be to create a site that people want to be part of, and then as they do good things for the site, make sure the site does good things for them.</p> <p>Focus on a symbiotic user/site relationship model.</p> http://stackoverflow.com/questions/702907/what-are-some-good-css-and-js-minimizers-for-production-code/702926#702926 2 Answer by JPrescottSanders for What are some good css and js minimizers for production code? JPrescottSanders 2009-03-31T20:33:09Z 2009-03-31T20:33:09Z <p>I use <a href="http://dean.edwards.name/packer/" rel="nofollow">Packer</a> by Dean Edwards for javascript.</p> http://stackoverflow.com/questions/702235/how-does-a-startup-find-the-best-developers/702274#702274 2 Answer by JPrescottSanders for How does a startup find the best developers? JPrescottSanders 2009-03-31T17:57:38Z 2009-03-31T17:57:38Z <p>I will make the assumption that a tech start up will have at least 1 CTO-esque person. I would want this person to immerse themselves in the development community for the particular platform/framework they are targeting. By involving your self in the development community you can then reach out to individuals that you believe would be a good fit, or reach out to the group at large via other mechanisms (message boards, blogs, <a href="http://jobs.joelonsoftware.com/" rel="nofollow">JOS</a>, etc).</p> http://stackoverflow.com/questions/693874/best-way-to-get-good-with-sql-queries/693898#693898 2 Answer by JPrescottSanders for best way to get good with sql queries JPrescottSanders 2009-03-29T00:53:56Z 2009-03-29T00:53:56Z <p>I have always felt that SQL was something you had to learn by doing. I found my self on a project that forced me to write SQL not stop for several weeks to analyze every aspect of a fairly large database. In many isntances I wrote many SQLs that all resulted in the same results but went about getting them in different ways. Using Sql Server Management Studio's execution path tool I was able to review the query options and improve each and finally pick the "best" for the situation. If you can find a reason or purpose to write a bunch of SQL I beleive that will be the best catalyst you can have for truely learning the art of milking data from the DB.</p> http://stackoverflow.com/questions/693836/asp-net-managing-multiple-web-config-files/693869#693869 2 Answer by JPrescottSanders for asp.net managing multiple web.config files JPrescottSanders 2009-03-29T00:29:56Z 2009-03-29T00:29:56Z <p>You could see if the method outlined on this CodeCarnage <a href="http://www.codecarnage.com/code/post/2008/11/05/web-config-configsource.aspx" rel="nofollow">page</a> suits your needs better. It utilizes the configsource attribute to point to DB and APP settings, each of which are seperated by environment. This could perhaps allow you to keep the consistent stuff in web.config and keep environment specific "stuff" in other config files.</p> http://stackoverflow.com/questions/599652/what-never-events-for-software-development-are-there 19 What "Never Events" for Software Development are there? JPrescottSanders 2009-03-01T11:20:12Z 2009-03-27T09:08:24Z <p>I read an interesting blog entry by K. Scott Allen regarding software development "<a href="http://odetocode.com/Blogs/scott/archive/2009/02/25/12584.aspx" rel="nofollow">Never Events</a>". I thought this would be a good subject to bring up in this forum. For this particular question I would like to focus on the "<a href="http://en.wikipedia.org/wiki/Never%5Fevents" rel="nofollow">Never Events</a>" that are the <strong>most</strong> important to avoid in a software development project. Please answer with a single "Never Event" per answer so that we can see the most heinous events bubble to the top. </p> <p>Never events must be</p> <ol> <li>Measurable</li> <li>Avoidable</li> <li>Have serous implications.</li> </ol> http://stackoverflow.com/questions/677158/stack-overflow-question-routing 1 Stack Overflow Question Routing JPrescottSanders 2009-03-24T12:25:33Z 2009-03-24T12:52:29Z <p>If you review a SO question URL you will see that an ID and a "SLUG" are passed to the Questions controller: <a href="http://stackoverflow.com/questions/676934/what-do-you-need-to-write-your-own-blog-engine">http://stackoverflow.com/questions/676934/what-do-you-need-to-write-your-own-blog-engine</a>. What I find interesting is you can change the "SLUG" portion of the URL without affecting the application's ability to route the request <a href="http://stackoverflow.com/questions/676934/just-a-friendly-test">example</a>. The only way I could think to pull this off is have a route that accepted an id and a "SLUG" and used a route constraint on the slug to ensure it followed a pattern. I had to use a constraint to ensure that having the two variables didn't result in this route matching all requests. Does anyone have a better way to accomplish this, or any examples of more advanced routing scenarios?</p> <h3>ADDITION:</h3> <p>I realize the SLUG is for human readablity, and I would like to duplicate this feature in another application. What is the best way to accomplish this.</p> <h3>Route:</h3> <pre><code>routes.MapRoute( "Id + Slug", // Route name "Test/{id}/{slug}", // URL with parameters new // Parameter defaults { controller = "Test", action = "Details", id = "", slug = "" }, new { slug = new SlugConstraint() } ); </code></pre> <h3>Simple Constraint:</h3> <pre><code>public class SlugConstraint : IRouteConstraint { public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection) { string value = values[parameterName].ToString(); return value.Contains("-"); } } </code></pre> http://stackoverflow.com/questions/671964/asp-net-client-time 2 ASP.NET Client Time JPrescottSanders 2009-03-23T01:19:43Z 2009-03-23T01:44:59Z <p>I would like to be able to display time based on the user's current time zone. I will be storing times in UTC format in my database, but wish to normalize these to the client's time zone. So far the option that seems most viable is to capture the clients time and then deteremine the difference between that and current UTC and use that delta to normalize times when rendering. I would like to know if there are any more straight forward options available to detect and normalize a UTC time to that of the requesting client's machine.</p> http://stackoverflow.com/questions/585729/how-do-i-implement-the-stack-overflow-search-box/585864#585864 0 Answer by JPrescottSanders for How do I implement the Stack Overflow search box? JPrescottSanders 2009-02-25T12:50:24Z 2009-02-25T12:50:24Z <p><a href="http://www.fairwaytech.com/flexbox/Default.aspx" rel="nofollow">FlexBox</a> appears to be another impressive option.</p> http://stackoverflow.com/questions/585729/how-do-i-implement-the-stack-overflow-search-box 0 How do I implement the Stack Overflow search box? JPrescottSanders 2009-02-25T12:06:55Z 2009-02-25T12:50:23Z <p>In the interest of sincere flattery I would like to emulate the search box that Stack Overflow presents its users at the top right of the screen. I would like to be able to duplicate the AJAX/type ahead nature of this text box as closely as possible (but over my own data set). Does anyone know if this is custom built control or does it leverage a pre-existing control or jquery plugin? The implementation is very elegant / intuitive so I would like to mimic it’s functionality.</p> http://stackoverflow.com/questions/520228/is-ruby-strongly-or-weakly-typed/520318#520318 1 Answer by JPrescottSanders for Is ruby strongly or weakly typed ? JPrescottSanders 2009-02-06T13:39:38Z 2009-02-06T13:39:38Z <p>I would consider these languages <a href="http://en.wikipedia.org/wiki/Duck_typing" rel="nofollow">duck typed</a>. </p> http://stackoverflow.com/questions/491542/is-sharepoint-the-right-platform-for-large-erp-applications/491580#491580 2 Answer by JPrescottSanders for Is Sharepoint the right platform for large ERP applications? JPrescottSanders 2009-01-29T13:29:46Z 2009-01-29T13:49:00Z <p>The MS Dynamics AX system utilizes Sharepoint extensively, in fact there are tool kits that allow users to build web parts and so forth that extract data directly out of the base AX objects. Here is a link that talks a little about the Sharepoint integration <a href="http://www.microsoft.com/dynamics/ax/product/sharepointintegration.mspx" rel="nofollow">AX+SP</a>. Currently there is still a significant portion of AX that does not reside within Sharepoint, but their direction appears to Sharepoint enable a significant portion of the application. I do not think that an entire ERP system could reside within the Sharepoint infrastructure, but from an MVC perspective it could certainly become your View infrastructure. It appears to me that this is the very direction MS is heading, but I'm just making hypothesis on their future plans.</p> http://stackoverflow.com/questions/462458/asp-net-mvc-areas-are-they-important-to-a-large-application 5 ASP.NET MVC Areas: Are they important to a large application? JPrescottSanders 2009-01-20T18:23:38Z 2009-01-22T23:10:16Z <p>I am in the process of developing a large ASP.NET MVC application. I am currently working through the mechanisms I'll use to structure my controllers/views. I have see some mention of monorail and it's use of "areas". I have reviewed <a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" rel="nofollow">Haacked's</a> article and it looks like an intresting option. What I would like to know is whether or not anyone has implemented areas in a produciton ASP.NET MVC application and if they have are there any online resources that might help implement the areas and justify their existence.</p> http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment/365167#365167 2 Answer by JPrescottSanders for ASP.NET MVC on GoDaddy Not Working (Not Primary Domain Deployment) JPrescottSanders 2008-12-13T12:40:56Z 2008-12-13T12:40:56Z <p>I followed the following instructions on <a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">Haacked's site</a>. At the very bottom of the walk through he talks about depoloying in a virtual directory and a change that must be made in the Default.aspx.cs file. You basically need to add false in the following call:</p> <pre><code>HttpContext.Current.RewritePath(Request.ApplicationPath, false); </code></pre> <p>This seems to have resolved the bulk of my issues.</p> http://stackoverflow.com/questions/749890/mschart-and-asp-net-mvc-partial-view/750147#750147 Comment by JPrescottSanders on MSChart and ASP.NET MVC Partial View JPrescottSanders 2009-04-15T11:17:18Z 2009-04-15T11:17:18Z I was so focused on the MSChart portion of the code that I never investigated the more basic components, thanks for shedding light on this. +1 (wish I could do more) http://stackoverflow.com/questions/723315/what-site-do-you-specify-when-applying-for-key-to-google-maps/723325#723325 Comment by JPrescottSanders on What site do you specify when applying for key to google maps? JPrescottSanders 2009-04-06T21:35:56Z 2009-04-06T21:35:56Z What issues have you had, I have had none running local with a specific key? What API functions were you using that resulted in the issues? http://stackoverflow.com/questions/712220/whats-your-choice-for-your-next-asp-net-project-webforms-or-mvc/712237#712237 Comment by JPrescottSanders on What's your choice for your next Asp.Net project: WebForms or MVC? JPrescottSanders 2009-04-05T00:42:00Z 2009-04-05T00:42:00Z Gupta: My answer had nothing to do with the Webforms community, it was based on what I'm witnessing in the ASP.NET MVC community. I like the energy that everyone has regarding MVC, and I think that energy will help make it a great option when building web apps. http://stackoverflow.com/questions/709560/linq-in-line-property-update-during-join/709576#709576 Comment by JPrescottSanders on LINQ In Line Property Update During Join JPrescottSanders 2009-04-02T13:01:12Z 2009-04-02T13:01:12Z I tried this an the above comment is correct... no go. http://stackoverflow.com/questions/709560/linq-in-line-property-update-during-join/709577#709577 Comment by JPrescottSanders on LINQ In Line Property Update During Join JPrescottSanders 2009-04-02T13:00:35Z 2009-04-02T13:00:35Z I am pulling from a DB, but I don't want these changes to be posted back to the DB, it's just allow this &quot;new&quot; object A to carry with it some different data. http://stackoverflow.com/questions/677158/stack-overflow-question-routing/677193#677193 Comment by JPrescottSanders on Stack Overflow Question Routing JPrescottSanders 2009-03-24T14:58:41Z 2009-03-24T14:58:41Z I realize the slug isn't required, I wanted to know how to get the same functionality (for search engines)... the accepted answer led me to a solution for handling this sort of carry along data. http://stackoverflow.com/questions/677158/stack-overflow-question-routing/677178#677178 Comment by JPrescottSanders on Stack Overflow Question Routing JPrescottSanders 2009-03-24T12:46:35Z 2009-03-24T12:46:35Z Can you give an example of how the route entry might be structured? http://stackoverflow.com/questions/671964/asp-net-client-time Comment by JPrescottSanders on ASP.NET Client Time JPrescottSanders 2009-03-23T01:24:30Z 2009-03-23T01:24:30Z I considered that... but I'll consider it a win if I can just base it on their time (right or wrong) :). http://stackoverflow.com/questions/599652/what-never-events-for-software-development-are-there Comment by JPrescottSanders on What "Never Events" for Software Development are there? JPrescottSanders 2009-03-02T00:09:07Z 2009-03-02T00:09:07Z ShuggyCoUk: OK, we are on the same page, thanks for the good answers/comments. http://stackoverflow.com/questions/599652/what-never-events-for-software-development-are-there Comment by JPrescottSanders on What "Never Events" for Software Development are there? JPrescottSanders 2009-03-01T14:24:55Z 2009-03-01T14:24:55Z ShuggyCoUk: I think this sites thrives on the subjective nature of some of the questions, thats where votes come in... they allow the community to push the best subjective content to the top. I do think that the answers to this question are important so I wanted it in this public forum. http://stackoverflow.com/questions/585729/how-do-i-implement-the-stack-overflow-search-box Comment by JPrescottSanders on How do I implement the Stack Overflow search box? JPrescottSanders 2009-02-25T12:35:33Z 2009-02-25T12:35:33Z It appears you are correct in regards to the source of that boxes information; however, I would like they same look/feel but with dynamic data from a db. I think the answer below will get me there. http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment/445061#445061 Comment by JPrescottSanders on ASP.NET MVC on GoDaddy Not Working (Not Primary Domain Deployment) JPrescottSanders 2009-01-21T00:23:37Z 2009-01-21T00:23:37Z yes, following the directions in the link above i was able to solve the issue. http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment/419068#419068 Comment by JPrescottSanders on ASP.NET MVC on GoDaddy Not Working (Not Primary Domain Deployment) JPrescottSanders 2009-01-08T13:29:05Z 2009-01-08T13:29:05Z Have you corrected the rewrite path call in the Default.aspx.cs page? http://stackoverflow.com/questions/364637/asp-net-mvc-on-godaddy-not-working-not-primary-domain-deployment Comment by JPrescottSanders on ASP.NET MVC on GoDaddy Not Working (Not Primary Domain Deployment) JPrescottSanders 2008-12-13T12:18:06Z 2008-12-13T12:18:06Z I have reached out to GoDaddy as well, but if this issue is particular to MVC and/or GoDaddy I felt SO was the place to log it. I also beleive one of the goals of SO is to aggregate as much of these problems/solutions as possible, as long as they are programming related. http://stackoverflow.com/questions/222410/how-should-i-manage-developing-on-sql-server-2008-and-sql-server-2005-for-differe Comment by JPrescottSanders on How should I manage developing on SQL Server 2008 and SQL Server 2005 for different clients? JPrescottSanders 2008-10-23T01:34:10Z 2008-10-23T01:34:10Z Another benefit is the ablity to recover from a hardware failure. If you keep your VPCs on a portable harddrive then a failure of your main system simply results in you moving the hard drive to another machine and installing VPC.