User Jason - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:43:08Zhttp://stackoverflow.com/feeds/user/1338http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1785986/how-to-get-amazon-seller-central-orders-programmatically/1786158#17861580Answer by Jason for How to get Amazon Seller Central orders programmatically?Jason2009-11-23T21:34:38Z2009-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-content0using Silverlight in SCORM contentJason2009-10-27T14:34:29Z2009-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#15404811Answer by Jason for How to restore VS project template for test if I deleted it by mistake?Jason2009-10-08T21:04:54Z2009-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-files1ASP.NET - how to read attributes (length, resolution, codec) of video filesJason2009-03-04T21:19:05Z2009-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#13953780Answer 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 jobsJason2009-09-08T17:56:50Z2009-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-tfs13how to Rollback using TFSJason2008-08-28T15:33:04Z2009-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#13645151Answer by Jason for How do I obtain GPS coordinates?Jason2009-09-01T20:36:09Z2009-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#302034Answer by Jason for Need a lightweight, free, windows SMTP serverJason2008-08-27T14:04:33Z2009-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-states0WPF TriState Checkbox - how to change the order of the statesJason2009-08-27T21:36:47Z2009-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#13291940Answer by Jason for Libraries for verifying and sorting addresses in order to get USPS presort discountsJason2009-08-25T15:53:27Z2009-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#12628990Answer by Jason for .NET Exception Handling Application Configuration FileJason2009-08-11T21:03:36Z2009-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-1Answer by Jason for Ranking Students by Grade in SQLJason2009-08-11T21:01:59Z2009-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#12399271Answer by Jason for Can I force a refresh of my stylesheet file?Jason2009-08-06T16:09:26Z2009-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#12358751Answer by Jason for view sql that linq-to-sql producesJason2009-08-05T21:31:17Z2009-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#12357380Answer by Jason for system.io.directorynotfound -> But it works in Console!Jason2009-08-05T21:03:16Z2009-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-cropped0saving WPF InkCanvas to a JPG - image is getting croppedJason2009-08-05T16:52:12Z2009-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><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" >
<Border BorderThickness="1" BorderBrush="Black" Background='#FFFFFFFF' x:Name='DocumentRoot' Width='750' Height='400' CornerRadius='10'>
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Name="txtLabel" FontSize="24" HorizontalAlignment="Center" >Label</TextBlock>
<InkCanvas Opacity="1" Background="Beige" Name="inkSig" Width="700" Height="300" />
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
<Button FontSize="24" Margin="10" Width="150" Name="btnSave" Click="btnSave_Click">Save</Button>
<Button FontSize="24" Margin="10" Width="150" Name="btnCancel" Click="btnCancel_Click">Cancel</Button>
<Button FontSize="24" Margin="10" Width="150" Name="btnClear" Click="btnClear_Click">Clear</Button>
</StackPanel>
</StackPanel>
</Border>
</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-mediaelement0displaying subtitles for a video in a WPF MediaElementJason2009-07-29T20:25:06Z2009-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#11968580Answer by Jason for implementing rewrite for http://site/NICK => http://site/profile.aspx?nick=NICKJason2009-07-28T21:29:52Z2009-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#11793710Answer by Jason for Asp.net MVC Firefox shows hyperlink location in parentheses, why?Jason2009-07-24T18:32:23Z2009-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#11389092Answer by Jason for SQL Server Compact Edition and Repository PatternJason2009-07-16T16:54:01Z2009-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-printer0detecting presence of bluetooth printerJason2009-07-01T14:58:22Z2009-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-signed1WPF InkCanvas - how to determine if it has been "signed"Jason2009-07-02T20:10:14Z2009-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#9306911Answer by Jason for What is the cheapest way to deploy an ASP.Net MVC application?Jason2009-05-30T21:47:47Z2009-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#8848023Answer by Jason for Where should code be stored prior to code review?Jason2009-05-19T20:16:44Z2009-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#8669932Answer by Jason for How do you get the IP address from a request in ASP.NET?Jason2009-05-15T04:36:29Z2009-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#8536852Answer by Jason for Where can I find video lectures on software engineering?Jason2009-05-12T16:32:40Z2009-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-flowdocument2Printing a WPF FlowDocumentJason2008-12-05T20:22:54Z2009-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#8381760Answer by Jason for getting mvc on shared host to workJason2009-05-08T03:56:40Z2009-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#7980772Answer by Jason for Collapse projects in Solution ExplorerJason2009-04-28T13:55:35Z2009-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#7643670Answer by Jason for What is the difference between an F5 (refresh) of a page and pasting that URL in a new window?Jason2009-04-18T22:32:16Z2009-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-websiteComment by Jason on Can't get anonymous access to websiteJason2009-11-25T20:32:19Z2009-11-25T20:32:19ZIs 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#1632654Comment by Jason on using Silverlight in SCORM contentJason2009-10-28T04:34:17Z2009-10-28T04:34:17ZThat'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#463473Comment by Jason on Does there exist a publicly accessible parsable Country/Country Code list?Jason2009-10-26T17:28:29Z2009-10-26T17:28:29ZEither 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#1540481Comment by Jason on How to restore VS project template for test if I deleted it by mistake?Jason2009-10-09T05:09:40Z2009-10-09T05:09:40ZSome other suggestions: reinstall the latest SP; try "repair" option of installer; try "repair" 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-destinationComment by Jason on Open a pdf file programmatically at a named destinationJason2009-09-14T21:09:24Z2009-09-14T21:09:24ZDoes 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-imageComment by Jason on Discovered: Run A Video In An ImageJason2009-08-26T22:02:16Z2009-08-26T22:02:16ZThis 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-netComment by Jason on What is the most efficient/secure way to authenticate a web service in ASP.NET?Jason2009-08-10T18:40:55Z2009-08-10T18:40:55Zusing 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#1235312Comment by Jason on saving WPF InkCanvas to a JPG - image is getting croppedJason2009-08-05T20:28:50Z2009-08-05T20:28:50Zthanks! - 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#1203026Comment by Jason on displaying subtitles for a video in a WPF MediaElementJason2009-07-29T21:14:29Z2009-07-29T21:14:29ZI 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-sectionsComment by Jason on Custom Configuration Sections Jason2009-05-13T15:25:47Z2009-05-13T15:25:47ZIt 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#838176Comment by Jason on getting mvc on shared host to workJason2009-05-08T06:05:06Z2009-05-08T06:05:06ZDiscountASP.nethttp://stackoverflow.com/questions/731262/mvc-site-using-relative-paths-for-links-instead-of-view-syntax/731360#731360Comment by Jason on MVC site using relative paths for links instead of view syntaxJason2009-04-08T19:43:37Z2009-04-08T19:43:37ZIt 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 VDirhttp://stackoverflow.com/questions/705580/asp-net-url-rewriting-optionsComment by Jason on ASP.NET URL-rewriting optionsJason2009-04-01T14:09:38Z2009-04-01T14:09:38ZI've used UrlRewriting.Net many times - you don't have to include the PK as part of the URLhttp://stackoverflow.com/questions/652048/wcf-client-proxy-config-does-not-match-service-web-config/652116#652116Comment by Jason on WCF - client proxy config does NOT match service web.configJason2009-03-17T14:58:50Z2009-03-17T14:58:50ZUgh, 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#554333Comment by Jason on How do you browse files on the Server in ASP.NET MVC?Jason2009-02-16T20:40:44Z2009-02-16T20:40:44ZYes, 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.