User Dave R - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:09:41Z http://stackoverflow.com/feeds/user/6969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1742944/jquery-simplemodal-and-tabs-help-needed 0 JQuery Simplemodal and Tabs Help Needed Dave R 2009-11-16T15:36:26Z 2009-11-17T08:56:42Z <p>Hi, I've got an asp.net page containing a Textbox with an Autocomplete extender on it. It's setup so the user can type a short reference code into the textbox and then choose from the list of matching codes returned by the autocomplete.</p> <p>On the "select", I then call the server using JQuery. I'm currently using $.get here.... The callback function from $.get checks for "success" and then displays a simple-modal dialog containing info about the item they've just selected.</p> <pre><code>if (sStatus == "success") { $.modal(sText, { overlayClose: true, appendTo:'form', onShow: function(dialog) { $("#ccTargets_tabContainer").tabs(); }, onClose: function(dialog) { $("#&lt;%=TextBox1.ClientID%&gt;").val(""); $.modal.close(); } }); $.ready(); } </code></pre> <p>One of the bits of info being loaded here is a JQuery TABS setup, so the onShow function of the simplemodal is used to initiate the tabs which are within the simplemodal.</p> <p>Now to the crux of my problem. If I do multiple consecutive "autocompletes" on the same page it all works fine <strong><em>Unless I have selected a different tab on the tabs in the simplemodal</em></strong> ....If I select a different tab, close the simplemodal and then do another autocomplete I get a JQuery error which seems to relate to a selector doing something with the "old" selected tab that was on the "closed" modal.</p> <p>I'm clearly missing some sort of cleardown / initialisation somewhere, but can't find what it is. Help?</p> <p>I've tried "tabs.destroy" before the modal call in the code above and I've tried a $.ready() call as indicated too....</p> <p>UPDATE: Is it something to do with JQuery Tabs appending my addressbar URL with the selected tab's ID?</p> http://stackoverflow.com/questions/1742944/jquery-simplemodal-and-tabs-help-needed/1747453#1747453 0 Answer by Dave R for JQuery Simplemodal and Tabs Help Needed Dave R 2009-11-17T08:56:42Z 2009-11-17T08:56:42Z <p>I've found the problem. It's with the "history" script that the tabs plugin normally uses. Obviously as I am continually creating and destroying popups there is no history to speak of - it's all done outside of the normal app navigation.</p> <p>I've removed the jquery.history_remote script and now it works just great!</p> <p>Dave</p> http://stackoverflow.com/questions/212378/how-do-i-set-up-gzip-compression-on-a-web-server/212402#212402 0 Answer by Dave R for How do I set up gzip compression on a web server? Dave R 2008-10-17T14:33:29Z 2008-10-17T14:33:29Z <p>Using gzip compression on a webserver usually means compressing the output from it to conserve your bandwidth - not quite what you have in mind.</p> <p><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/25d2170b-09c0-45fd-8da4-898cf9a7d568.mspx?mfr=true" rel="nofollow">Look at this description</a> or <a href="http://www.keylimetie.com/Blog/2008/5/20/How-to-enable-HTTP-Compression-on-Windows-Server-2003/" rel="nofollow">This example</a></p> http://stackoverflow.com/questions/149339/sql-server-2000-and-system-transactions-transactionscope 3 SQL Server 2000 and System.Transactions.TransactionScope() Dave R 2008-09-29T15:55:04Z 2008-10-14T05:56:10Z <p>Is it possible to create LIGHTWEIGHT transactions using TransactionScope() with SQL2000? Or if not, is there a workaround using CommitableTransaction and/or something similar?</p> <p>So the answer is, basically, "If you want local-to-1-server-transactions on SQL2000, don't use TransactionScope()". </p> http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit 3 Can I create a Database Deadlock test in Nunit? Dave R 2008-10-07T15:02:40Z 2008-10-14T05:55:26Z <p>In this asp.net I'm cleaning up it's possible for deadlocks to occur. I want to make sure that the code deals with them properly, so I'm trying to write NUnit tests which trigger a deadlock.....</p> <p>The DAO is split by entity. Each entity has a set of tests which are surrounded by Startup() and Teardown() methods which create a transactionscope and then roll it back after the tests are complete. This works great for everything else, but is completely useless for deadlocks.</p> <p>How can I setup and run a "deadlock" test using TransactionScope and SQL2000 (ie MSDTC is involved) that can be reliably reproduced? More detail: I know there is a situation whereby if two users call two functions with different, specific, data values then a deadlock <em>can</em> result. How can I simulate this within NUNIT - and make the deadlock <em>always</em> happen?</p> <p>And yes, I did start with the "Why don't you stop the deadlocks happening in the first place" plan of action, but I have no control over the code where the deadlocks can occur - I just call the functions and they can deadlock.</p> http://stackoverflow.com/questions/178762/how-do-i-debug-a-memory-dump-of-a-spiking-asp-net-process/178980#178980 2 Answer by Dave R for How do I debug a memory dump of a spiking ASP.NET process? Dave R 2008-10-07T15:18:20Z 2008-10-07T15:18:20Z <p>In my experience, spiking app pool can be due to it being recycled. Have you tried IIS Crash / Hang agent and IIS Dump ?</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=01c4f89d-cc68-42ba-98d2-0c580437efcf&amp;DisplayLang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=01c4f89d-cc68-42ba-98d2-0c580437efcf&amp;DisplayLang=en</a></p> <p>Also included with them is a dumpfile analyzer which will tell you about memory leaks and even suggest areas of your code that need fixing (complete with links to the applicable MSKB articles!)</p> http://stackoverflow.com/questions/130186/ie-textrange-select-method-not-working-properly/149310#149310 0 Answer by Dave R for IE TextRange select method not working properly Dave R 2008-09-29T15:49:20Z 2008-09-29T15:49:20Z <p>I recently worked at a site which used Microsoft CMS with the "MSIB+ pack" of controls which included a WYSIWYG editor which ran in Internet Explorer.</p> <p>I seem to remember some comments in the editor client-side Javascript which were specifically related to this bug in IE and the Range.Select() method.</p> <p>Unfortunately, I'm not working there anymore so I can't access the Javascript files, but perhaps you may be able to get them from elsewhere?</p> <p>Good luck</p> http://stackoverflow.com/questions/164979/uk-postcode-regex-comprehensive/164994#164994 Comment by Dave R on UK Postcode Regex (Comprehensive) Dave R 2009-10-12T08:28:56Z 2009-10-12T08:28:56Z Comment Parser hell. <a href="http://www.cabinetoffice.gov.uk/media/291370/bs7666-v2-0-xsd-PostCodeType.htm" rel="nofollow">cabinetoffice.gov.uk/media/291370/&hellip;</a> http://stackoverflow.com/questions/164979/uk-postcode-regex-comprehensive/164994#164994 Comment by Dave R on UK Postcode Regex (Comprehensive) Dave R 2009-10-12T08:27:54Z 2009-10-12T08:27:54Z NB. The link is now... [url]<a href="http://www.cabinetoffice.gov.uk/media/291370/bs7666-v2-0-xsd-PostCodeType.htm[/url]" rel="nofollow">cabinetoffice.gov.uk/media/291370/&hellip;</a> http://stackoverflow.com/questions/349718/ado-net-entity-framework-decision-making-between-orm-solutions/349755#349755 Comment by Dave R on ADO.NET Entity Framework: Decision Making between ORM solutions Dave R 2008-12-12T14:28:00Z 2008-12-12T14:28:00Z ....Entity Framework is also the only one to properly support a 3-tier design with Webservices between the Data and the front-end http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit/190003#190003 Comment by Dave R on Can I create a Database Deadlock test in Nunit? Dave R 2008-10-10T10:38:59Z 2008-10-10T10:38:59Z I'm not sure how using a custom deadlocker class and a test which calls the deadlocker class can help me test for deadlocks in a specific call to my existing asp.net app? Interesting article though. http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit/185549#185549 Comment by Dave R on Can I create a Database Deadlock test in Nunit? Dave R 2008-10-10T10:31:41Z 2008-10-10T10:31:41Z I know we can get deadlocks because the unhandled erorrs log of the current version of the live app has them :) I understand UnitTests shouldn't normally test a DB, but I have setup a UnitTestDB specifically for testing which doesn't change state. http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit/185025#185025 Comment by Dave R on Can I create a Database Deadlock test in Nunit? Dave R 2008-10-10T10:29:17Z 2008-10-10T10:29:17Z I like this idea. I have an idea of Mock frameworks, but haven't ever used one. I am assuming that an &quot;ExpectAndThrow&quot; method would actually cause the exception to be thrown, so my code could catch it. I'll look into this further. http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit/179278#179278 Comment by Dave R on Can I create a Database Deadlock test in Nunit? Dave R 2008-10-08T07:43:36Z 2008-10-08T07:43:36Z I think a pre-requisite for creating a deadlock is going to be two separate processes both issuing transactions. Creating &quot;artificial&quot; locks within one process doesn't force a deadlock - it forces a &quot;wait&quot; for the resource to become free. I was hoping for a way to simulate this in NUNIT. http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit/179051#179051 Comment by Dave R on Can I create a Database Deadlock test in Nunit? Dave R 2008-10-08T07:39:34Z 2008-10-08T07:39:34Z &quot;Manually&quot; creating a transaction using MSDTC isn't simple. I can begin a transaction in Query Analyzer, sure, but that isn't a Distributed transaction and all that happens is that it locks-out the MSDTC transaction from doing any database work until I &quot;Rollback&quot; in Query Analyzer. http://stackoverflow.com/questions/178876/can-i-create-a-database-deadlock-test-in-nunit/178986#178986 Comment by Dave R on Can I create a Database Deadlock test in Nunit? Dave R 2008-10-08T07:38:57Z 2008-10-08T07:38:57Z Creating two transactions in the same thread can't produce a deadlock using TransactionScope. If I create one txn, then create another without committing the first, the second one just becomes nested inside the first.....