User meandmycode - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T17:29:29Zhttp://stackoverflow.com/feeds/user/63751http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810931/interacting-with-the-javascript-scope-chain0Interacting with the JavaScript scope chainmeandmycode2009-11-27T23:06:45Z2009-11-27T23:28:30Z
<p>Given the following snippet of javascript in a scope:</p>
<pre><code>var x = 10;
function sayx() {
alert(x);
}
sayx();
</code></pre>
<p>You would of course expect a message box printing '10', you could do multiple function nesting to interact with how 'x' is determined, because when resolving what x is the environment walks up the scope chain.</p>
<p>You can even do a level of 'recompilation' with eval to inject new scopes at runtime.. for example:</p>
<pre><code>var x = 10;
function sayx() {
alert(x);
}
function wrap(f) {
return eval('(function() { var x = 20;(' + f + ')(); })');
}
wrap(sayx)();
</code></pre>
<p>This works because the function will have its toString function called which will return the 'original' source.. thus we essentially create a wrapped version of the function that has a new scope that overrides x.. the result will be an alert box that prints '20' and not '10'.</p>
<p>However, on the surface this could appear to work but the scope chain is broken, the next item in the chain is no longer the same because the function 'f' is now defined at a different location.. even worse is that the scope chain it has inherited could contain many references that the calling function shouldn't have access to.</p>
<p>So, is there a more supported, workable way to inject a scope item? something like:</p>
<pre><code>function withScope(f, scope) { ??? }
---
var x = 10, y = 10;
function dothemath{
alert(x + y);
}
var haxthemath = withScope(dothemath, { x: 9000 });
haxthemath(); // 9010 not 20
</code></pre>
<p>I'm guessing the answer is 'no', some may argue there are 'security' issues with such scope injection, but considering you can do the trick anyway (albeit severely broken) I don't think it is..</p>
<p>The benefits of this would be that you can essentially fake your own pseudo variables.</p>
<p>Thanks in advance.</p>
<p><hr></p>
<p>Edit, just the clarify a little, imagine I wanted to 'withScope' a function that had the following scope chain:</p>
<pre><code>Window - window properties
Object - { var x = 10 }
Object - { var y = 5 + x }
</code></pre>
<p>I would like to be able to get a function back that effectively had the same chain + a scope I provide.. ie:</p>
<pre><code>withScope(somefunc, { foo: 'bar' })
</code></pre>
<p>Would give me</p>
<pre><code>Window - window properties
Object - { var x = 10 }
Object - { var y = 5 + x }
Ext scope - { foo = 'bar' }
</code></pre>
<p>All prior standing variables would be found because my extended scope doesn't say anything about them.</p>
http://stackoverflow.com/questions/1674539/running-an-action-when-mousing-over-and-leaving-an-element-or-its-child-elemen0Running an action when mousing over (and leaving) an element (or its child elements)meandmycode2009-11-04T15:28:17Z2009-11-04T20:42:21Z
<p>Imagine I have the following elements:</p>
<pre><code>+------------------+
| |
| +----------------+
| | |
| | |
| +----------------+
| |
+------------------+
</code></pre>
<p>The inner element has positioning that mean it can visually sit outside of its parent, and I put an event listener on the parent like such:</p>
<pre><code>parent.addEventListener('mouseover', function(e) {
// log mouse is over me
}, false);
</code></pre>
<p>If I mouse directly over the parent from the bottom, I get a direct event, but because of event routing if I mouse over from the side (hitting the child first), I'll also receive the event from the child as it bubbles up.</p>
<p>If I keep going left until I'm out of the child element and in the parent space, I'll get a direct event, if I go right again, I'll get another bubbled event from the child element.</p>
<p>This is by design and the design is absolutely fine, however- if I want to do a SINGLE action when the mouse overs me (including my child items), I need to do some extra work to block events I'm not interested in.. for example, this would work:</p>
<pre><code>var isOver = false;
parent.addEventListener('mouseover', function(e) {
if (isOver) return;
isOver = true;
// log mouse is over me
}, false);
parent.addEventListener('mouseout', function(e) {
if (e.relatedTarget == this || e.relatedTarget.isDescendantOf(this)) return;
isOver = false;
// log mouse is leaving me
}, false);
</code></pre>
<p>Essentially the code has a state variable to determine if the mouse has 'overed' the parent (either via its child or not), and if the event fires again whilst 'overed' those events are ignored.. we also capture the mouse out event and ask it.. is the relatedTarget (the target you are about to enter) ME? (the parent), or an eventual child of ME? if so, then don't do anything.. otherwise set the 'overed' state to false.</p>
<p>So that code actually works, but imagine I cannot use the relatedTarget property to determine the next target, how would you go about doing this behavior?</p>
<p>I hope that makes sense, I have the feeling theres not enough context in the events to do it without relatedTarget but felt there might well be an angle regarding changing behavior on the eventPhase property (to determine if the event is direct or bubbled).</p>
<p>Also I'm not looking for answers saying 'this won't work in ie, yadda yadda'.. I'm working against w3c event spec browsers only right now.</p>
<p>Thanks in advance,
Stephen.</p>
<p><hr></p>
<p>Edit, just to clarify, I want the events to happen as if I have a single element that looked like this (if the element was actually as above example):</p>
<pre><code>+------------------+
| |
| +--+
| |
| |
| +--+
| |
+------------------+
</code></pre>
http://stackoverflow.com/questions/1662016/asp-mvc-antiforgery-token-and-cryptographic-errors/1670626#16706261Answer by meandmycode for ASP.MVC antiforgery token and cryptographic errorsmeandmycode2009-11-03T22:40:35Z2009-11-03T22:40:35Z<p>I'm not so sure this has anything specifically to do with the antiforgery system, the inner exception states 'Validation of viewstate MAC failed.', from what I can tell, the default infrastructure for the antiforgery system has a dependency on the viewstate (actually if you <a href="http://aspnet.codeplex.com/sourcecontrol/changeset/view/23011?projectName=aspnet#391758" rel="nofollow">take a look here</a> you'll see see the dependency and horror (the CreateFormatterGenerator method at the bottom)).</p>
<p>As for why the viewstate mac is failing on the fake request, I'm not sure- but given the horror that exists in deserializing the antiforgery token (processing an entire fake request), it doesn't suprise me at all..</p>
http://stackoverflow.com/questions/1017240/handling-web-config-differences-across-multiple-machines-when-using-version-contr3Handling web.config differences across multiple machines when using version control.meandmycode2009-06-19T10:05:16Z2009-10-30T08:26:59Z
<p>I'm sure everyone has to deal with these situations, we check in our solution to source control and each dev machine will have its own resources for debugging, building and testing..</p>
<p>The most common being:</p>
<ul>
<li>Web server (IIS)</li>
<li>Database (SQL)</li>
</ul>
<p>The web server is easy to handle, each dev machine will have its own proj.user file to specify different debug information.</p>
<p>But connection strings for the app are stored in the web.config (which is under source control), ideally we don't want the web.config to be 'aware', so having to do config sections where we delegate them to other config files (not under sc) wouldn't be the best solution..</p>
<p>asp.net (.net?) already supports a model to have web.config inheritance, which would be an ideal scenario.. however this only works for directories.</p>
<p>It would be great if we could have</p>
<ul>
<li>web.config <-- under version control</li>
<li>web.machine.config <-- not under version control</li>
</ul>
<p>Of course I'm open for better suggestions of how people solve this problem.</p>
<p>Like.. maybe having:</p>
<ul>
<li>web.base.config <-- under version control</li>
<li>web.machine.config <-- not under version control</li>
</ul>
<p>And having a build script that creates a web.config by merging them?</p>
<p>Thanks in advance,
Stephen.</p>
<p><hr /></p>
<p><strong>edit</strong></p>
<p>Looks like the next vs may have a way to handle this:</p>
<p><a href="http://blogs.msdn.com/webdevtools/archive/2009/05/04/web-deployment-web-config-transformation.aspx" rel="nofollow">http://blogs.msdn.com/webdevtools/archive/2009/05/04/web-deployment-web-config-transformation.aspx</a></p>
<p><hr /></p>
<p><strong>edit edit</strong></p>
<p>Possibly do'able with xml mass update today:</p>
<p><a href="http://blogs.microsoft.co.il/blogs/dorony/archive/2008/01/18/easy-configuration-deployment-with-msbuild-and-the-xmlmassupdate-task.aspx" rel="nofollow">http://blogs.microsoft.co.il/blogs/dorony/archive/2008/01/18/easy-configuration-deployment-with-msbuild-and-the-xmlmassupdate-task.aspx</a></p>
<p><hr /></p>
<p><strong>edit edit edit</strong></p>
<p>Well its certainly possible to do with a simple xslt build task and a small transform that copied everything and intercepts certain properties.. just tried a proof of concept and this will save us lots of frustration, but the transformation file may be more than people are willing to accept.</p>
<p>Basically we store a Web.base.config in version control, and run it through the transform to generate the Web.config on a build event.</p>
<p>Seems like vs2010 will really help in terms of having a much more friendly version of this.</p>
http://stackoverflow.com/questions/1600094/how-do-you-set-cachemode-on-an-element-programatically/1600187#16001873Answer by meandmycode for How do you set CacheMode on an element programatically?meandmycode2009-10-21T11:17:28Z2009-10-21T11:17:28Z<p>I don't think the property value of CacheMode is an enum, I think its an abstract class.</p>
<p>So you should have something like:</p>
<pre><code>image.CacheMode = new BitmapCache();
</code></pre>
<p>There might even be a static instance of BitmapCache somewhere (like on CacheMode).</p>
<p>And yes, having an abstract class called ~Mode is a bit weird imo ;)</p>
http://stackoverflow.com/questions/1561036/how-does-httpcontext-current-work-in-a-multi-threaded-environment/1561110#15611101Answer by meandmycode for How does HttpContext.Current work in a multi-threaded environment?meandmycode2009-10-13T15:46:00Z2009-10-13T15:46:00Z<p>What Marc says is the easiest most likely for what you are after, however ASP.NET is actually somewhat more complicated than what say ThreadStatic does, because single requests actually can be processed by multiple threads.. what I believe happens with ASP.NET is that the executing thread explicitely is told to switch context, of course the hosting environment is scheduling the threads and it has context of which httpcontext needs executing, so it finds a thread, tells the thread which context it should run in.. then sends it off on its way.</p>
<p>So the solution really isn't all that pretty sadly, where as threadstatic is much simpler and probably suits needs 95% of the time.</p>
http://stackoverflow.com/questions/1530758/asp-net-mvc-binding-string-to-ienumerableint0asp.net mvc binding string to ienumerable<int>meandmycode2009-10-07T10:27:48Z2009-10-08T03:33:57Z
<p>Hi all, just wondering if there is something built into asp.net mvc where I can override how a specific member is bound.</p>
<p>For example, imagine I have a form:</p>
<pre><code><form ...>
<input type="text" name="Things" />
...
</form>
</code></pre>
<p>And I have the controller action that handles the postback:</p>
<pre><code>public ActionResult MyPostbackAction(IEnumerable<int> things)
{
...
}
</code></pre>
<p>and enter the following the data in the field: "1, 20, 30, 50" (not including quotation marks).</p>
<p>Of course this won't work, how exactly is the action suposed to convert the string into a sequence of ints? so I want to be able to 'hint' to the binder how I expect it to bind this value.. something like:</p>
<pre><code>public ActionResult MyPostbackAction([SequenceBinder(",")]IEnumerable<int> things)
{
...
}
</code></pre>
<p>Where the sequence binder is a binding hint that breaks the incoming value by a separator, and delegates the binding back to the binding infrastructure, so that it can handle binding a sequence of strings into an IEnumerable.</p>
<p>I imagine this is something I would need to actually build, perhaps by creating a new default model binder that ties into a hinting system first.</p>
<p>Just wondering if this already exists, either built in or by the community.</p>
<p>Thanks in advance,
Stephen.</p>
http://stackoverflow.com/questions/1381584/what-is-the-reasoning-behind-this-ioc-behavior-resolve-with-multiple-registered0What is the reasoning behind this ioc behavior (Resolve with multiple registered components)meandmycode2009-09-04T21:18:14Z2009-09-05T19:11:14Z
<p>Seems like a standard approach for an ioc when given a scenario like (C# windsor):</p>
<pre><code>container.AddComponent<ILogger, HttpLogger>();
container.AddComponent<ILogger, SmtpLogger>();
var logger = container.Resolve<ILogger>();
</code></pre>
<p>Would be that when resolving the component, the first registered ILogger (HttpLogger in this case) is the only candidate for resolution, the ioc will then find the 'fattest' constructor it can where it believes it can resolve all the dependencies.</p>
<p>However, it may well be the ioc cannot resolve the dependencies for the first logger, and will thusly return with a resolution issue, it could well be the case that the SmtpLogger COULD have been resolved if the ioc tried it.</p>
<p>So what is the reasoning for only using the first registered service as the candidate? it seems that the uncertainty of which type you will get is an argument, but then the ioc is being left in charge of which constructor that it uses anyway.</p>
<p>So why not pick from all the constructors of all applicable types, and start trying to resolve from the fattest constructors down (agnostic of the real type)?</p>
<p>This may have a really obvious answer but honestly I don't know it.</p>
<p>Thanks in advance,
Stephen.</p>
http://stackoverflow.com/questions/1357779/how-do-i-move-an-asp-net-mvc-site-from-the-root-application-to-a-subapplication-f/1357843#13578431Answer by meandmycode for How do I move an ASP.NET MVC site from the root application to a subapplication folder?meandmycode2009-08-31T14:49:31Z2009-08-31T14:49:31Z<p>Firstly you don't change the route names, they should be app relative.</p>
<p>Secondly, you'll probably experience problems from web.config inheritance (ie, your web.config in the mvc application is inheriting everything from the web.config in the root).</p>
<p>You can stop this inheritance but you'll need to modify the root applications web.config to include a location tag around everything:</p>
<pre><code><configuration>
<configSections>
... all your custom config sections here (if any) ...
</configSections>
<location path="." inheritInChildApplications="false">
... all your config stuff here (ie, system.web, connectionStrings) ...
</location>
</configuration>
</code></pre>
<p>What this does is says, apply these settings only to the path '.', the period will stand for the current location, then the inheritInChildApplications says 'don't inherit these settings in child applications'.</p>
<p>You can even put things outside of the location tag that you DO want to share to child applications.</p>
<p><hr /></p>
<p>Edit: note this may not fix your problems (or at least not all of them), some may be because you've made assumptions that the application will run in the root (mainly regarding paths).</p>
http://stackoverflow.com/questions/1324481/setting-the-gzip-compression-in-asp-net/1324520#13245201Answer by meandmycode for Setting the gzip compression in asp.netmeandmycode2009-08-24T20:20:14Z2009-08-24T20:20:14Z<p>Yes you can enable compression with the web.config, as the article below shows- but it can depend on the permissions on the server allows sites.</p>
<p>You should note that dynamic compression (anything that needs to be processed before ti can be sent to the client) can increase the load on the server because its having to do compression on every single request.</p>
<p><a href="http://www.iis.net/ConfigReference/system.webServer/urlCompression" rel="nofollow">IIS7 Compression</a></p>
<p><hr /></p>
<p>Edit: note this is for IIS7 (as you have tagged)</p>
http://stackoverflow.com/questions/1017240/handling-web-config-differences-across-multiple-machines-when-using-version-contr/1318435#13184350Answer by meandmycode for Handling web.config differences across multiple machines when using version control.meandmycode2009-08-23T12:17:05Z2009-08-23T12:17:05Z<p>Whilst there are certainly plenty of solutions, none of them really give you a huge amount of control over the generated configuration, one solution that I noted in my edit where you get a huge amount of control but with the overhead of having to write an xslt file, was using an xslt build task to use the template web.config/app.config from source control (which I personally name web.base.config/app.base.config), and use an xslt file to transform the version controlled config file at build time, and generate a web.config/app.config.</p>
<p>Here is an example of an <a href="http://www.arlt.eu/blog/2007/10/01/msbuild-xslt-task/" rel="nofollow">xslt build task</a> (although you may want to write it to your own coding standards), and an example of a mundane xslt transform that will change the value of a connection string and copy everything else in the config:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<!-- Copy all. -->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<!-- Swap connection string. -->
<xsl:template match="/configuration/connectionStrings/add[@name='my_connection_string_name']">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
<xsl:attribute name="connectionString">my replacement connection string value</xsl:attribute>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>This is a mediocre example, but you can imagine you can completely transform entire sections where you previously would struggle with an inheritance based scenario.</p>
http://stackoverflow.com/questions/1266827/what-is-the-difference-between-these-two-html-anchors/1266860#12668604Answer by meandmycode for What is the difference between these two HTML anchors?meandmycode2009-08-12T15:17:05Z2009-08-12T15:19:58Z<p>The second isn't a valid link, it <strong>requires</strong> javascript in order to work, something the link checker probably isn't checking (it is doing essentially static analysis I guess).</p>
<p>You should always have the href set to the link you want to open and attach javascript enhanced behavior, something like:</p>
<pre><code><a onclick="window.open(this.href, '',
'width=590,height=450,scrollbars=no,resizable=no'); return true;"
href="my/displayedPage.html" target="_blank">Show Me</a>
</code></pre>
http://stackoverflow.com/questions/1222849/is-it-ok-to-manipulate-dom-before-ready-state3Is it ok to manipulate dom before ready state?meandmycode2009-08-03T15:01:33Z2009-08-03T16:27:04Z
<p>This is generally how I manage progressive enhancement whilst keep the experience clean, but how safe is it? is there potential for a race condition and this not working?</p>
<p>Imagine the simple abstract scenario, you want to display something differently if you have javascript support.. this is generally what I will end up doing:</p>
<pre><code><div id="test">original</div>
<script type="text/javascript">
var t = document.getElementById('test');
t.innerHTML = 'changed';
</script>
</code></pre>
<p>Many may claim you should use a framework and wait for a domready event, and do changes there.. however there is a significant delay where the 'test' element will have already been rendered before the end of the document and the css are ready and a domready triggers.. thus causing a noticable flicker of 'original'.</p>
<p>Is this code liable to race condition failures? or can I guarentee that an element is discoverable and modifiable if it exists before the script?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1222464/how-to-take-screen-shots-from-various-browsers-on-a-local-machine-for-web-develop/1222546#12225461Answer by meandmycode for How to take screen shots from various browsers on a local machine for web development?meandmycode2009-08-03T14:05:18Z2009-08-03T14:05:18Z<p>I know this is something SuperPreview is aiming to achieve, however I'm not sure how complete the product is yet:</p>
<p><a href="http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx" rel="nofollow">http://blogs.msdn.com/xweb/archive/2009/03/18/Microsoft-Expression-Web-SuperPreview-for-Windows-Internet-Explorer.aspx</a></p>
http://stackoverflow.com/questions/1079935/actionscript-netstream-stutters-after-buffering1Actionscript: NetStream stutters after buffering.meandmycode2009-07-03T15:54:08Z2009-07-06T10:40:28Z
<p>Using NetStream to stream content from http, I've noticed that esp with certain exported h264's, if the player encounters an empty buffer, it will stop and buffer to the requested length (as expected).</p>
<p>However once the buffer is full, the playback doesn't resume, but instead jumps ahead, as such- instantly playing the buffered duration in a brief moment, and thusly triggering an empty buffer again.. this will then continue over and over.</p>
<p>Presumably when the netstream pauses to buffer, the playhead position continues, and the player is attempting to snap to that position on resume- however given it could take 5 seconds to build a 2 second buffer- it ends up with a useless buffer again..</p>
<p>(this is an assumption)</p>
<p>I've attempted to work around this by listening for an empty buffer netstatus event, pausing the stream, and at the same time setting up a loop to check the current buffer length vs the requested buffer length.. and resuming once the buffer length is greater than or equal to the requested buffer.. however this causes problems when there isn't enough of the video remaining.. for example, a 10 second buffer with only 5 seconds remaining, the loop just sits there waiting for a buffer length of 10 seconds when theres only 5 left...</p>
<p>You would think that you could simply check which was smaller, the time left or the requested buffer length.. however the times flash gives are not accurate.. </p>
<p>If you add the net streams current time index, plus the buffered time, the total is not the entire duration of the movie (when at the end).. it is close but not the same.</p>
<p>This brings me back to the original problem, and if there is another way to fix this, clearly flash knows when the buffer is ready, so how can i get flash pause when it buffers, and resume once the buffer is ready? currently it doesn't.. it pauses and then once the buffer is full- it plays the entire buffered content in about .1 of a second.</p>
<p>Thanks in advance,
Stephen.</p>
http://stackoverflow.com/questions/1079935/actionscript-netstream-stutters-after-buffering/1086402#10864021Answer by meandmycode for Actionscript: NetStream stutters after buffering.meandmycode2009-07-06T10:40:28Z2009-07-06T10:40:28Z<p>Alright well, plenty of searching around (wow, how hard is it to describe this problem).. I guess additionally the problem is related to lower bandwidth and a lot of people may not test this scenario..</p>
<p>So anyway, plenty of people experiencing this issue- seems dependant on the codec settings- perhaps keyframing or how the streaming hints work.. I've no idea.</p>
<p>What I do know is this shouldn't be a concern to the player, flash yet again becomes a huge let down..</p>
<p>BUT, I did manage to make a hack to resolve this issue, if you listen to the netstatus event, and wait for an empty buffer event, you pause the stream.. ideally now you listen for a buffer full event, and resume it- but since the stream is paused- the buffer doesn't build (but of course, the video is still being loaded in).</p>
<p>If you now set a timer (I set an event on enter frame), and listen for one of two conditions to become true:</p>
<ul>
<li>a) the bufferLength is greater than
or equal to the bufferTime (actual
buffer is at least requested buffer
size) </li>
<li>b) the loaded bytes count
equals the total bytes count</li>
</ul>
<p>Condition A isn't enough because at the end of the video, the bufferLength may not be able to fit the requested buffer size because the time remaining is less, and checking the current playhead location + actual buffer length at this time does not equal the duration of the movie, so this is why condition B is needed, you check that the actual movie is completely loaded, and as such playable.</p>
<p>Here's my code if at all useful to anyone:</p>
<pre><code>function onNetStatus(e:NetStatusEvent):void
if (e.info.code == "NetStream.Buffer.Empty") {
ns.pause();
playerRoot.addEventListener(Event.ENTER_FRAME, function() {
if (ns.bufferLength >= ns.bufferTime || ns.bytesLoaded == ns.bytesTotal) {
playerRoot.removeEventListener(Event.ENTER_FRAME, arguments.callee);
ns.resume();
}
});
}
}
</code></pre>
<p>Cheers.</p>
http://stackoverflow.com/questions/777767/firefox-session-cookies3Firefox session cookiesmeandmycode2009-04-22T15:17:52Z2009-07-04T21:40:01Z
<p>Generally speaking, when given a cookie that has no expiration period, modern browsers will consider this cookie to be a 'session cookie', they will remove the cookie at the end of the browsing session (generally when the browser instance closes).</p>
<p>IE, Opera, Safari and Chrome all support this behavior.</p>
<p>However firefox (3.0.9 latest proper release) appears not to follow this rule, from what I can tell it doesn't expire the cookies when the browser is closed, or when the user logs off or restarts the OS..</p>
<p>So, why does firefox refer to these as session cookies, when they last aparently indefinitely?</p>
<p>Does anyone know how Firefox handles session cookie expiration?</p>
http://stackoverflow.com/questions/1063023/mvc-pattern-practices-asp-net-mvc-generating-urls-at-the-action-instead-of-t1MVC pattern practices (asp.net mvc) - generating urls at the action, instead of the view.meandmycode2009-06-30T10:46:11Z2009-06-30T11:30:56Z
<p>Imagine the scenario you have a listing page that is a concatenation of multiple entities on your site (such as a search page).. you collate all the entities of your site in the action, and map all of them into a generic view model type..</p>
<p>pseudo:</p>
<pre><code>from articles, posts, projects
orderby rating
select top 50 as 'SearchResult'
</code></pre>
<p>My search result class might look like this:</p>
<pre><code>SearchResult { Title, Snippet, Rating }
</code></pre>
<p>In this scenario, the view will have no context of what each result 'is', so how can it generate a url to get more details, should the result then be categorized? </p>
<pre><code>SearchResult { Title, Snippet, Rating, ResultType }
where ResultType is { Article, Post, Project } enum
</code></pre>
<p>This would work, it would require the view to discover the relation of the enum to a controller action..</p>
<p>This would however cause problems for maintainability, each new entity type or static content section would need to be categorized, and a mapping from that new category to a controller action.. additionally this causes problems because.. what data do I pass to the action? what if there isn't any data to pass?</p>
<p>Seems like the best scenario would be to generate the 'more details' url in the action, where it has context of each entity, and the action / data mapping..</p>
<p>Is it ok for controllers/actions to generate urls, shouldn't they stay agnostic?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1008573/ioc-and-asp-net-mvc-views/1009366#10093660Answer by meandmycode for IoC and ASP.NET MVC Viewsmeandmycode2009-06-17T20:27:53Z2009-06-17T20:27:53Z<p>Would you be willing to download the source, do small modifications and use that? if so you could do it by some small changes to the web forms view engine, so that after the build manager has created a compiled page object, you could do property injection. </p>
<p>Otherwise, it gets ugly unless you create a base controller and override the action executing method and inject into the view data.</p>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p><a href="http://aspnet.codeplex.com/sourcecontrol/changeset/view/23011?projectName=aspnet#266535" rel="nofollow">http://aspnet.codeplex.com/sourcecontrol/changeset/view/23011?projectName=aspnet#266535</a></p>
<p>Is the file that handles creating the page instances, right after the null check on viewInstance you could ask your service locator to do property injection.</p>
http://stackoverflow.com/questions/998853/asp-net-mvc-handleerror-not-working-customerrors-is-set-to-on/1007350#10073501Answer by meandmycode for ASP.NET MVC HandleError not working (customErrors is set to "On")meandmycode2009-06-17T14:22:39Z2009-06-17T14:22:39Z<p>This tends to happen if there is a problem processing the error page.. if you debug the app, right after the initial exception you'll problem hit another (exception from the error page).. I had this happening and the reason for me was because I had a strongly typed master page, the error page was using this master page, and because the masterpage shares the same model as the actual page, the master page was getting a HandlerErrorInfo model, instead of the typed model I expected..</p>
<p>Personally I think this is a poor design in the asp.net mvc (along with the rest of it), but you can get around this easy enough by not using the same master page (you could even do masterpage inheritance where you have an inherited strongly typed master page that purely inherits the layer from the untyped one..</p>
<p>Otherwise this is some sort of exception happening in the error view.. (most likely).</p>
http://stackoverflow.com/questions/961907/sending-info-with-a-http-redirect-that-the-browser-should-send-to-the-redirected1Sending info with a HTTP redirect that the browser should send to the redirected location?meandmycode2009-06-07T13:45:23Z2009-06-09T22:58:41Z
<p>Is this possible.. for example, imagine I respond to a request with a 302 (or 303), and I inform the browser to do a request to a given location.. is there a header that I can send with the HTTP 302, so that the subsequent request from the browser would include that header?</p>
<p>I know I could do this with the location header, as in redirect and specify the information in the url as a query string.. but I'm wondering if there is a better way.. it seems that it should be a legit scenario..</p>
<p>'Content has moved, go here .. oh and you'll want to take this with you to give to the redirect location'</p>
<p>I'm guessing a big fat no!</p>
<p>Thanks in advance.</p>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p>The reason for this is in respect to PRG patterns, where you have a GET url and POST url, given that you post data and it isn't acceptable, the server redirects you to the GET, and does some 'magic' in order to 'send data' to that GET, using most often session state to store a variable.</p>
<p>However this <em>can</em> breakdown in scenarios where many of these PRG requests are happening, granted this isn't a common scenario and generally nobody need worry about this.. but if you do- you'll need a way to identify the requests, this can be done with query string parameters send in the 302.. so that a specific entry can be put in session state according to that request.</p>
<p>The question was regarding trying to remove the 'request key' from the url, and making it more implicit.. cookies 'appear' to work, but they only make the window for screw ups smaller.</p>
<p>It would be great to say when you go the 'location' i've specified, send these parameters.</p>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p>Just to note, I'm not trying to get the browser to send arbitrary headers to the location, but if there is ANY headers designed to hint the context of the request (like the querystring parameters could).</p>
http://stackoverflow.com/questions/955142/ie6-and-7-weird-margin-inheritance1IE6 and 7, weird margin 'inheritance'meandmycode2009-06-05T10:04:12Z2009-06-05T10:42:51Z
<p>I know about the double margin bug, but this is different.. the scenario is having an element with a bottom margin, then directly below it an element that contains floating elements (which are cleared at the end), the container element could have say a bottom border that should sit just under the floating elements it contains.. however ie IE7 and 6, the bottom border is spaced away from its contents, by the exact same amount of the bottom margin of the element above it..</p>
<p>It's not really inheritance, more that a margin is applied twice and in a wrong position.. here's some repo code:</p>
<pre><code><h1 style="margin: 0 0 50px 0;">Menu</h1>
<div style="border-bottom: solid 1px #000;">
<div style="float: left;">Hello world?</div>
<div style="clear: left;"></div>
</div>
</code></pre>
<p>Stick that in a complaint page (I used xhtml transitional), you'll notice the border doesn't appear under the text, but 50px away from it... the same distance that 'Menu' is spaced away from the text..</p>
<p>Test this against say.. IE8, and the border is correctly sat just under the text.</p>
<p>This is something I've noticed previously and managed to ignore and work around, but I'm wondering if this bug is named, and if there is a good way to get around it..</p>
<p>(the way I would usually get around this is to space H1 with padding instead, but this isn't always reasonable).</p>
http://stackoverflow.com/questions/783097/css-fluid-column4CSS fluid 'column'meandmycode2009-04-23T19:04:53Z2009-04-28T21:46:11Z
<p>Whats the best way to get this layout in CSS? imagine that I have three divs, two divs inside another.. of the two inner divs, the first one has a specific width set, and the second div is expected to take up the remaining space.</p>
<p>Generally I'd end up setting a specific width on the second column, and manage updating this in the end that the containing div width changed.</p>
<p>If I float the fixed but not the fluid, the fluid column will wrap underneath the fixed div (not what is wanted).</p>
<pre><code>+-------+ +--------------------------------------+
| fixed | | |
+-------+ | fluid |
| |
| |
+--------------------------------------+
<div>
<div>fixed</div>
<div>fluid</div>
</div>
</code></pre>
<p>This has to be an entirely css solution, no javascript frameworks- and ideally works on most commonly used browsers with minimum 'hackage' (if at all).</p>
<p>Hope the ASCII art works,</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/760404/xaml-binding-properties/760428#7604280Answer by meandmycode for XAML Binding Propertiesmeandmycode2009-04-17T13:32:16Z2009-04-17T13:32:16Z<p><a href="http://msdn.microsoft.com/en-us/library/ms750413.aspx" rel="nofollow">Binding markup extension - WPF</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc189022%28VS.95%29.aspx" rel="nofollow">Binding markup extension - Silverlight</a></p>
http://stackoverflow.com/questions/760166/how-to-convert-an-md5-hash-to-a-string-and-use-it-as-a-file-name/760344#7603440Answer by meandmycode for How to convert an MD5 hash to a string and use it as a file namemeandmycode2009-04-17T13:09:07Z2009-04-17T13:09:07Z<p>Technically using Base64 is bad if this is Windows, filenames are case insensitive (at least in explorers view).. but in base64, 'a' is different to 'A', this means that perhaps unlikely but you end up with even higher rate of collision..</p>
<p>A better alternative is hexadecimal like the bitconverter class, or if you can- use base32 encoding (which after removing the padding from both base64 and base32, and in the case of 128bit, will give you similar length filenames).</p>
http://stackoverflow.com/questions/756310/striped-table-rows-in-asp-net-mvc-without-using-jquery-or-equivalent/756395#7563956Answer by meandmycode for Striped table rows in ASP.NET MVC (without using jQuery or equivalent)meandmycode2009-04-16T14:31:05Z2009-04-16T14:44:26Z<p>What about an extension method?</p>
<pre><code>public static void Alternate<T>(this IEnumerable<T> items, Action<T, bool> action)
{
bool state = false;
foreach (T item in items)
action(item, state = !state);
}
</code></pre>
<p>This way you could say:</p>
<pre><code><% movies.Alternate((movie, alt) => { %>
<tr class="<%= alt ? "alternate" : "" %>">
<td>
<%= Html.Encode(movie.Title) %>
</td>
<!-- and so on for the rest of the table cells... -->
</tr>
<% }); %>
</code></pre>
<p>Edit, additionally if you want the index, you can use an extension method like this:</p>
<pre><code>public static void Each<T>(this IEnumerable<T> items, Action<T, int> action)
{
int state = 0;
foreach (T item in items)
action(item, state++);
}
</code></pre>
http://stackoverflow.com/questions/753130/ado-net-entity-framework-northwind-and-employee-orders-0/753212#7532122Answer by meandmycode for ADO.NET Entity Framework, Northwind, and Employee.Orders > 0meandmycode2009-04-15T18:59:27Z2009-04-15T18:59:27Z<p>Use the <a href="http://msdn.microsoft.com/en-us/library/bb738708.aspx" rel="nofollow">Include</a> method, and you may be better writing the query less linq like:</p>
<pre><code>public IList<Employee> FindByLastName(string lastName)
{
return _ctx.Employees
.Include("Orders")
.Where(emp => emp.LastName == lastName)
.ToList();
}
</code></pre>
http://stackoverflow.com/questions/750965/sending-event-from-a-page-to-its-master-page-in-asp-net/751002#7510020Answer by meandmycode for Sending Event from a Page to its Master Page in ASP.NETmeandmycode2009-04-15T10:04:04Z2009-04-15T10:04:04Z<p>An event doesn't seem like the best way to indicate this, given you need your masterpage to understand your pages, you could well have a standard property on the pages that indicates their 'key' in the navigation.</p>
<p>In your masterpage code:</p>
<pre><code>protected override void OnInit(EventArgs e)
{
base.OnInit(e);
var navigatable = this.Page as INavigatable;
if (navigatable != null)
this.Navigation.ActiveKey = navigatable .NavigationKey;
}
</code></pre>
<p>Navigatable interface:</p>
<pre><code>public interface INavigatable
{
string NavigationKey { get; }
}
</code></pre>
<p>Page instance:</p>
<pre><code>public class AboutPage : Page, INavigatable
{
public string NavigationKey
{
get { return "About"; }
}
}
</code></pre>
http://stackoverflow.com/questions/734821/using-an-httpcontext-across-threads/736115#7361151Answer by meandmycode for Using an HTTPContext across threadsmeandmycode2009-04-09T22:29:36Z2009-04-09T22:29:36Z<p>Whilst the HttpContext is designed to handle a context that isn't thread specific (because the http context can start on one thread and finish on another), it isn't implicitely thread safe.</p>
<p>Essentially the problem is you are doing something that isn't intended, these requests would be multiple generally and each have their own assigned HttpApplication to forefill the request, and each have their own HttpContext.</p>
<p>I really would try and let the asp.net infrastructure delegate the requests itself.</p>
http://stackoverflow.com/questions/735473/can-you-refactor-out-a-common-functionality-from-these-two-methods/735650#7356501Answer by meandmycode for Can you refactor out a common functionality from these two methods?meandmycode2009-04-09T19:41:15Z2009-04-09T19:41:15Z<p>I'd just write a short extension method around IEnumerable string that took a separator:</p>
<pre><code>public static string Join(this IEnumerable<string> strings, string separator)
{
return string.Join(separator, strings.ToArray());
}
</code></pre>
<p>then you can do:</p>
<pre><code>var text = SelectedCheckBoxes.Select(cb => cb.Text).Join(", ");
var tags = SelectedCheckBoxes.Select(cb => (string)cb.Tag).Join(", ");
</code></pre>
http://stackoverflow.com/questions/1835063/type-inference-over-ienumerabletComment by meandmycode on Type inference over IEnumerable<T>meandmycode2009-12-03T13:43:35Z2009-12-03T13:43:35ZOverload resolution is done at compile time, and at compile time every 'item' is type T, it doesn't know that any of them are specifically MyBase.http://stackoverflow.com/questions/1810931/interacting-with-the-javascript-scope-chain/1810944#1810944Comment by meandmycode on Interacting with the JavaScript scope chainmeandmycode2009-11-28T13:51:03Z2009-11-28T13:51:03ZYep however it inserts the scope to the head of the scope it is defined in, whereas I'm looking to create a copy of a function with a new scope to the scope it had.http://stackoverflow.com/questions/1810931/interacting-with-the-javascript-scope-chain/1810944#1810944Comment by meandmycode on Interacting with the JavaScript scope chainmeandmycode2009-11-27T23:34:38Z2009-11-27T23:34:38ZI don't think the with statement lets you infer scope in the way I want, but yea this may be something that is out of scope for javascript.. it just seems frustrating that you can completely blow away the closure scope and provide your own (causing who knows what mayhem), but you can't just add a little bit on top of the existing closure.. legit scenarios like adding your own pseudo variables would be really useful.http://stackoverflow.com/questions/1810931/interacting-with-the-javascript-scope-chain/1810952#1810952Comment by meandmycode on Interacting with the JavaScript scope chainmeandmycode2009-11-27T23:31:38Z2009-11-27T23:31:38ZYep this is about closure context vs the call context.http://stackoverflow.com/questions/1810931/interacting-with-the-javascript-scope-chain/1810959#1810959Comment by meandmycode on Interacting with the JavaScript scope chainmeandmycode2009-11-27T23:21:20Z2009-11-27T23:21:20ZYep, the second code snip does this trick (just simpler for the purposes of demo), it works in that the closest scope works as expected, but the scope chain is now completely different and doesn't chain on from the original onehttp://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful/383503#383503Comment by meandmycode on Is JavaScript 's "new" Keyword Considered Harmful?meandmycode2009-11-16T21:55:21Z2009-11-16T21:55:21ZSure, I understand the point regarding premature optimizations, it takes a lot of iterations to show the significant expense, '100,000 'function calls just breaks 1ms, when using callee that becomes 304ms.. whilst impresively expensive, its probably completely out of context with the body of the call, and how many times the call actually happens over a given period.http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful/383503#383503Comment by meandmycode on Is JavaScript 's "new" Keyword Considered Harmful?meandmycode2009-11-16T20:55:14Z2009-11-16T20:55:14ZThe only reason for this is that arguments.callee is an 'expensive' call to make. I wonder if there are better ways to do this check more generically.. also I think initializing on something other than the global object is more intentional than erroneous.http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful/383503#383503Comment by meandmycode on Is JavaScript 's "new" Keyword Considered Harmful?meandmycode2009-11-16T20:32:41Z2009-11-16T20:32:41ZRegarding the check, couldn't you assume the global object is window, and do if (this == window) throw ..http://stackoverflow.com/questions/1744426/does-javascripts-new-operator-do-anything-but-make-life-difficultComment by meandmycode on Does Javascript's new operator do anything but make life difficult?meandmycode2009-11-16T20:18:22Z2009-11-16T20:18:22ZI don't see how you could do it yourself, the biggest problem with prototypal inheritance for me is dropping real construction args, it is imo that a class should enforce its creation (as much as reasonable) by its rules.. being able to create an object that is 'uninitialized' just makes it harder to discover bugs.. and the specification initialization pattern is an ugly hack.http://stackoverflow.com/questions/1724299/explain-this-obscure-asp-net-bugComment by meandmycode on Explain this obscure ASP.NET bugmeandmycode2009-11-13T12:58:44Z2009-11-13T12:58:44ZPersonally I think the first exception log is because requests were happening whilst you were patching the dll, causing it to be temporarily be unavailable.. I think the 2 seconds later error is once your patched code has loaded, and run some data access code on a background thread, which was buggy- causing an exception which bubbled to the top of the worker process, and caused it to exit.http://stackoverflow.com/questions/1724299/explain-this-obscure-asp-net-bug/1728586#1728586Comment by meandmycode on Explain this obscure ASP.NET bugmeandmycode2009-11-13T12:56:21Z2009-11-13T12:56:21ZIt really isn't that unusual, and asp.net only catches request handling execution, as it assumes that a request execution exception shouldn't bring the entire app down.. any other execution outside of a http request is handled just like any other .net app, and will bubble to the top and thusly cause the process to exit.
I think this behavior was set in .NET 2.http://stackoverflow.com/questions/1724299/explain-this-obscure-asp-net-bug/1725095#1725095Comment by meandmycode on Explain this obscure ASP.NET bugmeandmycode2009-11-12T22:03:43Z2009-11-12T22:03:43ZYou are right that traditionally an uncaught exception won't crash a worker process, but thats for threads that are executing in a http context (basically, the https "exec" function catches the exeption).. but if you have an uncaught exception in another thread, such as a timer event- the worker process will terminate.http://stackoverflow.com/questions/1697924/how-to-add-tax-to-paypal-ipn-checkoutComment by meandmycode on How to Add Tax to Paypal IPN Checkoutmeandmycode2009-11-09T09:48:33Z2009-11-09T09:48:33ZCan you clarify which paypal service call you are talking about? IPN is generally about payment notification, is this express checkout? if so the field name is taxAmt.http://stackoverflow.com/questions/1674539/running-an-action-when-mousing-over-and-leaving-an-element-or-its-child-elemen/1675024#1675024Comment by meandmycode on Running an action when mousing over (and leaving) an element (or its child elements)meandmycode2009-11-05T14:25:11Z2009-11-05T14:25:11ZTurns out this may be a bug, firefox 3.6 DOES have a relatedTarget set, and does have a bug report to backup the change stating that relatedTarget is null unless explicitely set when the drag event starts. Again your solution and time wasn't a waste, simply I would change the string where you capture mouse in/out and change to drag in/out and it would work.http://stackoverflow.com/questions/1674539/running-an-action-when-mousing-over-and-leaving-an-element-or-its-child-elemen/1675024#1675024Comment by meandmycode on Running an action when mousing over (and leaving) an element (or its child elements)meandmycode2009-11-04T22:16:27Z2009-11-04T22:16:27ZThe amount of time you dedicate to answering questions is completely up to you.