User Ian Oxley - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:42:30Z http://stackoverflow.com/feeds/user/1904 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1819016/viewing-session-data-on-master-page-in-asp-net/1819527#1819527 0 Answer by Ian Oxley for viewing session data on master page in asp.net Ian Oxley 2009-11-30T12:26:57Z 2009-11-30T12:26:57Z <p>How about using a <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.loginname.aspx" rel="nofollow">LoginName control</a>?</p> http://stackoverflow.com/questions/1819278/css-issue-trying-to-get-html-elements-to-stay-on-one-line/1819457#1819457 0 Answer by Ian Oxley for CSS Issue - Trying to get HTML elements to stay on one line. Ian Oxley 2009-11-30T12:13:53Z 2009-11-30T12:13:53Z <p>An <code>&lt;img /&gt;</code> and <code>&lt;input type="text" /&gt;</code> will be <code>display:inline</code> by default so shouldn't need <code>float:left</code>.</p> <p>And you might be better off replacing your <code>&lt;div id="LoadingGif" style="float:left;"&gt;&lt;/div&gt;</code> with either a tag or an tag: then you'll have 3 inline elements meaning you can remove the surplus <code>&lt;div style="clear:both;"&gt;&lt;/div&gt;</code> from your HTML :-)</p> http://stackoverflow.com/questions/1819377/use-of-parameters-for-mysqlquery/1819406#1819406 1 Answer by Ian Oxley for Use of parameters for mysql_query Ian Oxley 2009-11-30T12:04:00Z 2009-11-30T12:04:00Z <p>As far as I'm aware, <a href="http://shiflett.org/articles/sql-injection" rel="nofollow"><code>mysql_real_escape_string</code> is one of the better ways to prevent SQL injection</a>, short of using prepared statements with <a href="http://php.net/manual/en/book.mysqli.php" rel="nofollow">mysqli</a> or <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">PDO</a>.</p> http://stackoverflow.com/questions/1809248/asp-net-dynamic-javascript-path-src/1809285#1809285 0 Answer by Ian Oxley for ASP.Net: Dynamic JavaScript path / src Ian Oxley 2009-11-27T15:09:41Z 2009-11-27T15:09:41Z <p>You could always use <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.resolveclienturl.aspx" rel="nofollow">ResolveClientUrl</a> in the script src attribute (you'll need to make the path to your JavaScript file an app root relative path with the "~/"):</p> <pre><code>&lt;script type="text/javascript" src="&lt;%= ResolveClientUrl("~/Helper/jquery-1.3.2.min.js") %&gt;"&gt;&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1803525/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp/1803896#1803896 1 Answer by Ian Oxley for How can i access a control within a ListView once a button has been clicked (ASP.NET c#)? Ian Oxley 2009-11-26T14:14:26Z 2009-11-26T14:14:26Z <p><a href="http://stackoverflow.com/questions/1803525/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp/1803538#1803538">@Saar's code</a> should work but you might need to change your event handler to handle the ItemCommand event on the ListView, rather the the Click event of the button:</p> <pre><code>&lt;asp:ListView ID="ListView1" runat="server" DataSourceID="DataSource" OnItemCommand="ListView1_ItemCommand"&gt; &lt;LayoutTemplate&gt;//Etc &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;asp:Label ID="lblDone" runat="server" Visible="false"&gt;Your vote has been counted&lt;/asp:Label&gt; &lt;asp:Button ID="voteButton" runat="server" Text="Vote" CommandArgument='&lt;%#Eval("id") %&gt;' /&gt; &lt;/ItemTemplate&gt; ... &lt;/asp:ListView&gt; </code></pre> <p>Then your event handler will look something like this:</p> <pre><code>protected void ListView1_ItemCommand(object sender, ListViewCommandEventArgs e) { // @Saar's code } </code></pre> http://stackoverflow.com/questions/1769707/how-to-invoke-the-file-download-window-in-javascript/1770714#1770714 -1 Answer by Ian Oxley for how to invoke the file download window in javascript? Ian Oxley 2009-11-20T14:19:07Z 2009-11-20T14:19:07Z <p>I would simply configure IIS to server <strong>.pdf</strong> files as the MIME type <strong>application/octet-stream</strong></p> http://stackoverflow.com/questions/1673169/show-some-message-every-day-at-0800-am-with-asp-net-c/1673822#1673822 0 Answer by Ian Oxley for Show some message every day at 08:00 AM with ASP.NET C# Ian Oxley 2009-11-04T13:44:13Z 2009-11-04T13:44:13Z <p>Check out this post on the Stack Overflow Blog which shows you how to simulate a Windows service using ASP.NET: <a href="http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/" rel="nofollow">http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/</a></p> <p>If you do this you should be able to set your task to run every 24 hours, although you might have to work out how many seconds you need to cache the item for if you need to update your site at 8am.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1671016/whats-the-most-impressive-thing-youve-seen-done-with-javascript/1673762#1673762 0 Answer by Ian Oxley for Whats the most impressive thing you've seen done with JavaScript? Ian Oxley 2009-11-04T13:31:45Z 2009-11-04T13:31:45Z <p>The World of Solitaire is pretty impressive - I think it was written using the YUI framework: <a href="http://worldofsolitaire.com/" rel="nofollow">http://worldofsolitaire.com/</a></p> http://stackoverflow.com/questions/1643527/jquery-document-readyfunction/1643579#1643579 1 Answer by Ian Oxley for jQuery $(document).ready(function() Ian Oxley 2009-10-29T13:04:20Z 2009-10-29T13:04:20Z <p><code>$(document).ready(...)</code> is <strong>only</strong> called when the document loads: if you are loading content via Ajax then this event will only fire once the first time the page loads. So you would be best doing as <a href="http://stackoverflow.com/users/70393/karim79">karim79</a> suggests and using <a href="http://docs.jquery.com/Events/live" rel="nofollow">live</a> or your Ajax method's success callback.</p> http://stackoverflow.com/questions/1606522/jquery-dynamically-assigning-div-height/1606886#1606886 0 Answer by Ian Oxley for jquery : dynamically assigning div height Ian Oxley 2009-10-22T12:31:46Z 2009-10-22T12:31:46Z <p>It might be an idea to try setting the height of the &lt;div&gt; explicitly with jQuery when the page loads:</p> <pre><code>$(document).ready(function() { ... var $theDiv = $('#divRoundItem'); $theDiv.css('height', $theDiv.height() + 'px'); ... }); </code></pre> http://stackoverflow.com/questions/1543084/why-does-my-asp-net-mvc-application-work-from-a-virtual-directory-but-not-from-a/1543258#1543258 1 Answer by Ian Oxley for Why does my ASP.NET MVC application work from a virtual directory, but not from a website? Ian Oxley 2009-10-09T11:30:34Z 2009-10-09T11:30:34Z <p>I had to deploy an ASP.NET MVC site to a remote server that did not have ASP.NET MVC installed once and had to do the following to get it to work:</p> <ul> <li><a href="http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx" rel="nofollow">bin deploying</a> the ASP.NET MVC dll files</li> <li>Changing my routes to use {controller}.aspx (as the aspx file extension was already registered to process ASP.NET requests and I didn't have access to the actual server)</li> </ul> <p>Hope this helps in some was - although obviously your situation might be completely different and the above might be no help whatsoever :-)</p> http://stackoverflow.com/questions/1543189/httpmodule-open-a-pdf-file-will-raise-several-prerequesthandlerexecute-event/1543206#1543206 0 Answer by Ian Oxley for HttpModule: Open a pdf file will raise several PreRequestHandlerExecute event Ian Oxley 2009-10-09T11:17:48Z 2009-10-09T11:17:48Z <p>Depending on the information you are logging you might be able to save yourself some work just by parsing the server log files using something like <a href="http://www.microsoft.com/DownLoads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en" rel="nofollow">Log Parser</a>.</p> http://stackoverflow.com/questions/1532414/xhtml-css-list-items-distributed-in-columns/1532505#1532505 1 Answer by Ian Oxley for (x)html/css: list items distributed in columns Ian Oxley 2009-10-07T15:51:24Z 2009-10-07T15:51:24Z <p>I would echo what <a href="http://stackoverflow.com/users/182768/james-goodwin">James Goodwin</a> says, but include browser vendors experimental CSS support in your CSS:</p> <pre><code>ol { column-count:3; column-width:33%; -moz-column-count:3; -moz-column-width:33%; -webkit-column-count:3; -webkit-column-width:33%; /* etc., etc. */ } </code></pre> http://stackoverflow.com/questions/823951/automatically-sanitize-entries-on-httprequestvalidationexception/1393730#1393730 1 Answer by Ian Oxley for Automatically sanitize entries on HttpRequestValidationException Ian Oxley 2009-09-08T12:27:46Z 2009-09-08T12:27:46Z <p>I think you should be able to use the global exception handling that <a href="http://stackoverflow.com/users/43337/richard">Richard</a> mentions, but may need to add a call to <a href="http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.clearerror.aspx" rel="nofollow">ClearError</a> to get rid of the <strong>HttpRequestValidationException</strong> and continue with the request. Something like this might do the trick:</p> <pre><code>protected void Application_Error(object sender, EventArgs e) { Exception ex = Server.GetLastError().GetBaseException(); if (ex.Message.StartsWith("A potentially dangerous Request.Form value was detected")) { Server.ClearError(); } } </code></pre> <p>It might be worth checking the Request.Url and / or the Request.UrlReferer to make sure the request originates from your FCKEditor page as well.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/1369971/controls-relative-positioned-in-visual-studio-2008-gets-misplaced-in-browsers/1373220#1373220 0 Answer by Ian Oxley for Controls relative-positioned in Visual Studio 2008 gets misplaced in browsers Ian Oxley 2009-09-03T12:48:34Z 2009-09-03T12:48:34Z <p>Have you tried setting the <strong>width</strong> and <strong>height</strong> on the parent / containing element (presumably the map)?</p> <p>I've had some problems with absolute and relatively positioned elements in IE before and giving the containing parent element a width and / or height seemed to fix it.</p> http://stackoverflow.com/questions/975032/vs2008-attach-to-process-cant-see-which-process/1372072#1372072 0 Answer by Ian Oxley for vs2008 attach to process, can't see which process Ian Oxley 2009-09-03T08:15:28Z 2009-09-03T08:15:28Z <p>At the bottom of the <strong>Attach to Process</strong> dialog box you should see two checkboxes:</p> <ul> <li>Show processes from all users</li> <li>Show processes in all sessions</li> </ul> <p>If you check either / both of these you should hopefully be able to see the processes you are after.</p> http://stackoverflow.com/questions/1367679/subsonic-3-unit-tests-were-working-but-now-it-cannot-find-the-connection-string 1 SubSonic 3: Unit Tests were working but now it cannot find the connection string Ian Oxley 2009-09-02T13:26:08Z 2009-09-02T14:49:14Z <p>I had set up a bunch of NUnit unit tests using the <a href="http://subsonicproject.com/docs/Using%5FActiveRecord#Testing" rel="nofollow"><strong>Test</strong> connection string in my App.config file</a> and everything <em>was</em> working fine.</p> <p>Then all of a sudden all my tests stopped working and threw the same exception:</p> <blockquote> <p>System.ApplicationException : Connection string 'ApplicationServices' does not exist</p> </blockquote> <p>Yet here are the contents of my App.config file with the <em>missing</em> connection string clearly visible:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;connectionStrings&gt; &lt;add name="ApplicationServices" connectionString="Test" providerName="System.Data.SqlClient"/&gt; &lt;/connectionStrings&gt; &lt;/configuration&gt; </code></pre> <p>Has anyone else come across this and if so how did you get around it?</p> http://stackoverflow.com/questions/1340474/jquery-datetime-picker-and-asp-net-mvc/1340714#1340714 0 Answer by Ian Oxley for jQuery DateTime picker and ASP.NET MVC Ian Oxley 2009-08-27T12:21:03Z 2009-08-27T12:21:03Z <p>What happens if you try this instead:</p> <pre><code>[ValidateInput(false)] [AcceptVerbs(HttpVerbs.Post)] public ActionResult MatchesAdd(FormCollection values) { Match m = new Match(); try { UpdateModel&lt;Match&gt;(m); // If your date still has not been picked up you could // just uncomment this next line: // m.TimeAndDate = DateTime.Parse(values["TimeAndDate"]); DM.AddMatch(m); return RedirectToAction("Matches/List/Upcoming"); } catch(Exception ex) { return Content(m.TimeAndDate.ToString()); } } </code></pre> http://stackoverflow.com/questions/1244222/how-to-simulate-click-on-anchor-with-specific-text-using-javascript-in-greasemonk/1244466#1244466 2 Answer by Ian Oxley for How to simulate click on anchor with specific text using javascript in GreaseMonkey? Ian Oxley 2009-08-07T12:32:02Z 2009-08-07T12:32:02Z <p>As you're using Greasemonkey you should be able to use XPath to select the link in question using one of it's HTML attributes:</p> <p><a href="http://diveintogreasemonkey.org/patterns/match-attribute.html" rel="nofollow">http://diveintogreasemonkey.org/patterns/match-attribute.html</a></p> http://stackoverflow.com/questions/1240953/appending-jquery-html/1240993#1240993 1 Answer by Ian Oxley for Appending Jquery HTML? Ian Oxley 2009-08-06T19:51:44Z 2009-08-06T19:51:44Z <p>I think the reason it only works on the first one is because of your selector:</p> <pre><code>var $inside = $('#favoritesdrinks li').text(); </code></pre> <p>This will match all &lt;li&gt; tags, so when you have added more items to your list your comparison won't work. You might have more luck using the <a href="http://docs.jquery.com/Selectors/contains#text" rel="nofollow">contains selector</a>:</p> <pre><code>var match = $('#favoritesdrinks li:contains(' + $stuff + ')'); if (match) { alert('Already added'); } ... </code></pre> http://stackoverflow.com/questions/1238549/javascript-crossbrowser-new-image/1238716#1238716 0 Answer by Ian Oxley for javascript crossbrowser new Image() Ian Oxley 2009-08-06T13:01:44Z 2009-08-06T13:01:44Z <p>The only way I <em>couldn't</em> get it to work in IE was to use <strong>new Image()</strong> rather than <strong>document.createElement</strong>. That was fixable by moving image.src to after your onload function:</p> <pre><code>image.onload = function() {} image.src = url; </code></pre> http://stackoverflow.com/questions/1238544/how-handle-the-css3-spec-in-a-useful-way/1238654#1238654 3 Answer by Ian Oxley for How handle the CSS3 Spec. in a useful way? Ian Oxley 2009-08-06T12:46:00Z 2009-08-06T12:46:00Z <p>As long as your site degrades gracefully there's nothing wrong with using CSS3 now. Afterall, if a browser does not understand a particular CSS rule it will just ignore it:</p> <pre><code>#foo { border:1px solid #000; /* shown by all browsers */ border-radius:5px; /* shown if browser understands border-radius */ -moz-border-radius:5px; /* Firefox only */ -webkit-border-radius:5px; /* Safari and Google Chrome */ } </code></pre> <p>As long as the site does not look broken in browsers that don't support the CSS3 rules you want to use then you should be ok <a href="http://en.wikipedia.org/wiki/Progressive%5Fenhancement" rel="nofollow">progressively enhancing</a> your site in the browsers that do support them.</p> http://stackoverflow.com/questions/1232614/how-to-make-a-css-background-image-sprite-to-clickable-area/1232690#1232690 1 Answer by Ian Oxley for How to make a CSS background image (sprite) to clickable area? Ian Oxley 2009-08-05T11:33:54Z 2009-08-05T11:33:54Z <p>It's basically just a button inside link with a background image, but with it's width and height constrained to only show the portion of the background image / sprite with the YouTube logo.</p> <p>From their CSS:</p> <pre><code>#masthead #logo button { background-position:0 0; height:33px; width:84px; } </code></pre> <p>If you load it up in <a href="http://getfirebug.com/" rel="nofollow">Firebug</a> and change the height you will see more / less of the background image appear.</p> http://stackoverflow.com/questions/1188266/cross-domain-posting-in-asp-net-loses-form-fields/1188357#1188357 0 Answer by Ian Oxley for Cross-Domain Posting in ASP.Net loses Form Fields Ian Oxley 2009-07-27T14:09:24Z 2009-07-27T14:09:24Z <p>The easiest way would be to use a non-server-side &lt;form&gt; i.e. with <strong>no runat="server"</strong> attribute, and just set the <strong><em>action</em></strong> attribute to the URL you want to post to:</p> <pre><code>&lt;form method="post" action="http://localhost:xxxx/default.aspx"&gt; ... &lt;/form&gt; </code></pre> <p>Hope this helps.</p> http://stackoverflow.com/questions/1162696/jquery-fadein/1165072#1165072 1 Answer by Ian Oxley for jQuery fadeIn() Ian Oxley 2009-07-22T12:56:14Z 2009-07-22T12:56:14Z <p>I agree with @Damovisa in that we could do with knowing what the <strong>PostHtml</strong> method does - if it does an Ajax call then it might be completing after the <strong>fadeIn</strong> timeout has expired, hence the fading in effect not appearing to work.</p> http://stackoverflow.com/questions/1158725/reformatting-an-wysiwyg-generated-html-file/1159058#1159058 0 Answer by Ian Oxley for Reformatting an wysiwyg generated html file Ian Oxley 2009-07-21T13:05:57Z 2009-07-21T13:05:57Z <p>You might be able to use the <strong>!important</strong> hack to override the inline styles in your CSS.</p> <p>As for removing the inline formatting, you could try Googling <a href="http://www.google.co.uk/search?q=paste+from+word" rel="nofollow">paste from word</a> or come up with your own regular expression to discard everything in a tag after the tagname itself.</p> http://stackoverflow.com/questions/1103157/getting-url-routing-to-work-with-asp-net-mvc-on-iis-7 1 Getting URL Routing to work with ASP.NET MVC on IIS 7 Ian Oxley 2009-07-09T10:51:22Z 2009-07-09T11:56:48Z <p>I am trying to deploy a test ASP.NET MVC site to a site hosted on the Rackspace Cloud (essentially just the default site you get when you create a new ASP.NET MVC Web App in Visual Studio).</p> <p>ASP.NET MVC does not appear to be installed so I have deployed the System.Web.Mvc.dll to the bin folder.</p> <p>Now, when I access <strong>/Default.aspx</strong> I get the <em>Home</em> view. But if I enter <strong>/Home</strong> I get a 404 Page Not Found (I also get a 404 if I access the <strong>/Home/About</strong> URL).</p> <p>I have tried adding the <em>.aspx</em> extension to my routes as defined in Global.asax to see if that made any difference but still got the same 404 error.</p> <p>Am I right in thinking that I should be able to fix this via the Web.config file?</p> <p>Thanks</p> http://stackoverflow.com/questions/51339/how-can-you-handle-an-in-sub-query-with-linq-to-sql 10 How can you handle an IN sub-query with LINQ to SQL? Ian Oxley 2008-09-09T07:20:51Z 2009-07-06T17:21:15Z <p>I'm a bit stuck on this. Basically I want to do something like the following SQL query in LINQ to SQL:</p> <pre><code>SELECT f.* FROM Foo f WHERE f.FooId IN ( SELECT fb.FooId FROM FooBar fb WHERE fb.BarId = 1000 ) </code></pre> <p>Any help would be gratefully received.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1073692/what-are-the-actionresult-acceptverbsattribute-default-http-methods 1 What are the ActionResult AcceptVerbsAttribute default HTTP methods? Ian Oxley 2009-07-02T10:47:35Z 2009-07-02T11:08:42Z <p>I know you can restrict which HTTP methods a particular ActionResult method responds to by adding an AcceptVerbsAttribute, e.g.</p> <pre><code>[AcceptVerbs(HttpVerbs.Get)] public ActionResult Index() { ... } </code></pre> <p>But I was wondering: which HTTP methods an ActionResult method will accept <em>without</em> an explicit <strong>[AcceptVerbs(...)]</strong> attribute?</p> <p>I would presume it was <strong>GET</strong>, <strong>HEAD</strong> and <strong>POST</strong> but was just wanting to double-check.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1050134/adding-a-variable-to-a-asp-net-customvalidator/1058180#1058180 0 Answer by Ian Oxley for Adding a variable to a ASP.NET CustomValidator Ian Oxley 2009-06-29T13:09:07Z 2009-06-29T13:09:07Z <p>Where exactly does the variable come from? i.e. is it available in the DOM?</p> <p>If it is, could you get the value of the DOM node in your custom validator?</p> <p>If not, it might be best to disable client-side validation and just validate on the server.</p> http://stackoverflow.com/questions/1367679/subsonic-3-unit-tests-were-working-but-now-it-cannot-find-the-connection-string/1368162#1368162 Comment by Ian Oxley on SubSonic 3: Unit Tests were working but now it cannot find the connection string Ian Oxley 2009-09-02T14:59:02Z 2009-09-02T14:59:02Z @Skinniest Man I simply removed the xxx.nunit file and the tests ran again - thanks http://stackoverflow.com/questions/1238544/how-handle-the-css3-spec-in-a-useful-way/1238654#1238654 Comment by Ian Oxley on How handle the CSS3 Spec. in a useful way? Ian Oxley 2009-08-06T13:27:20Z 2009-08-06T13:27:20Z @ChrisBenyamin Like @Skilldrick says, &quot;You can't make it look the same in all browsers and use all the new features&quot;. And don't forget, most users don't view sites in multiple browsers, so as long as it doesn't look broken then you should be ok using as much CSS3 as you like. http://stackoverflow.com/questions/1216943/how-to-run-debug-multiple-web-application-projects-with-in-the-same-solution Comment by Ian Oxley on How to run/debug multiple web application projects with-in the same solution? Ian Oxley 2009-08-05T13:10:54Z 2009-08-05T13:10:54Z Are you using the Visual Studio WebServer rather than IIS? http://stackoverflow.com/questions/1174448/jquery-animate-problems Comment by Ian Oxley on jQuery animate problems Ian Oxley 2009-08-05T12:59:39Z 2009-08-05T12:59:39Z From <a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" rel="nofollow">docs.jquery.com/Effects/&hellip;</a>: &quot;Only properties that take numeric values are supported (e.g. backgroundColor is not supported).&quot; http://stackoverflow.com/questions/1232614/how-to-make-a-css-background-image-sprite-to-clickable-area/1232690#1232690 Comment by Ian Oxley on How to make a CSS background image (sprite) to clickable area? Ian Oxley 2009-08-05T12:53:02Z 2009-08-05T12:53:02Z Yes, the link by itself should be enough: you would just have to move the width and height from the button's CSS to the #logo's CSS. http://stackoverflow.com/questions/1188266/cross-domain-posting-in-asp-net-loses-form-fields/1188357#1188357 Comment by Ian Oxley on Cross-Domain Posting in ASP.Net loses Form Fields Ian Oxley 2009-08-04T12:36:04Z 2009-08-04T12:36:04Z Might be worth tracking the request at the HTTP level to see exactly what is being sent in the POST data - tools such as Firebug's Net panel or a proxy server such as the one that comes with Burp Suite (<a href="http://www.portswigger.net/suite/" rel="nofollow">portswigger.net/suite</a>) should help with this. http://stackoverflow.com/questions/340827/how-to-moq-an-indexed-property/861282#861282 Comment by Ian Oxley on How to MOQ an Indexed property Ian Oxley 2009-07-22T08:52:44Z 2009-07-22T08:52:44Z Nice one - this was just what I needed +1 http://stackoverflow.com/questions/1103157/getting-url-routing-to-work-with-asp-net-mvc-on-iis-7/1103387#1103387 Comment by Ian Oxley on Getting URL Routing to work with ASP.NET MVC on IIS 7 Ian Oxley 2009-07-09T12:29:00Z 2009-07-09T12:29:00Z Nice one - this worked a treat! Thanks. http://stackoverflow.com/questions/1103172/jquery-change-div-text/1103191#1103191 Comment by Ian Oxley on jquery change div text Ian Oxley 2009-07-09T11:21:33Z 2009-07-09T11:21:33Z +1 Better yet, put the title in a heading tag: $('#' + div_id + ' &gt; h2').text('foo')' http://stackoverflow.com/questions/1073212/java-script-validation Comment by Ian Oxley on Java script validation Ian Oxley 2009-07-02T12:00:02Z 2009-07-02T12:00:02Z You are validating on the server as well aren't you? JavaScript validation can easily be bypassed and you don't want to end up with people adding negative quantities to a shopping cart. http://stackoverflow.com/questions/1073692/what-are-the-actionresult-acceptverbsattribute-default-http-methods/1073762#1073762 Comment by Ian Oxley on What are the ActionResult AcceptVerbsAttribute default HTTP methods? Ian Oxley 2009-07-02T11:20:40Z 2009-07-02T11:20:40Z I didn't know you could restrict HTTP methods via the RouteTable - just what I was after. Thanks. http://stackoverflow.com/questions/1050134/adding-a-variable-to-a-asp-net-customvalidator/1058180#1058180 Comment by Ian Oxley on Adding a variable to a ASP.NET CustomValidator Ian Oxley 2009-06-30T14:24:52Z 2009-06-30T14:24:52Z Looks like it might be easiest to just bite the bullet and set EnableClientScript=&quot;false&quot; on your CustomValidator and validate solely on the server. http://stackoverflow.com/questions/1049327/how-can-i-confirm-and-then-disable-a-button-in-asp-net-javascript/1049345#1049345 Comment by Ian Oxley on How can I confirm and then disable a button in asp.net/javascript Ian Oxley 2009-06-26T15:15:53Z 2009-06-26T15:15:53Z You could reduce the JavaScript to one line: return confirm('Are you sure?'); http://stackoverflow.com/questions/1006652/what-does-mean-here-in-php/1006657#1006657 Comment by Ian Oxley on What does "&" mean here in PHP? Ian Oxley 2009-06-17T12:24:19Z 2009-06-17T12:24:19Z Am I right in thinking it no longer applies from PHP 5 onwards? http://stackoverflow.com/questions/1005884/strange-jquery-problem/1005962#1005962 Comment by Ian Oxley on Strange jQuery problem Ian Oxley 2009-06-17T12:02:23Z 2009-06-17T12:02:23Z @Danny - you can still use jQuery for handling the clicks, etc. but as Wesley says, it might be easier to just use CSS for the row highlighting