User Joel Martinez - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T03:16:26Zhttp://stackoverflow.com/feeds/user/5416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848634/calling-a-web-service-that-uses-session-state-in-wcf/1848645#18486451Answer by Joel Martinez for Calling a web service that uses session state in wcfJoel Martinez2009-12-04T18:02:19Z2009-12-04T18:02:19Z<p>you can find information about working with sessions in WCF in this MSDN article:<br>
<a href="http://msdn.microsoft.com/en-us/library/ms733040.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms733040.aspx</a></p>
<blockquote>
<p>In Windows Communication Foundation
(WCF) applications, a session
correlates a group of messages into a
conversation. <strong>WCF sessions are
different than the session object
available in ASP.NET applications</strong>,
support different behaviors, and are
controlled in different ways. This
topic describes the features that
sessions enable in WCF applications
and how to use them.</p>
</blockquote>
http://stackoverflow.com/questions/1765779/xna-fbx-textures/1847167#18471670Answer by Joel Martinez for XNA .Fbx texturesJoel Martinez2009-12-04T14:10:28Z2009-12-04T14:10:28Z<p>The reason it's not working is because you have to set the effect's parameters manually instead of relying on the basiceffect (which would have had the shader parameters set in the content pipeline). Now, I'm not familiar with your shader so I couldn't prescribe code to solve your problem ... </p>
<p>To answer your second question, you can get around it in a roundabout sort of way. Because the model loads in the content pipeline with basiceffect by default, the texture is imported and assigned to the shader's parameters <strong>inside</strong> of the pipeline. So if you want to access it you'd have to look at the modelmeshpart's default effect property. <a href="http://forums.xna.com/forums/p/39354/229206.aspx" rel="nofollow">Here</a> is a forum post that describes this process.</p>
<p>The more correct answer would be a compromise between a full on custom importer and just using the default. You can make a custom modelprocessor that inherits from the existing one. In there, you can import your own custom effect, along with your custom textures and whatever parameters you need to set. and set it on the modelcontent. There was an article (either on Shawn Hargreave's blog, or on msdn) that showed how to do this, but I'm failing to find it at the moment unfortunately.</p>
<p>good luck!</p>
http://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-tripping/1847088#18470880Answer by Joel Martinez for Farseer Physics XNA Geom 'Tripping'Joel Martinez2009-12-04T13:54:45Z2009-12-04T13:54:45Z<p>I would suggest that you avoid the use of small tiles placed next to each other for the level's collision geometry. For example, although visually it's clear that you're using tiles, the "floor" from the video would best be described as a long contiguous rectangle. That way, you don't have this problem at all ... floating point math is already imprecise enough and tiling collision geometry is just asking for that to go wrong :-)</p>
http://stackoverflow.com/questions/1651145/how-to-write-a-3d-graphics-engine-which-can-be-used-in-javascript/1651170#16511701Answer by Joel Martinez for How to write a 3D graphics engine which can be used in JavaScript?Joel Martinez2009-10-30T17:18:30Z2009-12-03T20:30:37Z<p>I truly don't want to discourage you, but in order to write a <a href="http://en.wikipedia.org/wiki/3D%5Fcomputer%5Fgraphics" rel="nofollow">3D</a> engine in JavaScript, you have to be extremely well versed and intimate in the math/logic behind 3D rendering. </p>
<p>Since you didn't state your current expertise, I'm assuming you don't ... in which case I strongly suggest that you start somewhere else. For example, <a href="http://creators.xna.com" rel="nofollow">XNA Game Studio</a>. You write the code in C#, and there are already a lot of well written APIs that abstract most (but definitely not all) of the hard parts. But it's a great way to learn a lot of the concepts and math behind 3D rendering.</p>
<p>If however, you are dead set on starting with JavaScript, there's already a lot of resources on the Internet about this. For example this one :-)<br>
<a href="http://dev.opera.com/articles/view/3d-games-with-canvas-and-raycasting-part/" rel="nofollow">http://dev.opera.com/articles/view/3d-games-with-canvas-and-raycasting-part/</a></p>
<p>Good luck!</p>
http://stackoverflow.com/questions/1841658/modifying-a-value-in-viewstate/1841726#18417260Answer by Joel Martinez for modifying a value in viewstateJoel Martinez2009-12-03T17:58:49Z2009-12-03T17:58:49Z<p>The correct answer is that you shouldn't be modifying viewstate at all. Your controller should create the models and populate the viewstate only just before returning the view. If you're writing this code in the view, you've got an even bigger problem. in general, the view should contain little (if any) code that changes or does things.</p>
<p><em>Edit:</em> Oops, I think I just got ViewData (in asp.net mvc) confused with viewdata. sorry ... to answer your real question, yes, that is just about the only way :-) it's not really clunky when you are dealing with a "bag" API like the viewstate is.</p>
http://stackoverflow.com/questions/1835471/is-there-any-way-to-do-custom-serialization-in-wcf/1835488#18354880Answer by Joel Martinez for Is there any way to do custom serialization in WCF?Joel Martinez2009-12-02T20:14:02Z2009-12-02T20:14:02Z<p>Just make the type that you pass back and forth to the server have something like a byte[] property. Then you can serialize your known type on the client. The server would only have to know the opaque bytes</p>
http://stackoverflow.com/questions/1827902/displaying-a-xml-code-in-the-browser/1827935#18279350Answer by Joel Martinez for Displaying a XML code in the browserJoel Martinez2009-12-01T18:21:55Z2009-12-01T18:21:55Z<p>Once you read the contents of the file into a string, you can do something like this</p>
<pre><code><pre>
<%= myXmlString.Replace("<", "&lt;").Replace(">", "&gt;").Replace("\"", "&quot;") %>
</pre>
</code></pre>
<p>The "pre" tags will make the browser maintain the file's layout. Yeah, you could do something more sophisticated with regular expressions, but meh, sometimes something simple is all it takes ;-)</p>
http://stackoverflow.com/questions/1819477/redirecting-a-pxxx-wordpress-url/1819493#18194930Answer by Joel Martinez for Redirecting a /?p=xxx wordpress URLJoel Martinez2009-11-30T12:21:06Z2009-11-30T12:21:06Z<p>Doesn't wordpress already have built in URL prettyfication? Just out of curiosity why would you need to do this.</p>
<p>Aside from that, yes what you mention is how you'd do it via htaccess. Are you encountering an issue with this method?</p>
http://stackoverflow.com/questions/1819443/c-does-type-conversion-improve-in-next-version/1819482#18194822Answer by Joel Martinez for C#, does type conversion improve in next version?Joel Martinez2009-11-30T12:18:38Z2009-11-30T12:18:38Z<p>The rules set in place for casting will not likely change in future versions of C#. In either case, this does not mean that one language is more advanced than the other just because one might require less casts. And as Fredou mentioned, you likely have the non-strict settings enabled for vb.net which in some cases (as you mentioned) would use latebound objects.</p>
<p>that said, if you prefer the vb.net syntax and type system, then by all means use it :-P it's a full CLR language so you can interop with all the others with no issues</p>
http://stackoverflow.com/questions/1065435/can-a-css-class-inherit-one-or-more-other-classes8Can a CSS class inherit one or more other classes?Joel Martinez2009-06-30T19:10:57Z2009-11-28T18:30:57Z
<p>I feel dumb for having been a web programmer for so long and not knowing the answer to this question, I actually hope it's possible and I just didn't know about rather than what I think is the answer (which is that it's not possible).</p>
<p>My question is whether it is possible to make a CSS class that "inherits" from another CSS class (or more than one).</p>
<p>For example, say we had:</p>
<pre><code>.something { display:inline }
.else { background:red }
</code></pre>
<p>What I'd like to do is something like this:</p>
<pre><code>.composite
{
.something;
.else
}
</code></pre>
<p>where the ".composite" class would both display inline and have a red background</p>
http://stackoverflow.com/questions/1754271/which-net-architecture-should-i-implement-for-10-000-concurrent-users-for-web-ap/1758781#17587810Answer by Joel Martinez for Which .net architecture should I implement for 10,000 concurrent users for web applicationJoel Martinez2009-11-18T20:19:52Z2009-11-18T20:19:52Z<p>Cache Cache Cache Cache :-) a smart caching policy will make even one server go a long way ... aside from that, you will need to find out where your bottleneck will be. If your application is database heavy, then you will need to consider scaling your database either by clustering, or sharding. If you expect your web server to be the bottleneck (for example if you are doing a lot of processing, like image processing or something), then you can put a load balancer to distribute requests between N number of servers in your webfarm.</p>
http://stackoverflow.com/questions/1757110/how-could-running-code-in-the-debugger-makes-it-faster/1757183#17571831Answer by Joel Martinez for How could running code in the debugger makes it faster?Joel Martinez2009-11-18T16:18:47Z2009-11-18T16:18:47Z<p>You are likely to get very erroneous results by doing it this way ... you should be using a profiler. You should read this article entitled <em>The Perils of MicroBenchmarking</em>:<br>
<a href="http://blogs.msdn.com/shawnhar/archive/2009/07/14/the-perils-of-microbenchmarking.aspx" rel="nofollow">http://blogs.msdn.com/shawnhar/archive/2009/07/14/the-perils-of-microbenchmarking.aspx</a></p>
http://stackoverflow.com/questions/1748860/converting-c-not-c-to-c/1748976#17489763Answer by Joel Martinez for Converting C (not C++) to C#Joel Martinez2009-11-17T13:42:59Z2009-11-17T13:42:59Z<blockquote>
<p>... At least the SQL is precompiled.</p>
</blockquote>
<p>Is this the only reason you've got code in C? If so, my advice is to abandon that and simply rewrite the entire thing in C# (or even VB6 if that's what your app is written in) ... unless you've profiled it and can prove a measurable difference, you won't be getting any perf benefits from having sql/sproc calls in C. You will only get increased maintenance costs due to the complexity of having to maintain this interop bridge.</p>
http://stackoverflow.com/questions/1711146/converting-pdf-to-postscript-with-ghostscript0Converting PDF to PostScript with GhostScriptJoel Martinez2009-11-10T21:01:04Z2009-11-15T21:28:15Z
<p>I installed ghostscript and updated the appropriate path variables ... however, I'm getting an error when I try to execute this command:</p>
<pre><code>C:\PROGRA~1\gs\gs8.64\lib>pdf2ps mydocument.pdf mydocument.ps
Access is denied.
Unable to open command line file _.at
</code></pre>
<p>Is this the right command? did I miss some configuration or path setting? Otherwise, is there a sane method of doing this conversion?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1730494/asking-a-microsoft-sql-server-database-for-the-next-auto-generated-identifier-on/1730522#17305220Answer by Joel Martinez for Asking a Microsoft SQL Server database for the next auto-generated identifier on a tableJoel Martinez2009-11-13T16:55:14Z2009-11-13T16:55:14Z<p>This is pretty much a bad idea straight off the bat, but if you don't anticipate high volume and/or concurrency issues, you could just do something like this</p>
<pre><code>select @nextnum = max(Id) + 1 from MyTable
</code></pre>
http://stackoverflow.com/questions/1710120/make-a-link-activate-on-doubleclick-only/1710202#17102021Answer by Joel Martinez for Make a link activate on doubleclick onlyJoel Martinez2009-11-10T18:37:29Z2009-11-10T18:37:29Z<p>If you're not opposed to a little <a href="http://docs.jquery.com/Events/dblclick" rel="nofollow">jQuery</a>:</p>
<pre><code>$("#yourLinkId").dblclick(function () {
window.location($(this).attr("href"));
});
</code></pre>
http://stackoverflow.com/questions/1702716/free-way-to-convert-pdf-to-xps-with-c1Free way to convert PDF to XPS with C#Joel Martinez2009-11-09T18:08:55Z2009-11-09T19:28:04Z
<p>Are there any <strong>free</strong> tools that I can use to convert a PDF document into an XPS document? Although a nice programmatic API would be nice, I'm not opposed to shelling out to a command line tool to do the conversion.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1701090/javascript-inside-ajax-internet-explorer/1701169#17011691Answer by Joel Martinez for JavaScript inside Ajax - Internet ExplorerJoel Martinez2009-11-09T14:06:30Z2009-11-09T14:06:30Z<p>I've had the same problem, what I did was just put the script content inside of a div with a special classname. Once I get the response back and enter it into the DOM, I pull out that script content and simply eval() it. This works in all browsers :-)</p>
http://stackoverflow.com/questions/1439661/profiling-bandwidth-and-speed-of-different-wcf-bindings1Profiling bandwidth and speed of different WCF bindingsJoel Martinez2009-09-17T15:40:12Z2009-11-08T05:00:04Z
<p>I'm interested in knowing the different bandwidth and performance characteristics of the different WCF bindings (basicHttp, WSHttp, nettcp, etc.). Aside from writing a service and exposing the different endpoint bindings that we can call to exercise, how could I measure these metrics?</p>
<p>In particular, I need to know how bandwidth and performance scales as number of messages go up in number.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1676120/having-an-object-in-a-list-know-statistical-information-about-that-list/1676164#16761640Answer by Joel Martinez for Having an object in a list know statistical information about that listJoel Martinez2009-11-04T19:47:52Z2009-11-04T19:47:52Z<p>Make a personlist that adds itself as a reference to the person so that the person can query the list's contents/stats</p>
http://stackoverflow.com/questions/1676135/what-is-the-easiest-most-reputable-most-seasoned-ajax-framework/1676143#16761436Answer by Joel Martinez for What is the easiest, most reputable, most seasoned AJAX framework?Joel Martinez2009-11-04T19:46:02Z2009-11-04T19:46:02Z<p>why, jQuery of course ;-)</p>
http://stackoverflow.com/questions/1674089/what-is-the-idiomatic-way-to-implement-foreign-keys-in-couchdb/1674116#16741160Answer by Joel Martinez for What is the idiomatic way to implement foreign keys in CouchDB?Joel Martinez2009-11-04T14:33:10Z2009-11-04T14:33:10Z<p>If the Order and Cart objects have a one to one relationship (which is how it sounds), then the second approach makes the most sense ... just keep the associated objects contained in one. That gives you the data integrity you're looking for and makes it simple ;-)</p>
http://stackoverflow.com/questions/1667947/donut-caching-tutorials/1667997#1667997-1Answer by Joel Martinez for Donut Caching TutorialsJoel Martinez2009-11-03T15:23:20Z2009-11-03T15:23:20Z<p>I'm not sure that you're going to get better results by using stackoverflow as a human powered search engine. Honestly, anything that anyone here will post will be sourced from a search engine query such as this one:</p>
<p><a href="http://www.bing.com/search?q=asp.net%20donut%20caching" rel="nofollow">http://www.bing.com/search?q=asp.net%20donut%20caching</a></p>
http://stackoverflow.com/questions/1652193/howto-avoid-people-from-having-multiple-accounts-in-a-free-to-play-multiplayer-ga/1652231#16522311Answer by Joel Martinez for Howto avoid people from having multiple accounts in a free to play multiplayer game?Joel Martinez2009-10-30T20:47:27Z2009-10-30T20:47:27Z<p>short answer ... you can't. Unless the barrier is fiscal (as in a world of warcraft account), you won't curb this behavior ... and even in cases like WoW, people have multiple accounts ;-)</p>
http://stackoverflow.com/questions/1650214/how-to-manage-agile-development-when-the-team-is-not-stable/1650222#16502220Answer by Joel Martinez for How to manage agile development when the team is not stable?Joel Martinez2009-10-30T14:43:29Z2009-10-30T14:43:29Z<p>Let the individual developer that will be working on the story estimate the effort required to complete the story. You can take into account historical variances in that developer's estimations, but the idea is that you can take their estimates and then figure out how many stories you'll be able to finish in that sprint.</p>
http://stackoverflow.com/questions/1646372/teaching-references-in-c/1646408#16464084Answer by Joel Martinez for Teaching References in C#Joel Martinez2009-10-29T20:39:41Z2009-10-29T20:39:41Z<p>One way that I've heard it explained is to use a cell phone or walkie-talkie. You (the instructor) hold one end and declare that you are an object instance. You stay in one place (ie. the heap) while the students pass the other end (which is on speaker phone if it's a cell phone) around the classroom.</p>
<p>They can interact with you through the "reference" they have to you, but they don't really have "you" in their possession.</p>
http://stackoverflow.com/questions/1645700/how-to-use-itunes-like-functionality-of-windows-7-with-wpf-thumbnail-toolbar/1645968#16459681Answer by Joel Martinez for How to use Itunes-like functionality of windows-7 with WPF? (thumbnail toolbar)Joel Martinez2009-10-29T19:22:26Z2009-10-29T19:28:04Z<p>This MSDN article describes this and other new features that devs can use:<br />
<a href="http://msdn.microsoft.com/en-us/library/aa511446%28classic%29.aspx#thumbnail" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa511446%28classic%29.aspx#thumbnail</a></p>
<p>The feature is called the thumbnail toolbar. Here is a tutorial which covers how to do this from WPF:<br />
<a href="http://blogs.southworks.net/dschenkelman/2009/08/31/developing-application-with-wpf-and-windows-7-part-ii/" rel="nofollow">http://blogs.southworks.net/dschenkelman/2009/08/31/developing-application-with-wpf-and-windows-7-part-ii/</a></p>
http://stackoverflow.com/questions/1639313/auto-generating-dal-in-an-asp-net-application/1639324#16393241Answer by Joel Martinez for Auto generating DAL in an ASP.NET applicationJoel Martinez2009-10-28T18:51:03Z2009-10-28T18:51:03Z<p>Just use Entity Framework:<br />
<a href="http://msdn.microsoft.com/en-us/library/bb399203.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb399203.aspx</a></p>
http://stackoverflow.com/questions/1638039/is-there-a-debian-package-for-mono-c-mcs/1638058#16380580Answer by Joel Martinez for is there a DEBIAN package for mono C# mcs?Joel Martinez2009-10-28T15:36:10Z2009-10-28T15:36:10Z<p><a href="http://packages.debian.org/search?keywords=mono" rel="nofollow">http://packages.debian.org/search?keywords=mono</a></p>
http://stackoverflow.com/questions/1613306/understanding-key-value-stores/1613342#16133421Answer by Joel Martinez for Understanding Key-Value storesJoel Martinez2009-10-23T13:14:56Z2009-10-23T13:14:56Z<p>You would want to maintain a separate key/value store that is essentially an index. It would have "blue" as the key, and then a list of all IDs from the "main" cars store that are blue.</p>
<p>Yes, that is duplicating the index functionality of a regular rdbms. </p>
<p>This is a good article about how the FriendFeed team approached this problem and settled on this solution, along with their rationale (I know, a bit strange since they used an RDBMS as a key/value store, but the talking points are sound theory):<br />
<a href="http://bret.appspot.com/entry/how-friendfeed-uses-mysql" rel="nofollow">http://bret.appspot.com/entry/how-friendfeed-uses-mysql</a></p>
http://stackoverflow.com/questions/1065435/can-a-css-class-inherit-one-or-more-other-classesComment by Joel Martinez on Can a CSS class inherit one or more other classes?Joel Martinez2009-12-02T22:14:01Z2009-12-02T22:14:01ZAwesome!! <a href="http://haacked.com/archive/2009/12/02/t4-template-for-less-css.aspx" rel="nofollow">haacked.com/archive/2009/…</a>http://stackoverflow.com/questions/1579192/should-i-use-scriptsharp/1579251#1579251Comment by Joel Martinez on Should I use ScriptSharpJoel Martinez2009-11-30T12:50:23Z2009-11-30T12:50:23ZPlease note, there was a new release done just recently. the project is not dead :-)http://stackoverflow.com/questions/1754271/which-net-architecture-should-i-implement-for-10-000-concurrent-users-for-web-ap/1758781#1758781Comment by Joel Martinez on Which .net architecture should I implement for 10,000 concurrent users for web applicationJoel Martinez2009-11-19T13:37:45Z2009-11-19T13:37:45ZThat depends on the volatility of your data. If it's data that does not change often, then aggressively cache it. If it's data that is likely to change often, you can consider something like SqlDependencyCache to invalidate it when the data changeshttp://stackoverflow.com/questions/1730494/asking-a-microsoft-sql-server-database-for-the-next-auto-generated-identifier-on/1730532#1730532Comment by Joel Martinez on Asking a Microsoft SQL Server database for the next auto-generated identifier on a tableJoel Martinez2009-11-13T17:03:52Z2009-11-13T17:03:52Zyeah, but instead of letting sql server define what the next ID will be, he can take that into his own responsibility, generate the newid(), and then use that value in the insert (and for whatever other reason it is that he needs to know it)http://stackoverflow.com/questions/1722560/how-to-implement-an-enterprise-grade-javascript-framework-for-web-designers/1722616#1722616Comment by Joel Martinez on How to implement an Enterprise-grade JavaScript "framework" for web designers?Joel Martinez2009-11-12T14:45:10Z2009-11-12T14:45:10Zyou know, this is a really good idea ... +1 :-)http://stackoverflow.com/questions/1702716/free-way-to-convert-pdf-to-xps-with-c/1702728#1702728Comment by Joel Martinez on Free way to convert PDF to XPS with C#Joel Martinez2009-11-09T18:48:35Z2009-11-09T18:48:35ZThat seems to be to import XPS to PDF ... I need it the other way around ... I have a PDF and need it to be an XPShttp://stackoverflow.com/questions/1667947/donut-caching-tutorials/1668017#1668017Comment by Joel Martinez on Donut Caching TutorialsJoel Martinez2009-11-04T14:34:28Z2009-11-04T14:34:28Z@PhilPursglove, you're thinking of "Donut Hold Caching" :-P
<a href="http://haacked.com/archive/2009/05/12/donut-hole-caching.aspx" rel="nofollow">haacked.com/archive/2009/…</a>http://stackoverflow.com/questions/1649876/bind-a-vb6-ado-control-during-runtimeComment by Joel Martinez on Bind a VB6 ADO Control during runtimeJoel Martinez2009-10-30T13:09:57Z2009-10-30T13:09:57Zyes, should be moved to SOhttp://stackoverflow.com/questions/537577/where-do-you-keep-your-code/574472#574472Comment by Joel Martinez on Where do you keep your code?Joel Martinez2009-10-27T20:45:15Z2009-10-27T20:45:15ZThis is perfect, best of both worlds. you don't have to account for any weird UAC issues because it's in your profile folder, and you still get to have the nice succinct "short path"http://stackoverflow.com/questions/1607089/are-there-any-getter-jquerys-css-translation/1607110#1607110Comment by Joel Martinez on Are there any getter jQuerys CSS translation?Joel Martinez2009-10-22T13:26:43Z2009-10-22T13:26:43Zwow, honestly I wasn't aware that jquery did this transparent translation for css ... awesome :-)http://stackoverflow.com/questions/1588963/bit-curious-to-understand-expression-tree-in-net/1589001#1589001Comment by Joel Martinez on Bit Curious to understand Expression Tree in .NETJoel Martinez2009-10-19T14:49:43Z2009-10-19T14:49:43Zin reality though, the Func<> (and corresponding Action<> delegates) are just there for convenience. You can use any delegate typehttp://stackoverflow.com/questions/1588963/bit-curious-to-understand-expression-tree-in-net/1589032#1589032Comment by Joel Martinez on Bit Curious to understand Expression Tree in .NETJoel Martinez2009-10-19T14:48:50Z2009-10-19T14:48:50Z+1 really good explanation :-)http://stackoverflow.com/questions/1326803/eucalyptus-cloud-software-threatened-by-amazon-patentComment by Joel Martinez on Eucalyptus Cloud software threatened by Amazon patent?Joel Martinez2009-10-15T20:45:04Z2009-10-15T20:45:04Zin the interest of full disclosure, I think anyone responding to this question should specify whether they are a lawyer or not. Because this is probably a question that only a lawyer can "legally" answerhttp://stackoverflow.com/questions/1561036/how-does-httpcontext-current-work-in-a-multi-threaded-environment/1561059#1561059Comment by Joel Martinez on How does HttpContext.Current work in a multi-threaded environment?Joel Martinez2009-10-13T15:45:56Z2009-10-13T15:45:56Zawesome, thanks for this ... does the static instance get cleaned up once the thread dies?http://stackoverflow.com/questions/1560579/view-data-dictionary-overriding-model-data-in-asp-net-mvc/1560672#1560672Comment by Joel Martinez on view data dictionary overriding Model data in asp.net mvcJoel Martinez2009-10-13T14:47:26Z2009-10-13T14:47:26Z++, this is the preferred way of handling this. It also solves the problem of the user refreshing the page and inadvertently re-posting the same form post. Depending on the system, that could be a bad thing if your action isn't idempotent.