Chris M
|
Registered User
|
PHP/MySQL Developer 8 Years
Senior Developer at Wyndham WW.
Lover of web standards and a member of GAWDS.
Learning ASPX (because I have to), and brushing up on my Python (hellooooo google apps). Pretty damned good at Javascript; but if I have to choose a Framework its usually Jquery (or moofx). I hate invalid code, js leaks and love to analyse and optimize pages (because I dont see broadband as a cop-out for optimization) |
|
Dec 8 |
comment |
Credit Card Validation Resource for UK merchant Thanks, Its a nightmare finding useful information to validate against :o) |
|
Dec 6 |
comment |
Advantages of web applications over desktop applications @Canavar if its internal App to Web App then you can usually guarantee IT control the browser + version. Thanks to JS libraries coding for multiple browsers isnt that difficult. Coding CSS for everything past IE6 isn't that difficult anyway if your a good enough web-designer/developer. |
|
Dec 4 |
revised |
How do I create a selective Windows Authorise in ASP.Net MVC added 140 characters in body |
|
Dec 2 |
comment |
How do I create a selective Windows Authorise in ASP.Net MVC Cool; That answers the question :o) Ta |
|
Dec 2 |
comment |
How do I create a selective Windows Authorise in ASP.Net MVC Its a corporate server so as far as I know I will be able to use the active directory. I'm not looking to add users just authenticate them. |
|
Dec 2 |
asked | How do I create a selective Windows Authorise in ASP.Net MVC |
|
Dec 1 |
comment |
Is it possible to make SQL Server convert entries columns in a set of results Good link; I was drowning in reference sites. Ta |
|
Dec 1 |
comment |
Is it possible to make SQL Server convert entries columns in a set of results @marc thanks; @OMG g_id_featuregroup for instance is Tbl: featuregroup; PK: g_id |
|
Dec 1 |
revised |
Is it possible to make SQL Server convert entries columns in a set of results edited body |
|
Dec 1 |
asked | Is it possible to make SQL Server convert entries columns in a set of results |
|
Nov 28 |
accepted | Using ISAPI Rewrite 3 & ASP.Net MVC? |
|
Nov 27 |
answered | Using ISAPI Rewrite 3 & ASP.Net MVC? |
|
Nov 26 |
asked | Using ISAPI Rewrite 3 & ASP.Net MVC? |
|
Oct 13 |
answered | Adobe Dreamweaver Extensions |
|
Oct 7 |
revised |
Adobe Dreamweaver Extensions added 263 characters in body; edited tags; edited tags |
|
Oct 7 |
comment |
Adobe Dreamweaver Extensions Crap; I could grow to hate adobe... more |
|
Oct 7 |
revised |
Adobe Dreamweaver Extensions added 42 characters in body |
|
Oct 6 |
awarded | ● Tumbleweed |
|
Sep 29 |
asked | Adobe Dreamweaver Extensions |
|
Sep 28 |
accepted | SelectList Dropdowns in C# (Selected value) |
|
Sep 28 |
comment |
SelectList Dropdowns in C# (Selected value) Ye I'm guessing that the abiguous name was the use of changeDuration twice. |
|
Sep 25 |
comment |
SelectedItem not being remembered in SelectList in ASPNET.MVC Guessing that example came from blog.benhartonline.com/post/2008/… |
|
Sep 25 |
answered | SelectList Dropdowns in C# (Selected value) |
|
Sep 25 |
asked | SelectList Dropdowns in C# (Selected value) |
|
Sep 23 |
comment |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. I cheated See Answer Added to the Question :o) |
|
Sep 23 |
revised |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. answer added |
|
Sep 23 |
comment |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. Kind of right I need to compare the whole dates rather than just the days otherwise I have to deal with testing that were not adding 3 days to the end of the month or taking 3 days off the beginning of the month. |
|
Sep 23 |
revised |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. added 473 characters in body |
|
Sep 23 |
comment |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. Admittedly It started off as about 2 statements and in trying to fix an issue with multiple days being selected I ended up over complicating it to the point of being massively convoluted. |
|
Sep 23 |
comment |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. You typed the questions as I was clarifying it :o) Basically I'm passing a Date (say 27/11/2010 which is SelectedDay) which I need to test it. Is the SelectedDay the Current Calendar day being added to the string. If its not then if i add a day to the Selected Day does it match, then if not, two days, and again, three days. |
|
Sep 23 |
revised |
If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. clarified |
|
Sep 23 |
asked | If Statement Hell, How to check if a date passed matches a date within 3 days but only if the date doesnt match the other conditions. |
|
Sep 8 |
revised |
Should I set rewrite rules on an ASP.Net MVC site with heliontech IISRewriter Globally or by folder with wordpress? changed title |
|
Sep 7 |
asked | Should I set rewrite rules on an ASP.Net MVC site with heliontech IISRewriter Globally or by folder with wordpress? |
|
Aug 28 |
revised |
Credit Card Validation Resource for UK merchant added 189 characters in body |
|
Aug 28 |
comment |
Determine credit card type by number? Credit cards arent too bad as they follow a set of rules; we have Maestro cards which cause all the issues as they use the same start codes as Credit Card producers and have over 16digits. |
|
Aug 28 |
comment |
Determine credit card type by number? Most Cards are 16# in length (UK) Maestro can be up to 19 so length checks become a PITA. |
|
Aug 27 |
comment |
Credit Card Validation Resource for UK merchant Yep all Maestro cards are debit; and from the 7th digit in it contains the account code. Might have to get a data validation table. |
|
Aug 27 |
comment |
Credit Card Validation Resource for UK merchant Ta we do have a LUHN method built in to our validation class; as were using a webservice that currently only accepts a single call per session (dont ask) we have to do as much validation as is humanly possible prior to sending the information. |
|
Aug 27 |
comment |
Credit Card Validation Resource for UK merchant Ta, unfortunatly the data on there is mostly out of date; Visa Electron is Visa Debit and the start numbers no longer match. Obviously with the debit card inclusive you cant simply match against the 4 (which sucks) :op |
|
Aug 27 |
comment |
Credit Card Validation Resource for UK merchant Its as a precursory selection; like google checkout, you enter your number and it pre-selects the card type. |
|
Aug 27 |
asked | Credit Card Validation Resource for UK merchant |
|
Aug 24 |
comment |
Replace Multiple String Elements in C# Thanks! I knew that Strings are immutable, I didn't realise it would do it across every replace statement. :o) Ta |
|
Aug 24 |
asked | Replace Multiple String Elements in C# |
|
Aug 14 |
comment |
Alternative To Sessions? (asp.net mvc c#) * 4 KB per cookie maximum * 300 total cookies, for a total of 1.2 Mbytes maximum * 20 cookies accepted from a particular server or domain |
|
Aug 14 |
comment |
Alternative To Sessions? (asp.net mvc c#) Thanks for the ideas :o) |
|
Aug 14 |
comment |
Alternative To Sessions? (asp.net mvc c#) To answer my own question: dotnetperls.com/garbage-collection technet.microsoft.com/en-us/sysinternals/… and msdn.microsoft.com/en-us/library/… |
|
Aug 14 |
comment |
Alternative To Sessions? (asp.net mvc c#) We have decided on using a mix of TempData (which is technically 'from what i see' still using sessions) and normal Sessions. Using TD though ensures that once used the stuff we dont need is disposed of properly which is fine :o) |
|
Aug 14 |
comment |
Alternative To Sessions? (asp.net mvc c#) Unfortunatley I have no storage available outside of the basic application; otherwise this would be a good option and also an optional choice for Sessions Storage rather then inproc |
|
Aug 13 |
comment |
Alternative To Sessions? (asp.net mvc c#) Small string/int etc vars aren't so much the issue; its more result sets (listarrays 500 in size) |
