Justin Wignall

659
reputation
63 views

Registered User

name Justin Wignall
member for 1 year
seen 11 hours ago
website
location Coventry, UK
age 29
A web designer since late 90s I've slowly morphed into more of a developer although I'm still pasionate about good design. We won the standards war, we all use CSS correctly etc. so I've stepped off of my soapbox and I'm getting stuck in with some serious 'science' based coding. It's fun!
Dec
4
awarded  Yearling
Dec
1
revised How do you sort a tree stored using the nested set model?
deleted 12 characters in body
Nov
20
revised How do you sort a tree stored using the nested set model?
Updated code to not use cursor and do sibling swapping inline rather than via a seperate stored procedure
Nov
4
answered Resize PNG in a ASP.Net App
Oct
29
accepted Generate a row per minute of the day from a sparsely populated database table
Oct
29
revised Generate a row per minute of the day from a sparsely populated database table
added 1085 characters in body
Oct
29
revised Generate a row per minute of the day from a sparsely populated database table
added 958 characters in body; deleted 51 characters in body; edited body
Oct
29
comment Generate a row per minute of the day from a sparsely populated database table
So you need zeroes for the minutes without rows?
Oct
29
awarded  Commentator
Oct
29
comment Generate a row per minute of the day from a sparsely populated database table
Thinking on, there has to be a CTE way to do this better.
Oct
29
answered Generate a row per minute of the day from a sparsely populated database table
Oct
27
answered redirecting in javascript by making use of the credentials
Oct
23
comment SQL database (Firebird): problem with a foreign key
Can you change the existing table designs at all?
Oct
23
comment Remove time limit for abort by loading a script or website
I think this is best left as the answer to the question.
Oct
23
comment C# Regular Expression Help
Yeah, 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+;#[^;]+)
Oct
23
answered C# Regular Expression Help
Oct
20
answered How to Script Automatically, the securables assigned to a SQL account
Oct
20
awarded  Editor
Oct
20
revised a simple Regex question
added 475 characters in body
Oct
20
accepted a simple Regex question
Oct
20
comment a simple Regex question
Depending 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"); }
Oct
20
comment a simple Regex question
True 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.
Oct
20
answered a simple Regex question
Oct
15
answered AddHour / AddMinute store within a ListItem
Oct
2
accepted conversion from string yyyyMMdd to type integer is not valid
Oct
2
answered conversion from string yyyyMMdd to type integer is not valid
Oct
2
comment set focus to iframe body/content in firefox ?
How about when using var iframe_window = document.getElementById('myFrame'); having myFrame as the id attribute on the iframe?
Oct
2
answered set focus to iframe body/content in firefox ?
Aug
26
accepted ASP.NET Compilation And Code Visibility
Aug
26
answered Bookmarklet to force IE6 to start autorefreshing a page?
Aug
26
answered Word wrap in Firefox 2.0
Aug
26
answered ASP.NET Compilation And Code Visibility
Aug
19
accepted Problem with Master pages event order
Aug
19
answered Combining ASP.net SQL 2005 Change Scripts
Aug
19
answered Problem with Master pages event order
Aug
10
answered Javascript InnerHTML in IE7 messing with INPUT tags
Aug
4
comment Need Simple Select Query
Yup, of course. It's early here :)
Aug
4
comment Need Simple Select Query
Manjoor, 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...
Aug
4
answered Need Simple Select Query
Jul
17
answered Loading a different web.config file at runtime fo ASP.NET
Jul
9
accepted changing class of a <span> element with JavaScript
Jul
9
answered Custom NumberFormatInfo on DataFormatString
Jul
9
answered changing class of a <span> element with JavaScript