User Justin Wignall - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:09:14Zhttp://stackoverflow.com/feeds/user/42774http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/201671/how-do-you-sort-a-tree-stored-using-the-nested-set-model/457424#4574240Answer by Justin Wignall for How do you sort a tree stored using the nested set model?Justin Wignall2009-01-19T12:21:33Z2009-11-20T16:13:27Z<p>I have just finished writing the following which works for me in sorting an entire nested set tree. </p>
<p>The sort (ideally) requires a view that lists the current level of each node in the tree and a procedure for swapping two nodes - both are included below, the sibling swap code comes from Joe Celkos ' Tree & Hierarchies' book which I strongly recommend to anyone using nested sets.</p>
<p>The sort can be altered in the 'INSERT INTO @t' statement, here it is a simple alphanumeric sort on 'Name'</p>
<p>This may be a poor way of doing it especially using the cursor for set based code but as I say it works for me, hope it helps.</p>
<p><strong>UPDATE:</strong></p>
<p>Code below now shows version without using cusor. I see about 10x speed improvements</p>
<pre><code>CREATE VIEW dbo.tree_view
AS
SELECT t2.NodeID,t2.lft,t2.rgt ,t2.Name, COUNT(t1.NodeID) AS level
FROM dbo.tree t1,dbo.tree t2
WHERE t2.lft BETWEEN t1.lft AND t1.rgt
GROUP BY t2.NodeID,t2.lft,t2.rgt,t2.Name
GO
----------------------------------------------
DECLARE @MinRequired int
DECLARE @MinActual int
DECLARE @LeftNode int
DECLARE @RightNode int
DECLARE @i0 int
DECLARE @i1 int
DECLARE @i2 int
DECLARE @i3 int
DECLARE @t TABLE (TopLft int,NodeID int NOT NULL,lft int NOT NULL,rgt int NOT NULL,Name varchar(50),RequiredOrder int NOT NULL,ActualOrder int NOT NULL)
INSERT INTO @t (toplft,NodeID,lft,rgt,Name,RequiredOrder,ActualOrder)
SELECT t2.lft,t1.NodeID,t1.lft,t1.rgt,t1.Name,ROW_NUMBER() OVER(PARTITION BY t2.lft ORDER BY t1.name ASC),ROW_NUMBER() OVER(PARTITION BY t2.lft ORDER BY t1.lft ASC)
FROM dbo.tree_view t1
LEFT OUTER JOIN dbo.tree_view t2 ON t1.lft > t2.lft and t1.lft < t2.rgt and t1.level = t2.level+1
AND t2.rgt > t2.lft+1
DELETE FROM @t where ActualOrder = RequiredOrder
WHILE EXISTS(SELECT * FROM @t WHERE ActualOrder <> RequiredOrder)
BEGIN
SELECT @MinRequired = min(RequiredOrder) FROM @t WHERE actualorder <> requiredorder
SELECT @MinActual = ActualOrder,@RightNode = NodeID FROM @t WHERE requiredorder = @MinRequired
SELECT @LeftNode = NodeID FROM @t WHERE actualorder = @MinRequired
SELECT @i0 = lft,@i1 = rgt FROM dbo.meter_tree WHERE NodeID = @Leftnode
SELECT @i2 = lft,@i3 = rgt FROM dbo.meter_tree WHERE NodeID = @Rightnode
UPDATE dbo.tree
SET lft = CASE WHEN lft BETWEEN @i0 AND @i1 THEN @i3 + lft - @i1
WHEN lft BETWEEN @i2 AND @i3 THEN @i0 + lft - @i2
ELSE @i0 + @i3 + lft - @i1 - @i2
END,
rgt = CASE WHEN rgt BETWEEN @i0 AND @i1 THEN @i3 + rgt - @i1
WHEN rgt BETWEEN @i2 AND @i3 THEN @i0 + rgt - @i2
ELSE @i0 + @i3 + rgt - @i1 - @i2
END
AND lft BETWEEN @i0 AND @i3
AND @i0 < @i1
AND @i1 < @i2
AND @i2 < @i3
UPDATE @t SET actualorder = @MinActual ,lft = (SELECT lft FROM dbo.tree WHERE NodeID = @LeftNode),rgt = (SELECT rgt FROM dbo.meter_tree WHERE NodeID = @LeftNode) WHERE NodeID = @LeftNode
UPDATE @t SET actualorder = @MinRequired, lft = (SELECT lft FROM dbo.tree WHERE NodeID = @RightNode),rgt = (SELECT rgt FROM dbo.meter_tree WHERE NodeID = @RightNode) WHERE NodeID = @RightNode
END
</code></pre>
http://stackoverflow.com/questions/1673113/resize-png-in-a-asp-net-app/1673175#16731750Answer by Justin Wignall for Resize PNG in a ASP.Net AppJustin Wignall2009-11-04T11:21:58Z2009-11-04T11:21:58Z<p>The absolute best way to not lose quality (if you are generating the original images) is to generate the image from scratch again but with the smaller dimensions. </p>
<p>Otherwise built in image scaling in .NET is more than capable for PNG images. - See link in Marek's comment above.</p>
http://stackoverflow.com/questions/1645274/generate-a-row-per-minute-of-the-day-from-a-sparsely-populated-database-table/1645312#16453123Answer by Justin Wignall for Generate a row per minute of the day from a sparsely populated database tableJustin Wignall2009-10-29T17:26:32Z2009-10-29T18:09:28Z<p>Make sure the date column has an index on it and performance should be reasonable.</p>
<pre><code>SELECT t.Date,
COUNT(*) AS Quantity,
(SELECT COUNT(*) FROM Table WHERE Date < t.Date) AS RunningTotal
FROM Table t
GROUP BY t.Date
</code></pre>
<p>Getting a table populated with one row per minute can be done extremely quickly as follows:</p>
<pre><code>DECLARE @StartDate smalldatetime
DECLARE @EndDate smalldatetime
SET @StartDate = '1 jan 2009' --MIN(TimeStamp) FROM Table
SET @EndDate = '2 jan 2009' --MAX(TimeStamp) FROM Table
SET @StartDate = DATEADD(minute,-DATEPART(minute,@StartDate),@StartDate)
SET @EndDate = DATEADD(minute,-DATEPART(minute,@EndDate),@EndDate)
; WITH DateIntervalsCTE AS
(
SELECT 0 i, @startdate AS Date
UNION ALL
SELECT i + 1, DATEADD(minute, i, @startdate )
FROM DateIntervalsCTE
WHERE DATEADD(minute, i, @startdate ) <= @enddate
)
SELECT DISTINCT Date FROM DateIntervalsCTE
OPTION (MAXRECURSION 32767);
</code></pre>
<p>Provided you only need < ~22 days worth of data due to recursion restrictions.</p>
<p>All you need now is to merge the two, using a temp table to hold data seems to be quickest</p>
<pre><code>DECLARE @StartDate smalldatetime
DECLARE @EndDate smalldatetime
DECLARE @t TABLE (Date smalldatetime,Quantity int,RunningTotal int)
SET @StartDate = '1 jan 2009' --MIN(TimeStamp) FROM Table
SET @EndDate = '2 jan 2009' --MAX(TimeStamp) FROM Table
SET @StartDate = DATEADD(minute,-DATEPART(minute,@StartDate),@StartDate)
SET @EndDate = DATEADD(minute,-DATEPART(minute,@EndDate),@EndDate)
; WITH DateIntervalsCTE AS
(
SELECT 0 i, @startdate AS Date
UNION ALL
SELECT i + 1, DATEADD(minute, i, @startdate )
FROM DateIntervalsCTE
WHERE DATEADD(minute, i, @startdate ) <= @enddate
)
INSERT INTO @t (Date)
SELECT DISTINCT Date FROM DateIntervalsCTE
OPTION (MAXRECURSION 32767);
UPDATE t SET Quantity = (SELECT COUNT(d.TimeStamp) FROM Table d WHERE Date = t.date)
from @t t
update t2 set runningtotal = (SELECT SUM(Quantity) FROM @t WHERE date <= t2.date)
from @t t2
select * from @t
</code></pre>
http://stackoverflow.com/questions/1630999/redirecting-in-javascript-by-making-use-of-the-credentials/1631108#16311080Answer by Justin Wignall for redirecting in javascript by making use of the credentialsJustin Wignall2009-10-27T14:14:07Z2009-10-27T14:14:07Z<p>A simple way that won't require javascript would be to have an html form with the same 'action' url as the login's action url page of the second system. Once logged in to the first system and completed whatever tasks are required, have a submit button that will take them to the next page on the second system.</p>
<p>Obviously looking at implementing a single sign-on or shared login for both 'systems' would be a better approach, especially if the username and password are the same indicating the user store for both systems is in fact the same one.</p>
http://stackoverflow.com/questions/1612848/c-regular-expression-help/1612922#16129221Answer by Justin Wignall for C# Regular Expression HelpJustin Wignall2009-10-23T11:47:17Z2009-10-23T11:47:17Z<p>The following will give you matches on the group UserName</p>
<pre><code>#*(?<UserName>\d+;#[^;]+)
</code></pre>
<p>It would be simply is you prepended the string with a hash and appended a semi-colon...</p>
http://stackoverflow.com/questions/1500290/how-to-script-automatically-the-securables-assigned-to-a-sql-account/1594393#15943930Answer by Justin Wignall for How to Script Automatically, the securables assigned to a SQL accountJustin Wignall2009-10-20T12:52:32Z2009-10-20T12:52:32Z<p>As with anything SQL server when using SQL Server Management Studio if you aren't sure how to do a specific thing (i.e. looked in Books online but can't quite figure it out), using the 'Script Action to New Query Window' from the Script drop-down in the dialogs is very useful.</p>
<p>By using the GUI tools then inspecting the resulting script you can quickly see how to do more complex things that you just can't keep in memory until you've done them loads of times.</p>
http://stackoverflow.com/questions/1593757/a-simple-regex-question/1593767#15937672Answer by Justin Wignall for a simple Regex questionJustin Wignall2009-10-20T10:44:06Z2009-10-20T11:09:12Z<p>Using groups with the following regex (for example, you could probably clean this up)</p>
<pre><code>Port status: (?<ID>[\d\w\-]+)\s(?<ID2>[\s\S]+)
</code></pre>
<p>Will give you two named groups, ID1 and ID2 you can then populate.</p>
<p>I found using named groups easier when first learning regex so you can really see what's going on.</p>
<p>Take a look at <a href="http://www.nregex.com/nregex/default.aspx" rel="nofollow">nregex</a> to help practice and test regexs too.</p>
<pre><code> regex r = new regex("Port status: (?<ID>[\d\w\-]+)\s(?<ID2>[\s\S]+)");
matchcollection mc = r.matches(MyText);
foreach (match m in mc) {
string ID1 = m.groups("ID1");
string ID2 = m.groups("ID2");
}
</code></pre>
<p>Where MyText is either each line looping through the file with ReadLine or the whole file if not too big.</p>
<p>You can then use ID1 and ID2 (renamed to something meaningful) to populate textbox or whatever.</p>
http://stackoverflow.com/questions/1571068/addhour-addminute-store-within-a-listitem/1571119#15711191Answer by Justin Wignall for AddHour / AddMinute store within a ListItemJustin Wignall2009-10-15T08:52:04Z2009-10-15T08:52:04Z<p>Sorry, just a hint rather than an answer but it will probably be easier to use TimeSpan to loop through the available times.</p>
<p>Use TimeSpan.FromHours and TimeSpan.FromMinutes to get a TimeSpan and then increment 30 to it adding to the list similar to how you're doing is with TimeSpan.Hours and TimeSpan.Minutes.</p>
http://stackoverflow.com/questions/1508566/conversion-from-string-yyyymmdd-to-type-integer-is-not-valid/1508591#15085912Answer by Justin Wignall for conversion from string yyyyMMdd to type integer is not validJustin Wignall2009-10-02T09:33:44Z2009-10-02T09:33:44Z<p>Try</p>
<pre><code>For Each dr As DataRow In ds.Tables("records").Rows
file = CDate(dr("timestamp")).ToString("yyyyMMdd") & "~.wav"
Next
</code></pre>
http://stackoverflow.com/questions/1508348/set-focus-to-iframe-body-content-in-firefox/1508438#15084380Answer by Justin Wignall for set focus to iframe body/content in firefox ?Justin Wignall2009-10-02T09:00:01Z2009-10-02T09:00:01Z<p>Does</p>
<pre><code>iframe_window.contentDocument.body.focus();
</code></pre>
<p>work?</p>
http://stackoverflow.com/questions/1335123/bookmarklet-to-force-ie6-to-start-autorefreshing-a-page/1335149#13351490Answer by Justin Wignall for Bookmarklet to force IE6 to start autorefreshing a page?Justin Wignall2009-08-26T14:34:47Z2009-08-26T14:34:47Z<p>You could try having the bookmarklet open a new window and writing the content of that window to reload the parent via something like</p>
<p>window.opener.document.location.reload();</p>
http://stackoverflow.com/questions/1335020/word-wrap-in-firefox-2-0/1335050#13350500Answer by Justin Wignall for Word wrap in Firefox 2.0Justin Wignall2009-08-26T14:19:01Z2009-08-26T14:19:01Z<p>Take a look at an old post of mine at</p>
<p><a href="http://archivist.incutio.com/viewlist/css-discuss/55677" rel="nofollow">http://archivist.incutio.com/viewlist/css-discuss/55677</a></p>
<p>and see if this helps at all.</p>
http://stackoverflow.com/questions/1334968/asp-net-compilation-and-code-visibility/1335035#13350351Answer by Justin Wignall for ASP.NET Compilation And Code VisibilityJustin Wignall2009-08-26T14:17:15Z2009-08-26T14:17:15Z<p>Yes, it is a compilation issue, read a bit more about this same question at</p>
<p><a href="http://www.velocityreviews.com/forums/t119801-accessing-web-user-control-from-class-in-appcode-folder.html" rel="nofollow">http://www.velocityreviews.com/forums/t119801-accessing-web-user-control-from-class-in-appcode-folder.html</a></p>
<p>Whilst I'm sure suggesting you convert the web site to a web application is something you have considered doing and rejected, it <em>may</em> be the way forward if accessing your user controls is something you're looking to do frequently.</p>
http://stackoverflow.com/questions/1255135/combining-asp-net-sql-2005-change-scripts/1299516#1299516-1Answer by Justin Wignall for Combining ASP.net SQL 2005 Change ScriptsJustin Wignall2009-08-19T12:09:41Z2009-08-19T12:09:41Z<p>I think SQL packager from Red gate does this (and a lot more)</p>
<p><a href="http://www.red-gate.com/products/SQL%5FPackager/index.htm" rel="nofollow">http://www.red-gate.com/products/SQL%5FPackager/index.htm</a></p>
<p>I currently use a little program a former colleague wrote that takes a list of .sql files and merges them into one file that can be run. Unfortunately I don't have the source code to provide you with a working solution.</p>
<p>Knocking together a quick app or script that merges all files in a folder into one long file should be fairly straight forward.</p>
http://stackoverflow.com/questions/1299152/problem-with-master-pages-event-order/1299477#12994771Answer by Justin Wignall for Problem with Master pages event orderJustin Wignall2009-08-19T12:00:28Z2009-08-19T12:00:28Z<p>Populating the controls during the Masterpage's Init will solve your issue from the sounds of it.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dct97kc3.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dct97kc3.aspx</a></p>
<p>An alternate approach would be to have a public sub in the content page(s) that you can call from the masterpage during load which in effect acts as an alternate to the page load event.</p>
http://stackoverflow.com/questions/1254016/javascript-innerhtml-in-ie7-messing-with-input-tags/1254156#12541560Answer by Justin Wignall for Javascript InnerHTML in IE7 messing with INPUT tagsJustin Wignall2009-08-10T10:28:38Z2009-08-10T10:28:38Z<p>I believe this isn't something you can get around directly as the quotemark-less html is just how IE7 represents the DOM node internally.</p>
<p>My view on the best way to ensure you get the <em>exactly</em> right template is to read each attribute of each node yourself rather than the inner html and then write them out with the quote marks.</p>
<p>See </p>
<p><a href="http://stackoverflow.com/questions/1231770/innerhtml-removes-attribute-quotes-in-internet-explorer">http://stackoverflow.com/questions/1231770/innerhtml-removes-attribute-quotes-in-internet-explorer</a> </p>
<p>for other ideas. </p>
<p>Using jQuery's .html() </p>
<p><a href="http://docs.jquery.com/Attributes/html" rel="nofollow">http://docs.jquery.com/Attributes/html</a></p>
<p>would generally be the "jQuery way" to do this also rather than .getElementById</p>
http://stackoverflow.com/questions/1226167/need-simple-select-query/1226193#12261931Answer by Justin Wignall for Need Simple Select QueryJustin Wignall2009-08-04T07:55:49Z2009-08-04T07:55:49Z<p>I'm guessing you are after any rows that appear more than once with the same TR and TK?</p>
<p>If so, then 'HAVING' is probably what you are after</p>
<pre><code>SELECT DISTINCT TR,TK
FROM TBLSRC
GROUP BY TR,TK
HAVING COUNT(*) > 1
</code></pre>
http://stackoverflow.com/questions/1142084/loading-a-different-web-config-file-at-runtime-fo-asp-net/1142240#11422400Answer by Justin Wignall for Loading a different web.config file at runtime fo ASP.NETJustin Wignall2009-07-17T09:23:40Z2009-07-17T09:23:40Z<p>One way of doing it I guess would be to have a shared web.config file and then have multiple connection strings in that config file that match the virtual directory name.</p>
<pre><code><connectionStrings>
<add name="VirtualDir1" connectionString="data source=BLAHBLAH" />
<add name="VirtualDir2" connectionString="data source=BLAHBLAH" />
</connectionStrings>
</code></pre>
<p>When getting the connection string simply reference like:</p>
<pre><code>ConfigurationManager.ConnectionStrings(Request.ApplicationPath).ConnectionString
</code></pre>
<p>Although to be honest I think a little time spent with build projects and having multiple copies of the code with their own config files will save you pain in the long run.</p>
http://stackoverflow.com/questions/1103774/custom-numberformatinfo-on-dataformatstring/1103797#11037970Answer by Justin Wignall for Custom NumberFormatInfo on DataFormatStringJustin Wignall2009-07-09T13:09:28Z2009-07-09T13:09:28Z<p>I'm not 100% certain but I don't think you can.</p>
<p>You'll need to use a template field and bind to a literal on RowDataBound instead using your custom formatter. Happy to be proved wrong however....</p>
http://stackoverflow.com/questions/1103766/changing-class-of-a-span-element-with-javascript/1103775#11037758Answer by Justin Wignall for changing class of a <span> element with JavaScriptJustin Wignall2009-07-09T13:07:12Z2009-07-09T13:07:12Z<p>.className rather than .class</p>
http://stackoverflow.com/questions/466474/how-do-i-use-datareceived-event-of-the-serialport-port-object-in-c/964709#9647091Answer by Justin Wignall for How do I use dataReceived event of the SerialPort Port Object in C#?Justin Wignall2009-06-08T12:36:26Z2009-06-08T12:36:26Z<p>I was having the very same problem with a modem that had previously worked and then one day just stopped raising the DataReceived event.</p>
<p>The solution in my case, very randomly, was to enable RTS e.g.</p>
<pre><code>sp.RtsEnable = true;
</code></pre>
<p>No idea why that worked on this particular bit of kit (not a comms man at all really), nor why it had worked and then stopped but it may help somebody else one day so just posting it just in case...</p>
http://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits/730518#7305181Answer by Justin Wignall for rounding to an arbitrary number of significant digitsJustin Wignall2009-04-08T15:26:57Z2009-04-08T15:26:57Z<p>Isn't the "short and sweet" JavaScript implementation</p>
<pre><code>Number(n).toPrecision(sig)
</code></pre>
<p>e.g.</p>
<pre><code>alert(Number(12345).toPrecision(3)
</code></pre>
<p>?</p>
<p>Sorry, I'm not being facetious here, it's just that using the "roundit" function from Claudiu and the .toPrecision in JavaScript gives me different results but only in the rounding of the last digit.</p>
<p>JavaScript:</p>
<pre><code>Number(8.14301).toPrecision(4) == 8.143
</code></pre>
<p>.NET</p>
<pre><code>roundit(8.14301,4) == 8.144
</code></pre>
http://stackoverflow.com/questions/711321/skinid-on-custom-control-not-working-asp-net/711649#7116491Answer by Justin Wignall for SkinID on custom control not working (asp.net)Justin Wignall2009-04-02T21:11:51Z2009-04-02T21:11:51Z<p>I <em>think</em> the skin parameters get assigned during the initialisation of the control whereas the viewstate will only store after OnInit is complete.</p>
<p>From MS: "It tracks changes to these attributes only after the OnInit method is executed for a page request, and saves the changes to the page's or control's view state."</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178472.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178472.aspx</a></p>
<p>and</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.statebag.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.statebag.aspx</a></p>
<p>for more. </p>
<p>What happens if you just assign the value to a local variable on "set" and then add it to the viewstate from the "get" on page init/load?</p>
http://stackoverflow.com/questions/701426/can-an-asp-net-httprequest-ever-be-null-how-about-currentexecutionfilepath/701523#7015232Answer by Justin Wignall for Can an ASP.NET HttpRequest ever be null? How about CurrentExecutionFilePath?Justin Wignall2009-03-31T15:15:17Z2009-03-31T15:15:17Z<p>Oddly enough I have seen a null HttpRequest error (many many) times on a production server without ever being able to find out the cause.</p>
<p>I know that is of no use to you whatsoever but am just writing out of solidarity :)</p>
<p>One potential thing that I half remember was to do with IIS not mapping the root to /Default.aspx but again, this was all long ago so please don't pay too much attention to these potentialy unhelpful ramblings!!!</p>
http://stackoverflow.com/questions/701339/resizing-iframe-to-fit-its-content/701366#7013662Answer by Justin Wignall for Resizing iframe to fit its contentJustin Wignall2009-03-31T14:52:17Z2009-03-31T14:52:17Z<p>See <a href="http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content">http://stackoverflow.com/questions/153152/resizing-an-iframe-based-on-content</a></p>
http://stackoverflow.com/questions/701300/sql-server-agent-job-for-the-first-4-days-of-month/701337#7013370Answer by Justin Wignall for SQL Server Agent Job for the first 4 days of MonthJustin Wignall2009-03-31T14:47:37Z2009-03-31T14:47:37Z<p>Sorry I don;t have SQL 2000 to hand but can you not once the job is created add 4x schedules to the job (Edit Job > New Schedule or similar)</p>
<p>Sorry if this isn't available, you can use this method in 2008</p>
<p>he he, As Jason says</p>
http://stackoverflow.com/questions/701124/adding-onclientclick-javascript-to-an-asp-net-login-control/701253#7012534Answer by Justin Wignall for Adding 'onClientClick' javascript to an ASP.NET Login controlJustin Wignall2009-03-31T14:32:23Z2009-03-31T14:32:23Z<p>top.location.href is setting the url of the browser to be a new url so you are never completing the action of the click.</p>
<p>What you could do is set the target of the form to be "_top"</p>
<p>something like</p>
<pre><code>OnClientClick="document.getElementById('MYFORM_CLIENTID').target='_top';return true;"
</code></pre>
http://stackoverflow.com/questions/689653/request-servervariables-url-vs-scriptname/689673#6896731Answer by Justin Wignall for request.serverVariables() "URL" vs "Script_Name"Justin Wignall2009-03-27T12:59:42Z2009-03-27T12:59:42Z<p>Is this maybe there in case of Server.Transfer?</p>
<p>In the case where you do a server.transfer i <em>think</em> you would get different results</p>
<p>i.e. SCRIPT_NAME would be e.g. /path/to.transferredfile.asp whereas URL would remain as /path/to/file.asp</p>
http://stackoverflow.com/questions/578974/convert-existing-asp-net-application-large-to-web-standards/579002#5790020Answer by Justin Wignall for Convert existing asp.net application (large) to web standardsJustin Wignall2009-02-23T19:31:47Z2009-02-23T19:31:47Z<p>There are two routes you can take.</p>
<p>1) Rip it up and start again
2) Modify what you have and incrementally change it 'one page at a time'</p>
<p>I know that's a simple and obvious answer but truthfully, having done both, they are both viable.</p>
<p>A modern ASP.NET web applciation <em>CAN</em> be standards compliant, can have nice urls with some url re-writing and can seperate content from design. You just need to think before you act, make sure you use .NET 2.0 or .NET 3.5 controls and inspect the output to ensure you're getting good markup.</p>
<p>Converting an old web app to MVC can;'t really be answered without knowing the app itself. It might be perfectly suited to it and be easy, it might be a world of pain.</p>
<p>As always use the best tool for the job.</p>
http://stackoverflow.com/questions/563707/extjs-with-a-net-backend/578965#5789650Answer by Justin Wignall for ExtJS with a .NET backendJustin Wignall2009-02-23T19:23:48Z2009-02-23T19:23:48Z<p>Coolite as mentioned by Causas (<a href="http://www.coolite.com/" rel="nofollow">http://www.coolite.com/</a>) is maturing rapidly and is already capable of doing most ExtJS things 'out of the box'.</p>
<p>Data handling is taken care of for most of the 'standard' scenarios you can think of.</p>
<p>If you have any ExtJS experience you can also go in by hand and get your hands dirty on the javascript itself if needed. </p>
<p>I haven't found anything I can't do with it yet for a fairly complex app.</p>
http://stackoverflow.com/questions/1645274/generate-a-row-per-minute-of-the-day-from-a-sparsely-populated-database-table/1645312#1645312Comment by Justin Wignall on Generate a row per minute of the day from a sparsely populated database tableJustin Wignall2009-10-29T17:43:25Z2009-10-29T17:43:25ZSo you need zeroes for the minutes without rows?http://stackoverflow.com/questions/1645274/generate-a-row-per-minute-of-the-day-from-a-sparsely-populated-database-table/1645312#1645312Comment by Justin Wignall on Generate a row per minute of the day from a sparsely populated database tableJustin Wignall2009-10-29T17:28:48Z2009-10-29T17:28:48ZThinking on, there has to be a CTE way to do this better.http://stackoverflow.com/questions/1613154/sql-database-firebird-problem-with-a-foreign-keyComment by Justin Wignall on SQL database (Firebird): problem with a foreign keyJustin Wignall2009-10-23T12:38:33Z2009-10-23T12:38:33ZCan you change the existing table designs at all?http://stackoverflow.com/questions/1612860/remove-time-limit-for-abort-by-loading-a-script-or-website/1612985#1612985Comment by Justin Wignall on Remove time limit for abort by loading a script or websiteJustin Wignall2009-10-23T12:34:40Z2009-10-23T12:34:40ZI think this is best left as the answer to the question.http://stackoverflow.com/questions/1612848/c-regular-expression-help/1612922#1612922Comment by Justin Wignall on C# Regular Expression HelpJustin Wignall2009-10-23T11:49:11Z2009-10-23T11:49:11ZYeah, Chris's start is better. would still go for ^; instead of a-z so you can have any character in user except semi-colon.
#?(\d+;#[^;]+)http://stackoverflow.com/questions/1593757/a-simple-regex-question/1593767#1593767Comment by Justin Wignall on a simple Regex questionJustin Wignall2009-10-20T11:07:06Z2009-10-20T11:07:06ZDepending on if you are processing line by line or as a batch you would loop through each match in the collection and then get the group from each match.
I don;t do much c# so can't write the code perfect off the top of my head but...
regex r = new regex("REGEX");
matchcollection mc = r.matches(MyText);
foreach (match m in mc) {
string ID1 = m.groups("ID1");
string ID2 = m.groups("ID2");
}
http://stackoverflow.com/questions/1593757/a-simple-regex-question/1593769#1593769Comment by Justin Wignall on a simple Regex questionJustin Wignall2009-10-20T10:47:46Z2009-10-20T10:47:46ZTrue this example would work with splitting the string and would break for exactly the same reasons as the regex example above, it really depends on what range of possible values you expect to see - will the spaces always be in the same place etc.
If teh format will always be as above, keep it simple with strings, if it will/might change - regex probably your best bet.http://stackoverflow.com/questions/1508348/set-focus-to-iframe-body-content-in-firefox/1508438#1508438Comment by Justin Wignall on set focus to iframe body/content in firefox ?Justin Wignall2009-10-02T09:31:32Z2009-10-02T09:31:32ZHow about when using
var iframe_window = document.getElementById('myFrame');
having myFrame as the id attribute on the iframe?http://stackoverflow.com/questions/1226167/need-simple-select-query/1226193#1226193Comment by Justin Wignall on Need Simple Select QueryJustin Wignall2009-08-04T08:10:28Z2009-08-04T08:10:28ZYup, of course. It's early here :)http://stackoverflow.com/questions/1226167/need-simple-select-queryComment by Justin Wignall on Need Simple Select QueryJustin Wignall2009-08-04T08:01:17Z2009-08-04T08:01:17ZManjoor, sorry - this is what is cryptic. "Common TK (in all CN)" doesn't really say what exactly you are trying to achieve.
Can you elaborate on what you want if the methods below are not suitable...http://stackoverflow.com/questions/578867/sql-query-delete-all-records-from-the-table-except-latest-n/578882#578882Comment by Justin Wignall on SQL query: Delete all records from the table except latest N?Justin Wignall2009-02-23T19:04:23Z2009-02-23T19:04:23ZThis will only leave single latest row