User Jason - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:43:08Z http://stackoverflow.com/feeds/user/1338 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1785986/how-to-get-amazon-seller-central-orders-programmatically/1786158#1786158 0 Answer by Jason for How to get Amazon Seller Central orders programmatically? Jason 2009-11-23T21:34:38Z 2009-11-23T21:34:38Z <p>I think Amazon's API is a confusing mess to deal with. I just wrote a simple tool to extract data from my Amazon wishlist and it was far harder than it should have been.</p> <p>I would guess that you want to use the Marketplace service, but I could be wrong. If you're dealing with PHP, there is a PHP API that you might find helpful - <a href="http://tarzan-aws.com" rel="nofollow">Tarzan</a>.</p> <p>Here is a Amazon forum for that should help: <a href="http://www.amazonsellercommunity.com/forums/forum.jspa?forumID=32" rel="nofollow">http://www.amazonsellercommunity.com/forums/forum.jspa?forumID=32</a>, and a <a href="https://s3.amazonaws.com/merchant-facing/SOA-GuideToXML.pdf" rel="nofollow">PDF</a> overview</p> http://stackoverflow.com/questions/1631228/using-silverlight-in-scorm-content 0 using Silverlight in SCORM content Jason 2009-10-27T14:34:29Z 2009-10-27T18:09:24Z <p>I'm building a LMS system using Sharepoint (WSS 3.0) with the Sharepoint Learning Kit (SLK). One of the requirements is to be able to host Silverlight content within the SCORM package. Has anyone done this before? I haven't been able to find much (anything) online that talks about how to do this. Most of the content tools that exist for SCORM are able to handle Flash, but I haven't come across anything that will do Silverlight.</p> <p>If all else fails, I'll try to manually build a SCORM package, but I'd really like to find some examples or howtos of doing this with Silverlight first.</p> <p>Has anyone done this before?</p> http://stackoverflow.com/questions/1540452/how-to-restore-vs-project-template-for-test-if-i-deleted-it-by-mistake/1540481#1540481 1 Answer by Jason for How to restore VS project template for test if I deleted it by mistake? Jason 2009-10-08T21:04:54Z 2009-10-08T21:04:54Z <p>devenv.exe /installvstemplates</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms247116.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms247116.aspx</a></p> http://stackoverflow.com/questions/612472/asp-net-how-to-read-attributes-length-resolution-codec-of-video-files 1 ASP.NET - how to read attributes (length, resolution, codec) of video files Jason 2009-03-04T21:19:05Z 2009-09-23T13:03:37Z <p>I'm working on an ASP.NET app that allows users to upload video files. After the user uploads, I need to determine some of the attributes of the media - namely it's duration/length, resolution, and codec (if possible).</p> <p>What's the simplest way to approach this? Should I use the WMP SDK - this seems to involve actually instantiating the media player on the server. Is there anything in the framework to do this, or do I need to rely on an external library?</p> <p>I'm not concerned about displaying or streaming the video back to the user.</p> http://stackoverflow.com/questions/1395358/is-there-a-way-to-run-a-process-every-day-in-a-net-web-application-without-writi/1395378#1395378 0 Answer by Jason for Is there a way to run a process every day in a .Net web application without writing a windows service or SQL server jobs Jason 2009-09-08T17:56:50Z 2009-09-08T17:56:50Z <p>You can use a Scheduled Task, but this might not work in a shared hosting environment either.</p> <p>You could setup a webservice or page on your website to kickoff the process, then have a scheduled task on a desktop machine hit that page/service once daily to start the process. Hacky, but it might work.</p> http://stackoverflow.com/questions/32607/how-to-rollback-using-tfs 13 how to Rollback using TFS Jason 2008-08-28T15:33:04Z 2009-09-04T00:36:56Z <p>I committed a chageset to TFS last night before leaving. This morning I decided my change was badly written, so I wanted to do a rollback on it.</p> <p>In subversion, this was pretty straightforward. However, it seems to be an incredible headache in TFS.</p> <p>Am I being dense? Is there a simple way to do this I'm missing?</p> <p>These are the options I found -</p> <ol> <li><p>manually get prior version of each file</p> <p>b. check out for edit</p> <p>c. FAIL - the checkout (in VS2008) forces me to get the latest version</p></li> <li><p>download Team Foundation Power Tools</p> <p>b. issue rollback command from cmd line</p> <p>c. FAIL - won't work if there are any other pending changes</p></li> <li><p>manually undo my changes, then commit a new changeset</p></li> </ol> <p>I'm flabergasted at how tedious this is. I think even VSS supported an easier mechanism to rollback a change.</p> http://stackoverflow.com/questions/1364505/how-do-i-obtain-gps-coordinates/1364515#1364515 1 Answer by Jason for How do I obtain GPS coordinates? Jason 2009-09-01T20:36:09Z 2009-09-01T20:36:09Z <p>Duplicate:</p> <p><a href="http://stackoverflow.com/questions/1096307/gps-location">http://stackoverflow.com/questions/1096307/gps-location</a></p> http://stackoverflow.com/questions/30076/need-a-lightweight-free-windows-smtp-server/30203#30203 4 Answer by Jason for Need a lightweight, free, windows SMTP server Jason 2008-08-27T14:04:33Z 2009-08-28T13:35:26Z <p>We use <a href="http://www.mailenable.com/" rel="nofollow">MailEnable</a> to do this.</p> http://stackoverflow.com/questions/1343866/wpf-tristate-checkbox-how-to-change-the-order-of-the-states 0 WPF TriState Checkbox - how to change the order of the states Jason 2009-08-27T21:36:47Z 2009-08-27T21:58:33Z <p>I have a CheckBox in my application that is using the TriState mode. The normal behavior for this mode seems to be cycling between null, false, true.</p> <p>I'd like to change this behavior so that it cycles between null, true, false.</p> <p>What's the best way to do this?</p> <p>I've tried adding a click handler similar to this:</p> <pre><code>void cb_Click(object sender, RoutedEventArgs e) { if (((CheckBox)e.Source).IsChecked.HasValue == false) { ((CheckBox)e.Source).IsChecked = true; return; } if (((CheckBox)e.Source).IsChecked == true) { ((CheckBox)e.Source).IsChecked = false; return; } if (((CheckBox)e.Source).IsChecked == false) { ((CheckBox)e.Source).IsChecked = null; return; } } </code></pre> <p>But this seems to disable the checkbox entirely. I'm pretty sure I'm missing something that should be obvious.</p> http://stackoverflow.com/questions/1329063/libraries-for-verifying-and-sorting-addresses-in-order-to-get-usps-presort-discou/1329194#1329194 0 Answer by Jason for Libraries for verifying and sorting addresses in order to get USPS presort discounts Jason 2009-08-25T15:53:27Z 2009-08-25T15:53:27Z <p>I messed with this a few years ago. Most of the solutions I found were applications geared towards scrubbing an entire database, or for integrating with Word or Outlook. I didn't have much luck finding anything that had an API that I could integrate into my software. The only .NET solution I found worked, but was poorly implemented and documented. I distinctly recall that their order page was not even served over https. I wish I could remember the name of the company.</p> <p>The USPS tools, I think, are not useful for bulk operations. If you're only doing them on-demand, then it might be a good choice. Most of the USPS tools I've used (or tried to) were pretty byzantine in their implementation.</p> <p>This may help:</p> <p><a href="http://stackoverflow.com/questions/291728/open-source-address-scrubber">http://stackoverflow.com/questions/291728/open-source-address-scrubber</a></p> <p>Ha! I just realized that the company mentioned in that link, Semaphore, is what I used 5+ years ago. And in 2009 their order page is still served over a non-secure connection! </p> http://stackoverflow.com/questions/1262864/net-exception-handling-application-configuration-file/1262899#1262899 0 Answer by Jason for .NET Exception Handling Application Configuration File Jason 2009-08-11T21:03:36Z 2009-08-11T21:03:36Z <p>System.Configuration should do all of this work for you. There shouldn't be a need to manually load a config file.</p> http://stackoverflow.com/questions/1262865/ranking-students-by-grade-in-sql/1262887#1262887 -1 Answer by Jason for Ranking Students by Grade in SQL Jason 2009-08-11T21:01:59Z 2009-08-11T21:01:59Z <p>You need to write a function that will computer the rank for a given student and date. Then you can "ORDER BY Date, Rank()"</p> http://stackoverflow.com/questions/1239907/can-i-force-a-refresh-of-my-stylesheet-file/1239927#1239927 1 Answer by Jason for Can I force a refresh of my stylesheet file? Jason 2009-08-06T16:09:26Z 2009-08-06T16:09:26Z <p>One trick is to add a QueryString parameter in the link to your stylesheet </p> <p><a href="http://stackoverflow.com/questions/438821/what-does-do-in-a-css-link/438828#438828">http://stackoverflow.com/questions/438821/what-does-do-in-a-css-link/438828#438828</a></p> http://stackoverflow.com/questions/1235758/view-sql-that-linq-to-sql-produces/1235875#1235875 1 Answer by Jason for view sql that linq-to-sql produces Jason 2009-08-05T21:31:17Z 2009-08-05T21:31:17Z <p>I used LinqPad today to help debug a Linq2Sql issue. It's a neat little tool, and will show you the SQL you're generating also.</p> <p><a href="http://www.linqpad.net/" rel="nofollow">http://www.linqpad.net/</a></p> http://stackoverflow.com/questions/1235643/system-io-directorynotfound-but-it-works-in-console/1235738#1235738 0 Answer by Jason for system.io.directorynotfound -> But it works in Console! Jason 2009-08-05T21:03:16Z 2009-08-05T21:03:16Z <p>Is this ASP.NET code? If so then you probably need to do MapPath("xml/pagetitles.xml")</p> http://stackoverflow.com/questions/1234447/saving-wpf-inkcanvas-to-a-jpg-image-is-getting-cropped 0 saving WPF InkCanvas to a JPG - image is getting cropped Jason 2009-08-05T16:52:12Z 2009-08-05T19:40:26Z <p>I have a WPF InkCanvas control I'm using to capture a signature in my application. The control looks like this - it's 700x300</p> <p><img src="http://img156.imageshack.us/img156/7885/inkcanvas.jpg" alt="alt text" /></p> <p>However, when I save it as a JPG, the resulting image looks like this, also 700x300</p> <p><img src="http://img210.imageshack.us/img210/5668/saved.jpg" alt="alt text" /></p> <p>The code I'm using to save</p> <pre><code> sigPath = System.IO.Path.GetTempFileName(); MemoryStream ms = new MemoryStream(); FileStream fs = new FileStream(sigPath, FileMode.Create); RenderTargetBitmap rtb = new RenderTargetBitmap((int)inkSig.Width, (int)inkSig.Height, 96d, 96d, PixelFormats.Default); rtb.Render(inkSig); JpegBitmapEncoder encoder = new JpegBitmapEncoder(); encoder.Frames.Add(BitmapFrame.Create(rtb)); encoder.Save(fs); fs.Close(); </code></pre> <p>This is the XAML I'm using:</p> <pre><code>&lt;Window x:Class="Consent.Client.SigPanel" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Background="Transparent" Topmost="True" AllowsTransparency="True" Title="SigPanel" Left="0" Top="0" Height="1024" Width="768" WindowStyle ="None" ShowInTaskbar="False" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" &gt; &lt;Border BorderThickness="1" BorderBrush="Black" Background='#FFFFFFFF' x:Name='DocumentRoot' Width='750' Height='400' CornerRadius='10'&gt; &lt;StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"&gt; &lt;TextBlock Name="txtLabel" FontSize="24" HorizontalAlignment="Center" &gt;Label&lt;/TextBlock&gt; &lt;InkCanvas Opacity="1" Background="Beige" Name="inkSig" Width="700" Height="300" /&gt; &lt;StackPanel HorizontalAlignment="Center" Orientation="Horizontal"&gt; &lt;Button FontSize="24" Margin="10" Width="150" Name="btnSave" Click="btnSave_Click"&gt;Save&lt;/Button&gt; &lt;Button FontSize="24" Margin="10" Width="150" Name="btnCancel" Click="btnCancel_Click"&gt;Cancel&lt;/Button&gt; &lt;Button FontSize="24" Margin="10" Width="150" Name="btnClear" Click="btnClear_Click"&gt;Clear&lt;/Button&gt; &lt;/StackPanel&gt; &lt;/StackPanel&gt; &lt;/Border&gt; </code></pre> <p></p> <p>In the past this worked perfectly. I can't figure out what changed that is causing the image to shift when it is saved.</p> http://stackoverflow.com/questions/1202810/displaying-subtitles-for-a-video-in-a-wpf-mediaelement 0 displaying subtitles for a video in a WPF MediaElement Jason 2009-07-29T20:25:06Z 2009-07-29T21:02:48Z <p>I'm working on a WPF application that displays video clips as part of the workflow. I'm doing this by using MediaElement to play locally hosted (not streamed) AVI files. Works great.</p> <p>However, I was just handed a new requirement to allow the display of subtitles while the clip is playing. I have no idea of the best way to go about this. I'm vaguely aware that WMP has the ability to display separate subtitle files when a clip is playing, but I don't know if WPF supports this? </p> <p>Can I do this natively in WPF? If not, what are my options?</p> <p>My fallback approach would be to require the client to bake the subtitles directly into the video file, but I'd prefer to find a better way to handle this.</p> http://stackoverflow.com/questions/1196717/implementing-rewrite-for-http-site-nick-http-site-profile-aspxnicknick/1196858#1196858 0 Answer by Jason for implementing rewrite for http://site/NICK => http://site/profile.aspx?nick=NICK Jason 2009-07-28T21:29:52Z 2009-07-28T21:29:52Z <p>I've used UrlRewriter.net in the past to do this. It works really well. You can configure it to only apply the rewrite rules if there is NOT an existing file that maps to the url (ie, real aspx pages or image files)</p> <p><a href="http://www.urlrewriting.net" rel="nofollow">http://www.urlrewriting.net</a></p> <p>Of course, if you're using IIS7 there is built in routing to do this.</p> http://stackoverflow.com/questions/1179218/asp-net-mvc-firefox-shows-hyperlink-location-in-parentheses-why/1179371#1179371 0 Answer by Jason for Asp.net MVC Firefox shows hyperlink location in parentheses, why? Jason 2009-07-24T18:32:23Z 2009-07-24T18:32:23Z <p>Try replacing the href="" with href="#"</p> http://stackoverflow.com/questions/1138846/sql-server-compact-edition-and-repository-pattern/1138909#1138909 2 Answer by Jason for SQL Server Compact Edition and Repository Pattern Jason 2009-07-16T16:54:01Z 2009-07-16T16:54:01Z <p>You can use sqlmetal.exe to build the Linq2Sql DBML file, then include it in your project.</p> <p><a href="http://skysigal.xact-solutions.com/Blog/tabid/427/EntryId/898/Using-LinqToSQL-with-SqlServer-Compact.aspx" rel="nofollow">http://skysigal.xact-solutions.com/Blog/tabid/427/EntryId/898/Using-LinqToSQL-with-SqlServer-Compact.aspx</a></p> http://stackoverflow.com/questions/1069620/detecting-presence-of-bluetooth-printer 0 detecting presence of bluetooth printer Jason 2009-07-01T14:58:22Z 2009-07-03T13:54:06Z <p>I'm working on a mobile application (C#/WPF on a tablet PC) that prints to a bluetooth connected printer. Right now I just fire off a print job, and if the printer is not present the printer subsystem reports an error to the user. I'm not doing anything programatically with Bluetooth, just using PrintDialog().</p> <p>I'd like to modify this process to detect the printer first - if it is not available, then I'll just store the document without printing. Is there a way in code for me to detect if the bluetooth device is connected/active/available?</p> <p>If I look at the device in the Bluetooth panel under Control Panel, it doesn't seem to have any sort of status that reflects whether or not the device is available, so maybe this isn't possible.</p> <p>I'm assuming the printer has already been setup and configured in Windows - all I need to do is detect if it is actually present at a given point in time.</p> http://stackoverflow.com/questions/1076446/wpf-inkcanvas-how-to-determine-if-it-has-been-signed 1 WPF InkCanvas - how to determine if it has been "signed" Jason 2009-07-02T20:10:14Z 2009-07-02T22:09:11Z <p>I'm using a WPF InkCanvas control to capture signatures in a Tablet PC application.</p> <p>One of my requirements is to validate whether or not the application has really been "signed". Right now I'm doing this by checking the Strokes collection of the InkCanvas - if there are 0 strokes, then I know the user has not "signed". </p> <p>However, if the user enters a single slash, or even a single dot, this counts as a stroke and my validation test will pass, even though the signature isn't really valid.</p> <p>Any ideas about how to build a better test for this? Granted, the use case for what is and is not a valid signature is pretty fuzzy, but I want to try to eliminate obviously bad signatures.</p> <p>Or is this simply unsolvable in any straightforward way?</p> http://stackoverflow.com/questions/930314/what-is-the-cheapest-way-to-deploy-an-asp-net-mvc-application/930691#930691 1 Answer by Jason for What is the cheapest way to deploy an ASP.Net MVC application? Jason 2009-05-30T21:47:47Z 2009-05-30T21:47:47Z <p>I've deployed ASP.NET MVC apps on DiscountASP.net before - relatively cheap, and pretty easy to do. They have Windows 2008 servers so the routing will work out of the box.</p> http://stackoverflow.com/questions/884769/where-should-code-be-stored-prior-to-code-review/884802#884802 3 Answer by Jason for Where should code be stored prior to code review? Jason 2009-05-19T20:16:44Z 2009-05-19T20:16:44Z <p>Code should get checked into your repository (SVN, TFS, etc). You can setup a development (or even per-developer) branch if you want to prevent it from going into the trunk until after it's reviewed.</p> http://stackoverflow.com/questions/866980/how-do-you-get-the-ip-address-from-a-request-in-asp-net/866993#866993 2 Answer by Jason for How do you get the IP address from a request in ASP.NET? Jason 2009-05-15T04:36:29Z 2009-05-15T04:36:29Z <p>Request.ServerVariables("REMOTE_ADDR")</p> http://stackoverflow.com/questions/853514/where-can-i-find-video-lectures-on-software-engineering/853685#853685 2 Answer by Jason for Where can I find video lectures on software engineering? Jason 2009-05-12T16:32:40Z 2009-05-12T16:32:40Z <p>Stanford has some material (including an entire course on the iPhone) available on iTunes</p> <p><a href="http://itunes.stanford.edu/" rel="nofollow">http://itunes.stanford.edu/</a></p> http://stackoverflow.com/questions/345009/printing-a-wpf-flowdocument 2 Printing a WPF FlowDocument Jason 2008-12-05T20:22:54Z 2009-05-12T15:44:34Z <p>I'm building a demo app in WPF, which is new to me. I'm currently displaying text in a FlowDocument, and need to print it.</p> <p>The code I'm using looks like this:</p> <pre><code> PrintDialog pd = new PrintDialog(); fd.PageHeight = pd.PrintableAreaHeight; fd.PageWidth = pd.PrintableAreaWidth; fd.PagePadding = new Thickness(50); fd.ColumnGap = 0; fd.ColumnWidth = pd.PrintableAreaWidth; IDocumentPaginatorSource dps = fd; pd.PrintDocument(dps.DocumentPaginator, "flow doc"); </code></pre> <p>fd is my FlowDocument, and for now I'm using the default printer instead of allowing the user to specify print options. It works OK, except that after the document prints, the FlowDocument displayed on screen has changed to to use the settings I specified for printing. </p> <p>I can fix this by manually resetting everything after I print, but is this the best way? Should I make a copy of the FlowDocument before I print it? Or is there another approach I should consider?</p> http://stackoverflow.com/questions/838166/getting-mvc-on-shared-host-to-work/838176#838176 0 Answer by Jason for getting mvc on shared host to work Jason 2009-05-08T03:56:40Z 2009-05-08T03:56:40Z <p>Have you tried this?</p> <p><a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx</a></p> <p>I had the same problem - I tried to fix it, but decided that spending the time screwing around with running on a backlevel server wasn't worth it. In the end it was just easier for me to move to a host that ran Windows Server 2008 and IIS7.</p> http://stackoverflow.com/questions/798039/collapse-projects-in-solution-explorer/798077#798077 2 Answer by Jason for Collapse projects in Solution Explorer Jason 2009-04-28T13:55:35Z 2009-04-28T13:55:35Z <p>Power Commands for VS2008 has a command to do this, plus lots of other neat tools</p> <p><a href="http://code.msdn.microsoft.com/PowerCommands" rel="nofollow">http://code.msdn.microsoft.com/PowerCommands</a></p> <p>You could also write a macro to do it, and assign it to a key combination</p> <p><a href="http://weblogs.asp.net/israelio/archive/2007/09/06/visual-studio-collapse-selected-node.aspx" rel="nofollow">http://weblogs.asp.net/israelio/archive/2007/09/06/visual-studio-collapse-selected-node.aspx</a></p> http://stackoverflow.com/questions/764356/what-is-the-difference-between-an-f5-refresh-of-a-page-and-pasting-that-url-in/764367#764367 0 Answer by Jason for What is the difference between an F5 (refresh) of a page and pasting that URL in a new window? Jason 2009-04-18T22:32:16Z 2009-04-18T22:32:16Z <p>It would depend on a lot of things. For most sites, copying the url to a new window or tab will start a new session, where a refresh would maintain the current session. </p> http://stackoverflow.com/questions/1799701/cant-get-anonymous-access-to-website Comment by Jason on Can't get anonymous access to website Jason 2009-11-25T20:32:19Z 2009-11-25T20:32:19Z Is a static site, an ASP.NET site, or something else? If you're using ASP.NET you should double check your web.config file to be sure you're not setting authentication differently than you have in IIS. http://stackoverflow.com/questions/1631228/using-silverlight-in-scorm-content/1632654#1632654 Comment by Jason on using Silverlight in SCORM content Jason 2009-10-28T04:34:17Z 2009-10-28T04:34:17Z That's what I've been thinking, I was just hoping someone had already been down this road and had written about it. http://stackoverflow.com/questions/463459/does-there-exist-a-publicly-accessible-parsable-country-country-code-list/463473#463473 Comment by Jason on Does there exist a publicly accessible parsable Country/Country Code list? Jason 2009-10-26T17:28:29Z 2009-10-26T17:28:29Z Either lcase if on the fly, or run it through a text tool (even Excel will do it) to lcase it all at once. http://stackoverflow.com/questions/1540452/how-to-restore-vs-project-template-for-test-if-i-deleted-it-by-mistake/1540481#1540481 Comment by Jason on How to restore VS project template for test if I deleted it by mistake? Jason 2009-10-09T05:09:40Z 2009-10-09T05:09:40Z Some other suggestions: reinstall the latest SP; try &quot;repair&quot; option of installer; try &quot;repair&quot; option of installer, but run from original install media; try copying from another machine with a good install; if all else fails, try uninstalling and reinstalling http://stackoverflow.com/questions/1423922/open-a-pdf-file-programmatically-at-a-named-destination Comment by Jason on Open a pdf file programmatically at a named destination Jason 2009-09-14T21:09:24Z 2009-09-14T21:09:24Z Does it work if you execute the command from the command line? Have you tried other versions of Acrobat, or other systems? It might be an Acrobat bug, or maybe your install is bad? http://stackoverflow.com/questions/1337683/discovered-run-a-video-in-an-image Comment by Jason on Discovered: Run A Video In An Image Jason 2009-08-26T22:02:16Z 2009-08-26T22:02:16Z This isn't a question. I suspect you're seeing some sort of artifact because the video player is overlaying the video on top of everything else. http://stackoverflow.com/questions/1256480/what-is-the-most-efficient-secure-way-to-authenticate-a-web-service-in-asp-net Comment by Jason on What is the most efficient/secure way to authenticate a web service in ASP.NET? Jason 2009-08-10T18:40:55Z 2009-08-10T18:40:55Z using https will encrypt the request/response, but does not address the Authentication problem. http://stackoverflow.com/questions/1234447/saving-wpf-inkcanvas-to-a-jpg-image-is-getting-cropped/1235312#1235312 Comment by Jason on saving WPF InkCanvas to a JPG - image is getting cropped Jason 2009-08-05T20:28:50Z 2009-08-05T20:28:50Z thanks! - that seemed to do the trick. Wish I understood why too. I guess I'll remove the TextBlock for now and try it again later when I have more time to delve into this. http://stackoverflow.com/questions/1202810/displaying-subtitles-for-a-video-in-a-wpf-mediaelement/1203026#1203026 Comment by Jason on displaying subtitles for a video in a WPF MediaElement Jason 2009-07-29T21:14:29Z 2009-07-29T21:14:29Z I don't want to write all the timing and sync code myself - I assume that if WMP already handles this, then WPF would also. But maybe not. http://stackoverflow.com/questions/858618/custom-configuration-sections Comment by Jason on Custom Configuration Sections Jason 2009-05-13T15:25:47Z 2009-05-13T15:25:47Z It sounds like a problem with your web.config, can you post the relevant sections? http://stackoverflow.com/questions/838166/getting-mvc-on-shared-host-to-work/838176#838176 Comment by Jason on getting mvc on shared host to work Jason 2009-05-08T06:05:06Z 2009-05-08T06:05:06Z DiscountASP.net http://stackoverflow.com/questions/731262/mvc-site-using-relative-paths-for-links-instead-of-view-syntax/731360#731360 Comment by Jason on MVC site using relative paths for links instead of view syntax Jason 2009-04-08T19:43:37Z 2009-04-08T19:43:37Z It must be a config problem. The 404 page it returns shows that it is looking for the physical file Home\AboutMe, which sounds like the MVC routing is not enabled. Compare the IIS setups of the 2 sites. I also have an MVC site on this host, the only special step I remember is making it a VDir http://stackoverflow.com/questions/705580/asp-net-url-rewriting-options Comment by Jason on ASP.NET URL-rewriting options Jason 2009-04-01T14:09:38Z 2009-04-01T14:09:38Z I've used UrlRewriting.Net many times - you don't have to include the PK as part of the URL http://stackoverflow.com/questions/652048/wcf-client-proxy-config-does-not-match-service-web-config/652116#652116 Comment by Jason on WCF - client proxy config does NOT match service web.config Jason 2009-03-17T14:58:50Z 2009-03-17T14:58:50Z Ugh, I think you're right. I could swear that I didn't have this problem in the past, but apparently I must have manually updated the config to get around it. http://stackoverflow.com/questions/554302/how-do-you-browse-files-on-the-server-in-asp-net-mvc/554333#554333 Comment by Jason on How do you browse files on the Server in ASP.NET MVC? Jason 2009-02-16T20:40:44Z 2009-02-16T20:40:44Z Yes, you are. There is nothing MVC specific about what you're trying to do, you just want to build a list of server side files and expose it via a view/page.