User Lance Fisher - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:02:06Z http://stackoverflow.com/feeds/user/571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/283225/is-the-net-micro-framework-a-good-way-to-start-with-embedded-programming 1 Is the .NET Micro Framework a good way to start with embedded programming? Lance Fisher 2008-11-12T07:10:49Z 2009-12-01T10:40:52Z <p>How does the .NET Micro Framework with a dev board compare to something like an Arduino, or Nintendo DS for starting with embedded programming?</p> http://stackoverflow.com/questions/1818475/replacement-or-migration-strategy-for-excel-access/1818490#1818490 1 Answer by Lance Fisher for Replacement or Migration strategy for Excel/Access Lance Fisher 2009-11-30T08:20:15Z 2009-11-30T08:20:15Z <p>If it's mission critical, and it's in Access or Excel, is built poorly, and no one understands it, it is probably time to rebuild it properly.</p> http://stackoverflow.com/questions/1817981/render-ascx-page-into-aspx-page-using-javascript-jquery/1818447#1818447 1 Answer by Lance Fisher for render .ascx page into .aspx page using javascript, jquery Lance Fisher 2009-11-30T08:09:32Z 2009-11-30T08:09:32Z <p>Your JavaScript call is going to make another trip through the MVC Pipeline. So it will hit routing, a controller, and then a view. Your JavaScript should not try to hit the ascx file directly, but a route that maps to a controller that renders the view.</p> <p>Your JS should look like this (note this is using a root relative URL, you may have to adjust):</p> <pre><code>$("#Renderthisdiv").load("/template/temp1"); </code></pre> <p>Alternately, you can use an HTML helper to get the URL, but the JS will have to be in your view:</p> <pre><code>$("#Renderthisdiv").load("&lt;%= Html.Action("temp1", "template") %&gt;"); </code></pre> <p>That URL will hit the Temp1 action on the TemplateController</p> <pre><code>public class TemplateController : Controller { public ViewResult Temp1() { return View("Temp1"); } } </code></pre> http://stackoverflow.com/questions/1761231/jquery-ajax-getscript-method/1761296#1761296 2 Answer by Lance Fisher for Jquery Ajax $.getScript() method Lance Fisher 2009-11-19T06:33:43Z 2009-11-19T06:43:29Z <p>$.getScript will load and execute JavaScript. If you want to just load the javascript, you will have to put the javascipt in a function, and then execute that function when a future event occurs.</p> <p>suppose you call:</p> <pre><code>$.getScript('http://example.com/hello.js'); </code></pre> <p>and it contains the following:</p> <pre><code>function Hello() { alert('hello'); } </code></pre> <p>The javascript will be executed, but since the alert is in the function it won't be ran. It won't be ran until you call the function Hello(). So for the second part, suppose you want to wire it so that when a link is clicked the Hello() function is ran. You can provide a callback to run after the javascript is loaded. So you could do this:</p> <pre><code>$.getScript('http://example.com/hello.js', function() { Hello(); }); </code></pre> <p>After the script is loaded, that will set a click event handler on your links which will call the Hello function.</p> http://stackoverflow.com/questions/10042/how-do-i-implement-a-linked-list-in-java 5 How do I implement a Linked List in Java? Lance Fisher 2008-08-13T16:29:22Z 2009-11-16T07:12:35Z <p>What's the best way to make a linked list in Java?</p> http://stackoverflow.com/questions/1727309/webforms-and-asp-net-mvc-co-existance/1727393#1727393 0 Answer by Lance Fisher for WebForms and ASP.NET MVC co-existance. Lance Fisher 2009-11-13T05:58:19Z 2009-11-13T05:58:19Z <p>It's easier to start with an MVC project, and then start adding WebForms pages. </p> <p>For your error, you will need to add references for the following assemblies:</p> <ul> <li>System.Web.Mvc</li> <li>System.Web.Routing</li> <li>System.Web.Abstractions</li> </ul> <p>There will be much more to add in the web.config to get MVC working correctly. To get it all, I'd suggest creating an MVC project, and merging the web.config files.</p> http://stackoverflow.com/questions/1727326/css-working-only-in-firefox/1727381#1727381 2 Answer by Lance Fisher for CSS working only in Firefox. Lance Fisher 2009-11-13T05:53:05Z 2009-11-13T05:53:05Z <p>It looks to me like the input[type=text] and the input[type=image] both do not fit in the container, and the top margin for the input[type=text] is shoving it way down. </p> <p>Making the width on the form a little wider seems to do the trick in IE8. </p> <p>If you are going to support IE6, keep in mind the broken box model, and don't specify both padding and margin on the same element.</p> http://stackoverflow.com/questions/1727111/anyone-feel-like-passing-it-forward/1727345#1727345 0 Answer by Lance Fisher for Anyone feel like passing it forward? Lance Fisher 2009-11-13T05:41:52Z 2009-11-13T05:41:52Z <p>Check out your local .NET Users Group. You can usually find some good local developers there to talk code with.</p> http://stackoverflow.com/questions/1727272/ado-net-entity-data-model-are-not-precise-enough/1727337#1727337 1 Answer by Lance Fisher for ADO.NET Entity Data Model are not precise enough Lance Fisher 2009-11-13T05:39:41Z 2009-11-13T05:39:41Z <p>What database are you using? If this is really the case, there could be an error in the provider.</p> http://stackoverflow.com/questions/415730/fxcop-rule-that-checks-for-notimplementedexceptions 1 FxCop rule that checks for NotImplementedExceptions Lance Fisher 2009-01-06T07:34:00Z 2009-11-06T22:26:21Z <p>I'd like to have the nightly build check for how many NotImplementedExeptions there are in my .NET code so hopefully we can remove them all before releasing. My first thought is that FxCop might be a good tool to do this. Does anyone have a custom FxCop rule for this? How would I go about creating one myself?</p> http://stackoverflow.com/questions/347377/in-asp-net-when-should-i-use-session-clear-rather-than-session-abandon 5 In ASP.NET, when should I use Session.Clear() rather than Session.Abandon()? Lance Fisher 2008-12-07T08:14:50Z 2009-10-30T04:48:19Z <p>Both Session.Clear() and Session.Abandon() get rid of session variables. As I understand it, Abandon() ends the current session, and causes a new session to be created thus causing the End and Start events to fire.</p> <p>It seems preferable to call Abandon() in most cases, such as logging a user out. Are there scenarios where I'd use Clear() instead? Is there much of a performance difference?</p> http://stackoverflow.com/questions/11915/rss-feeds-in-asp-net-mvc 23 RSS Feeds in ASP.NET MVC Lance Fisher 2008-08-15T02:56:41Z 2009-10-29T11:42:25Z <p>How would you reccommend handling RSS Feeds in ASP.NET MVC? Using a third party library? Using the RSS stuff in the BCL? Just making an RSS view that renders the XML? Or something completely different?</p> http://stackoverflow.com/questions/1639707/asp-net-mvc-requirehttps-in-production-only/1640122#1640122 6 Answer by Lance Fisher for ASP.NET MVC RequireHttps in Production Only Lance Fisher 2009-10-28T21:08:11Z 2009-10-28T21:08:11Z <p>Deriving from RequireHttps is a good approach. </p> <p>To side step the issue entirely, you can use IIS on your local machine with a self-signed certificate too. IIS is faster than the built-in webserver, and you have the advantage that your development environment is more like production.</p> http://stackoverflow.com/questions/1611655/for-loop-statement-outputs-that-links-to-differnent-controllers-in-asp-net-mvc/1611774#1611774 1 Answer by Lance Fisher for for loop statement outputs that links to differnent controllers in asp.net mvc Lance Fisher 2009-10-23T06:56:26Z 2009-10-23T06:56:26Z <p>You should be able to generate the second argument for the ActionLink method, based on a news type field or similar in your table. e.g.</p> <pre><code>&lt;% Dim newsType As String = dNews.Rows(dCount).Item("newsType") Dim controllerName As String Dim actionName as String ' I'm guessing you have a field similar to this: If (newsType = "Com. News") then controllerName = "Community" actionName = "CommunityNews" End If If (newsType = "Ath. News") then controllerName = "Athletics" actionName = "AthleticsNews" End If %&gt; &lt;%=Html.ActionLink(dTitle, actionName, controllerName, New With {Id = id})%&gt; </code></pre> <p>This should do the trick, but I would start to worry that there is getting to be too much code in the view. It might not be a good idea to pass DataTables in as your model, but it could take a lot of work to change that at this point.</p> <p>You could create a helper method that will return the controller and action for a certain news type, or better yet, generate a link given the news type. You can do that by creating a class with extension methods for the HtmlHelper class. That method would look similar to this:</p> <pre><code>&lt;Extension()&gt; _ Public Sub NewsLink(ByVal htmlHelper As HtmlHelper, newsType as string, linkText As String, id As int) Dim action As String Dim controller As String 'todo: logic to get action and controller names from news type return htmlHelper.ActionLink(linkText, action, controller, New With {Id = id}) End Sub </code></pre> <p>Good luck. I think there are less people using VB.NET than C# with MVC.</p> http://stackoverflow.com/questions/1591868/c-listt-contains-test/1591882#1591882 10 Answer by Lance Fisher for C# List<T> Contains test Lance Fisher 2009-10-20T00:33:41Z 2009-10-20T00:33:41Z <p>You don't have to test to remove. Remove() will return false if it didn't remove anything.</p> <p>If you don't want duplicate items in your list you can test, before adding. Otherwise, you'll have duplicates.</p> <p>See also: <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx</a></p> http://stackoverflow.com/questions/1591814/is-it-possible-to-update-3-sql-rows-in-1-sql-update-statement/1591835#1591835 0 Answer by Lance Fisher for Is it possible to update 3 sql rows in 1 sql update statement Lance Fisher 2009-10-20T00:20:56Z 2009-10-20T00:20:56Z <p>Try something like this:</p> <pre><code>update Orders set Order = ( case when id = 3 then 1 when id = 5 then 4 when id = 1 then 1 where id in (3, 5, 1) </code></pre> <p>Depends on your database though.</p> http://stackoverflow.com/questions/1587325/c-excel-import-data-from-csv-into-excel/1587488#1587488 1 Answer by Lance Fisher for C# Excel import data from CSV into Excel Lance Fisher 2009-10-19T08:16:10Z 2009-10-19T08:16:10Z <p>You could open Excel, start recording a macro, do what you want, then see what the macro recorded. That should tell you what objects to use and how to use them.</p> http://stackoverflow.com/questions/1091735/is-there-a-hosted-couchdb-service-provider/1570881#1570881 1 Answer by Lance Fisher for Is there a hosted CouchDB service provider? Lance Fisher 2009-10-15T07:51:03Z 2009-10-15T07:51:03Z <p>I'm a .NET developer, and I've been playing with CouchDB. I have it running on a Ubuntu Server in a Hyper-V VM on Hyper-V Server, and I have been making calls to it with C# code. It has worked fine for me to connect to, except for the fact it is on a different machine (which is how it will be deployed anyway).</p> <p>Tonight I just installed CouchDB 0.10 on Windows 7 64-bit. It seems to be working fine locally. I haven't been able to replicate from my server though. The server is running an older version I build from source so that could be the problem.</p> <p>I'd recommend installing it on Windows. It was pretty painless. Here are the downloads you'll need: <a href="http://wiki.apache.org/couchdb/Windows%5Fbinary%5Finstaller" rel="nofollow">http://wiki.apache.org/couchdb/Windows%5Fbinary%5Finstaller</a>. I installed the 32 bit version of everything. Once it's all installed, just run "Start CouchDB" on your start menu. It runs a batch file.</p> http://stackoverflow.com/questions/1558924/show-sql-executed-per-request-in-asp-net-mvc-using-linq-to-sql 0 Show SQL executed per request in ASP.NET MVC using LINQ to SQL Lance Fisher 2009-10-13T08:35:00Z 2009-10-13T09:11:00Z <p>Is it possible to show the SQL that was executed for a particular request in an ASP.NET MVC app? I would like to show how many queries, and what they were on the bottom of pages during debugging.</p> http://stackoverflow.com/questions/1558767/how-to-select-only-the-immediate-children-of-an-element-in-jquery/1558884#1558884 0 Answer by Lance Fisher for How to select only the immediate children of an element in jQuery Lance Fisher 2009-10-13T08:24:44Z 2009-10-13T08:37:56Z <p>What is the parent element for your parent table? Try using a descendant selector with it. e.g. If your parent table is directly under the body:</p> <pre><code>$("body &gt; table &gt; tr:odd &gt; td").css({"background-color":"rgb(233,247,255)"}); </code></pre> <p>or if you've specified tbody in the markup:</p> <pre><code>$("body &gt; table &gt; tbody &gt; tr:odd &gt; td").css({"background-color":"rgb(233,247,255)"}); </code></pre> http://stackoverflow.com/questions/1558745/jquery-ajax-load-callback-firing-before-load-completed/1558797#1558797 1 Answer by Lance Fisher for Jquery Ajax Load callback firing before load completed Lance Fisher 2009-10-13T08:00:49Z 2009-10-13T08:00:49Z <p>The easiest way would probably be to use jQuery's live events. These are automatically rebound when new content is injected into the document. Instead of this line:</p> <pre><code>$("a.CostActivityDeleteImage").click(function() { </code></pre> <p>You can use this:</p> <pre><code>$("a.CostActivityDeleteImage").live('click', function() { </code></pre> http://stackoverflow.com/questions/1558514/asp-net-mvc-uses-a-delegate-field-as-an-action-method/1558668#1558668 2 Answer by Lance Fisher for ASP.NET MVC: Uses a delegate field as an action method? Lance Fisher 2009-10-13T07:24:07Z 2009-10-13T07:55:42Z <p>You will probably have to build your own Controller factory. This class builds controllers, and implements IControllerFactory. You can inherit from DefaultControllerFactory. Override CreateController() to return your own IController. </p> <p>Register your controller factory in Application_Start() of MvcApplication using this line:</p> <pre><code>ControllerBuilder.Current.SetControllerFactory(typeof(MyControllerFactory)); </code></pre> <p>In your implementation of IController, override the Execute method. You can use the RequestContext to decide which delegate to invoke. It would probably be easiest to inherit from ControllerBase, and override Execute in there if you don't want to fully implement IController.</p> <p>The RequestContext passed into Execute carries a RouteData object. This is a dictionary populated by the routing engine that tells you what action should be invoked, and any parameters. You can get the action name like this:</p> <pre><code>//context is a RequestContext object passed to IController.Execute() string actionName = requestContext.RouteData.Values["action"]; </code></pre> <p>You could even define your action as a dictionary, and just pull them out once you get the action name.</p> <p>One last thing, normal action methods return an ActionResult, which the framework uses to decide which view to render. Once you execute your delegates, I think you'll have to set some stuff manually in your special base controller. I'm not exactly sure what to set or how to get your View executed from here without cracking open the MVC source.</p> <p>Good luck! This looks like an interesting idea.</p> http://stackoverflow.com/questions/1383442/is-there-a-version-of-jquery-somewhere-that-i-can-hotlink-to-without-hosting-the/1558630#1558630 0 Answer by Lance Fisher for Is there a version of jQuery somewhere that I can hotlink to without hosting the file? Lance Fisher 2009-10-13T07:14:03Z 2009-10-13T07:14:03Z <p>Microsoft is now hosting jQuery as well: <a href="http://www.asp.net/ajax/cdn/#4" rel="nofollow">http://www.asp.net/ajax/cdn/#4</a></p> http://stackoverflow.com/questions/1555622/jquery-and-links-strange-situation/1555754#1555754 0 Answer by Lance Fisher for JQuery and links - strange situation Lance Fisher 2009-10-12T17:04:40Z 2009-10-12T17:04:40Z <p>Just a hunch, try putting a "return;" or "debugger;" as the last line of your function. I'm wondering if hitting the link is causing the console to be cleared.</p> http://stackoverflow.com/questions/449853/my-resharper-gutter-icons-for-unit-tests-arent-showing 0 My ReSharper Gutter Icons for Unit Tests aren't showing Lance Fisher 2009-01-16T08:36:57Z 2009-10-10T12:00:02Z <p>I've installed ReSharper 4.1 and Gallio 3.0.5, but I don't get the gutter icons for unit tests. The tests seem to run fine in the Test Explorer, but I don't have icons next to the tests in code. What could be causing this? I previously had the MbUnit 2.4 ReSharper plugin installed, but it should be uninstalled now.</p> http://stackoverflow.com/questions/4034/multiple-languages-in-an-asp-net-mvc-application 6 Multiple languages in an ASP.NET MVC application? Lance Fisher 2008-08-06T21:43:33Z 2009-10-09T14:24:50Z <p>What is the best way to support multiple languages for the interface in an ASP.NET MVC application. I've seen people use resource files for other applications. Is this still the best way?</p> http://stackoverflow.com/questions/1540805/javascript-problem-rss-feed-display/1540918#1540918 0 Answer by Lance Fisher for javascript problem, rss feed display Lance Fisher 2009-10-08T22:42:17Z 2009-10-08T22:42:17Z <p>Oh man, why are you using XMLHttpRequest directly? Use a library for that, and make your life easier :)</p> <p>You could be running into cross-site scripting security problems. If the RSS feeds exist on a different domain than the page running the JavaScript, the browser will not let your JavaScript make the requests.</p> http://stackoverflow.com/questions/1495683/is-it-secure-to-post-credit-card-data-from-view-to-controller/1536379#1536379 1 Answer by Lance Fisher for Is it secure to POST Credit Card data from View to Controller? Lance Fisher 2009-10-08T08:18:32Z 2009-10-08T08:18:32Z <p>Posting with SSL like Rex M mentioned is definitely the first step. You should probably make the page where they are typing their credit card number SSL as well. This will give your users the green URL of comfort. </p> <p>You should also include protection against <a href="http://haacked.com/archive/2009/04/02/anatomy-of-csrf-attack.aspx" rel="nofollow">CSRF</a> attacks. Use the anti-forgery token.</p> <p>Also, you should use the <a href="http://devlicio.us/blogs/tim%5Fbarcz/archive/2008/08/22/prg-pattern-in-the-asp-net-mvc-framework.aspx" rel="nofollow">PRG (Post, Redirect, Get) pattern</a> to make sure that the credit card numbers aren't submitted twice. After the post, don't just render a different view, send a redirect so their browser does a GET against another URL - probably your confirmation page.</p> <p>You'll run into a few ASP.NET MVC specific things:</p> <ol> <li><p>If you have some http pages and some https pages, how will you code the links to the https pages from the http pages. You can hard code them, but you'll have to hard code the domain and protocol. You can't just use &lt;%= Html.ActionLink(... see this <a href="http://stackoverflow.com/questions/156748/ssl-pages-under-asp-net-mvc">SO question</a> for more details.</p></li> <li><p>You'll want to make sure you can't hit your controllers when you are not using SSL. This will help you catch any errors, and ensure that no one uses http instead of https. See the [RequireSsl] attribute in the futures assembly. Here's a blog post about it from <a href="http://blog.salvoz.com/2009/04/25/PartialSSLAndAuthorizationWithAspNetMVCRevisited.aspx" rel="nofollow">Adam Salvo</a></p></li> </ol> http://stackoverflow.com/questions/10061/gps-apis 2 GPS APIs Lance Fisher 2008-08-13T16:45:03Z 2009-10-07T22:16:46Z <p>I'm looking for a GPS with a good API. I would like to be able to send an address to it, and tell it to navigate to that address. I also need to pull the current location from the GPS. I'd like to be able to do this with the GPS hooked up to a laptop by bluetooth or even just a USB cable.</p> <p>I've looked at the Dash a little, but the monthly subscription is a downside. Also, I would like to keep the location and addresses on our private network.</p> <p>I'm a .NET programmer, so a .NET friendly API is best for me.</p> <p>Bonus points if you can show me some examples of using an API to push and pull data to and from the GPS. Thanks.</p> http://stackoverflow.com/questions/392280/what-is-the-algorithm-used-to-generate-those-little-gravatar-identicon-images/392288#392288 7 Answer by Lance Fisher for what is the algorithm used to generate those little gravatar identicon images? Lance Fisher 2008-12-24T22:23:32Z 2009-10-02T19:17:33Z <p>They are called <a href="http://en.wikipedia.org/wiki/Identicon" rel="nofollow">Identicons</a>. The <a href="http://www.gravatar.com" rel="nofollow">Gravatar</a> identicon image is based off of an MD5 hash of your email address. Here is an <a href="http://www.puls200.de/?p=316" rel="nofollow">identicon implmentation</a> if you are using .NET. There are other implementations listed in the Wikipedia article as well.</p> http://stackoverflow.com/questions/609423/mobile-redirect/609429#609429 Comment by Lance Fisher on Mobile Redirect Lance Fisher 2009-10-27T07:28:00Z 2009-10-27T07:28:00Z I would send iPhones to the mobile site too, and provide a link to the main site if they want it. A mobile site should be designed for a small screen, and optimized for slow connection. iPhones will like that too. http://stackoverflow.com/questions/1533357/what-ticketing-system-do-you-recommend/1533407#1533407 Comment by Lance Fisher on What Ticketing System Do You Recommend? Lance Fisher 2009-10-20T07:47:21Z 2009-10-20T07:47:21Z In JIRA's user-based pricing, who is a user? Only the developers, or anyone who submits bugs? http://stackoverflow.com/questions/1587421/is-attaching-functions-to-the-jquery-object-bad-practice/1587469#1587469 Comment by Lance Fisher on Is attaching functions to the jQuery object bad practice? Lance Fisher 2009-10-19T08:17:55Z 2009-10-19T08:17:55Z Yes. This is how plugins are built. http://stackoverflow.com/questions/1587325/c-excel-import-data-from-csv-into-excel/1587327#1587327 Comment by Lance Fisher on C# Excel import data from CSV into Excel Lance Fisher 2009-10-19T08:13:46Z 2009-10-19T08:13:46Z And down the rabbit hole of homegrown CSV parsers. How do you handle invalid CSV files, etc, etc. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568179#1568179 Comment by Lance Fisher on How can I convince a client that audio on a website is a bad idea? Lance Fisher 2009-10-14T18:42:37Z 2009-10-14T18:42:37Z I don't think the customer is always right. We've just heard everyone say that so much we think it's true. http://stackoverflow.com/questions/1558924/show-sql-executed-per-request-in-asp-net-mvc-using-linq-to-sql/1558989#1558989 Comment by Lance Fisher on Show SQL executed per request in ASP.NET MVC using LINQ to SQL Lance Fisher 2009-10-13T16:37:15Z 2009-10-13T16:37:15Z I think that will do exactly what I want. Thanks! http://stackoverflow.com/questions/1558924/show-sql-executed-per-request-in-asp-net-mvc-using-linq-to-sql/1558946#1558946 Comment by Lance Fisher on Show SQL executed per request in ASP.NET MVC using LINQ to SQL Lance Fisher 2009-10-13T16:36:38Z 2009-10-13T16:36:38Z Thanks, I didn't know the Log property existed! http://stackoverflow.com/questions/1558767/how-to-select-only-the-immediate-children-of-an-element-in-jquery/1558884#1558884 Comment by Lance Fisher on How to select only the immediate children of an element in jQuery Lance Fisher 2009-10-13T08:38:14Z 2009-10-13T08:38:14Z Thanks, I've incorporated your comment into my answer. http://stackoverflow.com/questions/1558767/how-to-select-only-the-immediate-children-of-an-element-in-jquery/1558773#1558773 Comment by Lance Fisher on How to select only the immediate children of an element in jQuery Lance Fisher 2009-10-13T08:21:37Z 2009-10-13T08:21:37Z This still selects cell in the child table because it has its own tr elements. http://stackoverflow.com/questions/1558514/asp-net-mvc-uses-a-delegate-field-as-an-action-method/1558610#1558610 Comment by Lance Fisher on ASP.NET MVC: Uses a delegate field as an action method? Lance Fisher 2009-10-13T07:28:42Z 2009-10-13T07:28:42Z Maybe not possible with the default controller, but there are some good extension points in ASP.NET MVC to plug in your own controllers and change the way things work. http://stackoverflow.com/questions/1555622/jquery-and-links-strange-situation/1555754#1555754 Comment by Lance Fisher on JQuery and links - strange situation Lance Fisher 2009-10-12T18:19:55Z 2009-10-12T18:19:55Z Sounds like the jquery click event is not getting bound to the link. Try adding an id to the link and using it to select the anchor element, and see if that makes a difference. http://stackoverflow.com/questions/1431763/how-to-upload-video-in-asp-net-mvc/1546636#1546636 Comment by Lance Fisher on how to upload video in asp.net mvc Lance Fisher 2009-10-10T00:41:30Z 2009-10-10T00:41:30Z I would just get rid of the Html.BeginForm() and End Using. &lt;form&gt;&lt;/form&gt; is clearer to me. http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/104789#104789 Comment by Lance Fisher on What was your first home computer? Lance Fisher 2009-10-07T19:09:06Z 2009-10-07T19:09:06Z I had a 286, and taught myself Q-Basic. That's when I started programming. http://stackoverflow.com/questions/1371527/visual-studio-2008-web-project-problem-with-png-files Comment by Lance Fisher on Visual Studio 2008 Web Project problem with PNG files Lance Fisher 2009-09-03T05:37:54Z 2009-09-03T05:37:54Z What browser are you using? What is the url in the address bar, and what is the src of the image when you view source? http://stackoverflow.com/questions/1356021/structuremap-automatically-register-descendant-classes/1370657#1370657 Comment by Lance Fisher on StructureMap automatically register descendant classes Lance Fisher 2009-09-02T23:47:47Z 2009-09-02T23:47:47Z Cool! Thanks! I'll give this a try in a couple weeks when I get back from vacation.