User Ian Oxley - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:42:30Zhttp://stackoverflow.com/feeds/user/1904http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819016/viewing-session-data-on-master-page-in-asp-net/1819527#18195270Answer by Ian Oxley for viewing session data on master page in asp.netIan Oxley2009-11-30T12:26:57Z2009-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#18194570Answer by Ian Oxley for CSS Issue - Trying to get HTML elements to stay on one line.Ian Oxley2009-11-30T12:13:53Z2009-11-30T12:13:53Z<p>An <code><img /></code> and <code><input type="text" /></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><div id="LoadingGif" style="float:left;"></div></code> with either a tag or an tag: then you'll have 3 inline elements meaning you can remove the surplus <code><div style="clear:both;"></div></code> from your HTML :-)</p>
http://stackoverflow.com/questions/1819377/use-of-parameters-for-mysqlquery/1819406#18194061Answer by Ian Oxley for Use of parameters for mysql_queryIan Oxley2009-11-30T12:04:00Z2009-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#18092850Answer by Ian Oxley for ASP.Net: Dynamic JavaScript path / srcIan Oxley2009-11-27T15:09:41Z2009-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><script type="text/javascript" src="<%= ResolveClientUrl("~/Helper/jquery-1.3.2.min.js") %>"></script>
</code></pre>
http://stackoverflow.com/questions/1803525/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp/1803896#18038961Answer by Ian Oxley for How can i access a control within a ListView once a button has been clicked (ASP.NET c#)?Ian Oxley2009-11-26T14:14:26Z2009-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><asp:ListView ID="ListView1" runat="server" DataSourceID="DataSource"
OnItemCommand="ListView1_ItemCommand">
<LayoutTemplate>//Etc </LayoutTemplate>
<ItemTemplate>
<asp:Label ID="lblDone" runat="server" Visible="false">Your vote has been counted</asp:Label>
<asp:Button ID="voteButton" runat="server" Text="Vote" CommandArgument='<%#Eval("id") %>' />
</ItemTemplate>
...
</asp:ListView>
</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-1Answer by Ian Oxley for how to invoke the file download window in javascript?Ian Oxley2009-11-20T14:19:07Z2009-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#16738220Answer by Ian Oxley for Show some message every day at 08:00 AM with ASP.NET C#Ian Oxley2009-11-04T13:44:13Z2009-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#16737620Answer by Ian Oxley for Whats the most impressive thing you've seen done with JavaScript?Ian Oxley2009-11-04T13:31:45Z2009-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#16435791Answer by Ian Oxley for jQuery $(document).ready(function() Ian Oxley2009-10-29T13:04:20Z2009-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#16068860Answer by Ian Oxley for jquery : dynamically assigning div heightIan Oxley2009-10-22T12:31:46Z2009-10-22T12:31:46Z<p>It might be an idea to try setting the height of the <div> 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#15432581Answer by Ian Oxley for Why does my ASP.NET MVC application work from a virtual directory, but not from a website?Ian Oxley2009-10-09T11:30:34Z2009-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#15432060Answer by Ian Oxley for HttpModule: Open a pdf file will raise several PreRequestHandlerExecute eventIan Oxley2009-10-09T11:17:48Z2009-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&displaylang=en" rel="nofollow">Log Parser</a>.</p>
http://stackoverflow.com/questions/1532414/xhtml-css-list-items-distributed-in-columns/1532505#15325051Answer by Ian Oxley for (x)html/css: list items distributed in columnsIan Oxley2009-10-07T15:51:24Z2009-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#13937301Answer by Ian Oxley for Automatically sanitize entries on HttpRequestValidationException Ian Oxley2009-09-08T12:27:46Z2009-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#13732200Answer by Ian Oxley for Controls relative-positioned in Visual Studio 2008 gets misplaced in browsersIan Oxley2009-09-03T12:48:34Z2009-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#13720720Answer by Ian Oxley for vs2008 attach to process, can't see which processIan Oxley2009-09-03T08:15:28Z2009-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-string1SubSonic 3: Unit Tests were working but now it cannot find the connection stringIan Oxley2009-09-02T13:26:08Z2009-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><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="ApplicationServices"
connectionString="Test"
providerName="System.Data.SqlClient"/>
</connectionStrings>
</configuration>
</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#13407140Answer by Ian Oxley for jQuery DateTime picker and ASP.NET MVCIan Oxley2009-08-27T12:21:03Z2009-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<Match>(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#12444662Answer by Ian Oxley for How to simulate click on anchor with specific text using javascript in GreaseMonkey?Ian Oxley2009-08-07T12:32:02Z2009-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#12409931Answer by Ian Oxley for Appending Jquery HTML?Ian Oxley2009-08-06T19:51:44Z2009-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 <li> 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#12387160Answer by Ian Oxley for javascript crossbrowser new Image()Ian Oxley2009-08-06T13:01:44Z2009-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#12386543Answer by Ian Oxley for How handle the CSS3 Spec. in a useful way?Ian Oxley2009-08-06T12:46:00Z2009-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#12326901Answer by Ian Oxley for How to make a CSS background image (sprite) to clickable area?Ian Oxley2009-08-05T11:33:54Z2009-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#11883570Answer by Ian Oxley for Cross-Domain Posting in ASP.Net loses Form FieldsIan Oxley2009-07-27T14:09:24Z2009-07-27T14:09:24Z<p>The easiest way would be to use a non-server-side <form> 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><form method="post" action="http://localhost:xxxx/default.aspx">
...
</form>
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1162696/jquery-fadein/1165072#11650721Answer by Ian Oxley for jQuery fadeIn()Ian Oxley2009-07-22T12:56:14Z2009-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#11590580Answer by Ian Oxley for Reformatting an wysiwyg generated html fileIan Oxley2009-07-21T13:05:57Z2009-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-71Getting URL Routing to work with ASP.NET MVC on IIS 7Ian Oxley2009-07-09T10:51:22Z2009-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-sql10How can you handle an IN sub-query with LINQ to SQL?Ian Oxley2008-09-09T07:20:51Z2009-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-methods1What are the ActionResult AcceptVerbsAttribute default HTTP methods?Ian Oxley2009-07-02T10:47:35Z2009-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#10581800Answer by Ian Oxley for Adding a variable to a ASP.NET CustomValidatorIan Oxley2009-06-29T13:09:07Z2009-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#1368162Comment by Ian Oxley on SubSonic 3: Unit Tests were working but now it cannot find the connection stringIan Oxley2009-09-02T14:59:02Z2009-09-02T14:59:02Z@Skinniest Man I simply removed the xxx.nunit file and the tests ran again - thankshttp://stackoverflow.com/questions/1238544/how-handle-the-css3-spec-in-a-useful-way/1238654#1238654Comment by Ian Oxley on How handle the CSS3 Spec. in a useful way?Ian Oxley2009-08-06T13:27:20Z2009-08-06T13:27:20Z@ChrisBenyamin Like @Skilldrick says, "You can't make it look the same in all browsers and use all the new features". 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-solutionComment by Ian Oxley on How to run/debug multiple web application projects with-in the same solution?Ian Oxley2009-08-05T13:10:54Z2009-08-05T13:10:54ZAre you using the Visual Studio WebServer rather than IIS?http://stackoverflow.com/questions/1174448/jquery-animate-problemsComment by Ian Oxley on jQuery animate problemsIan Oxley2009-08-05T12:59:39Z2009-08-05T12:59:39ZFrom <a href="http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback" rel="nofollow">docs.jquery.com/Effects/…</a>: "Only properties that take numeric values are supported (e.g. backgroundColor is not supported)."http://stackoverflow.com/questions/1232614/how-to-make-a-css-background-image-sprite-to-clickable-area/1232690#1232690Comment by Ian Oxley on How to make a CSS background image (sprite) to clickable area?Ian Oxley2009-08-05T12:53:02Z2009-08-05T12:53:02ZYes, 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#1188357Comment by Ian Oxley on Cross-Domain Posting in ASP.Net loses Form FieldsIan Oxley2009-08-04T12:36:04Z2009-08-04T12:36:04ZMight 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#861282Comment by Ian Oxley on How to MOQ an Indexed propertyIan Oxley2009-07-22T08:52:44Z2009-07-22T08:52:44ZNice one - this was just what I needed +1http://stackoverflow.com/questions/1103157/getting-url-routing-to-work-with-asp-net-mvc-on-iis-7/1103387#1103387Comment by Ian Oxley on Getting URL Routing to work with ASP.NET MVC on IIS 7Ian Oxley2009-07-09T12:29:00Z2009-07-09T12:29:00ZNice one - this worked a treat! Thanks.http://stackoverflow.com/questions/1103172/jquery-change-div-text/1103191#1103191Comment by Ian Oxley on jquery change div textIan Oxley2009-07-09T11:21:33Z2009-07-09T11:21:33Z+1 Better yet, put the title in a heading tag: $('#' + div_id + ' > h2').text('foo')'http://stackoverflow.com/questions/1073212/java-script-validationComment by Ian Oxley on Java script validationIan Oxley2009-07-02T12:00:02Z2009-07-02T12:00:02ZYou 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#1073762Comment by Ian Oxley on What are the ActionResult AcceptVerbsAttribute default HTTP methods?Ian Oxley2009-07-02T11:20:40Z2009-07-02T11:20:40ZI 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#1058180Comment by Ian Oxley on Adding a variable to a ASP.NET CustomValidatorIan Oxley2009-06-30T14:24:52Z2009-06-30T14:24:52ZLooks like it might be easiest to just bite the bullet and set EnableClientScript="false" 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#1049345Comment by Ian Oxley on How can I confirm and then disable a button in asp.net/javascriptIan Oxley2009-06-26T15:15:53Z2009-06-26T15:15:53ZYou could reduce the JavaScript to one line: return confirm('Are you sure?');http://stackoverflow.com/questions/1006652/what-does-mean-here-in-php/1006657#1006657Comment by Ian Oxley on What does "&" mean here in PHP? Ian Oxley2009-06-17T12:24:19Z2009-06-17T12:24:19ZAm I right in thinking it no longer applies from PHP 5 onwards?http://stackoverflow.com/questions/1005884/strange-jquery-problem/1005962#1005962Comment by Ian Oxley on Strange jQuery problemIan Oxley2009-06-17T12:02:23Z2009-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