| bio | website | |
|---|---|---|
| location | ||
| age | 33 | |
| visits | member for | 3 years, 4 months |
| seen | 2 days ago | |
| stats | profile views | 314 |
|
Feb 23 |
comment |
What is the difference between implicit/explicit joins? @MitchWheat "what are the point of shoes?" |
|
Feb 23 |
comment |
What is the difference between implicit/explicit joins? I think the OP is getting confused between joins and constraints, see the case mentioned above for the difference between joins and where clauses and see the answer by Sapan for the usage of constraints. |
|
Feb 21 |
comment |
group by Query not working fine sql server 2005 Maybe post some SQL!? |
|
Feb 10 |
comment |
Regex to seperate request uri by 'real' page request and image/js/css requests Well as long as you have it working that's the main thing :) |
|
Feb 10 |
comment |
Regex to seperate request uri by 'real' page request and image/js/css requests @rontron Updated, see if that is any better |
|
Feb 10 |
revised |
Regex to seperate request uri by 'real' page request and image/js/css requests added 335 characters in body |
|
Feb 10 |
answered | Regex to seperate request uri by 'real' page request and image/js/css requests |
|
Feb 9 |
comment |
Regular expression, specifying optional capture groups? The decimal and the second group all need to be optional as part of the same group, as per my answer. |
|
Feb 9 |
comment |
Regular expression, specifying optional capture groups? It is a quantifier that makes the previous item in the regular expression (in this case the entire non captured group) optional so that it can present 0 or 1 times. |
|
Feb 9 |
awarded | Yearling |
|
Feb 9 |
comment |
Regular expression, specifying optional capture groups? My answer takes that into account already, your problem is the decimal is actually matching any character as it should in regular expressions. |
|
Feb 9 |
answered | Regular expression, specifying optional capture groups? |
|
Feb 8 |
answered | How to add a node to XML in C#? |
|
Feb 3 |
comment |
Replacing special characters in web.config using Intelligencia UrlRewriter From what I read the problem seems to be down to a problem with the Uri class. You could upgrade to .NET 4.0 and implement the above option, or there looks to be a workaround that I haven't tried. |
|
Feb 2 |
answered | Replacing special characters in web.config using Intelligencia UrlRewriter |
|
Feb 2 |
comment |
Replacing special characters in web.config using Intelligencia UrlRewriter I can successfully parse and redirect a URL with a full stop in it following your example, and retrieve that value from the query string on the target page. That is running locally in IIS on Windows 7. One option that we do use (but didn't made any difference in this situation) is to encode the value when you pass it on the query string so use encode($1) rather than just $1 |
|
Jan 24 |
comment |
Replacing special characters in web.config using Intelligencia UrlRewriter So is the URL served without the rewriter? If so, this may indicate that the rewriter is doing some internal parsing/validation that may be modified. Can you provide an example of a problematic URL, including the characters that are causing it to fail? |
|
Jan 20 |
comment |
Removing pound/number '#' sign from URL I have seen AJAX enabled sites that use such hashed values to track the current state of the page and insert them into the browsers history, for example the ASP.NET ScriptManager does this if you use the EnableHistory property. Does this fit with your website at all? |
|
Jan 20 |
comment |
Replacing special characters in web.config using Intelligencia UrlRewriter As per fge's comment, the problem here may be invalid characters in the URL rather than the URL rewriting module (which we use actually). See stackoverflow.com/questions/1547899/… for valid and invalid characters in a URL. Which characters are you experiencing problems with? |
|
Jan 10 |
comment |
SQL Query to check if today is Employee's birthday One comment to make on this is that this assumes that DateOfBirth is is stored in the same time zone as that set on the SQL server. Should the DateOfBirth be stored in UTC then GETUTCDATE() would be required. |