User Nick Berardi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T16:10:08Z http://stackoverflow.com/feeds/user/17 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1698078/why-on-earth-contentplaceholder-renders-as-table/1698551#1698551 1 Answer by Nick Berardi for Why on earth ContentPlaceHolder renders as table ? Nick Berardi 2009-11-09T00:48:47Z 2009-11-09T00:48:47Z <p>Do you have a master page between your MasterPage you defined above and the content that you also defined above. The .NET framework doesn't auto insert tables, the only way that would get inserted in for a ContentPlaceHolder is if one is defined in a master page. Or another process was auto inserting the table structure in. </p> <p>Also it is not apparent in the UI, but master pages can also have master pages, so make sure you don't have a master page in between that could be adding tables.</p> http://stackoverflow.com/questions/1683776/is-this-utility-useful-enough-to-bother-putting-into-codeplex/1683822#1683822 1 Answer by Nick Berardi for Is this utility useful enough to bother putting into CodePlex? Nick Berardi 2009-11-05T21:38:14Z 2009-11-05T21:38:14Z <p>Put it out on CodePlex and gage the usefulness of it. If it is very useful to many people start moving forward by creating a community around it like the website you talked about. If it is going to be a lot of work and you don't know if it will be useful to people, start small with your effort level and keep moving it up.</p> <p>I did this exact same thing with my URL Rewriter that I developed, that was based off of Apache mod_rewrite, for the .NET framework.</p> <p><a href="http://urlrewriter.codeplex.com" rel="nofollow">http://urlrewriter.codeplex.com</a></p> <p>I started small and as people requested new feature and started using it more and more, the effort became easy to justify.</p> http://stackoverflow.com/questions/1683758/how-do-i-access-to-an-address-in-memory-with-c/1683770#1683770 0 Answer by Nick Berardi for How do I access to an address in memory with c#? Nick Berardi 2009-11-05T21:29:49Z 2009-11-05T21:29:49Z <p>Check out the <code>unsafe</code> keyword. This allows you to access the memory directly, like in C++.</p> <p><a href="http://msdn.microsoft.com/en-us/library/28k1s2k6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/28k1s2k6.aspx</a></p> http://stackoverflow.com/questions/1677516/c-int-parse-issue-with-leading-zeros/1677557#1677557 1 Answer by Nick Berardi for C# int.parse issue with leading zeros Nick Berardi 2009-11-05T00:11:11Z 2009-11-05T00:11:11Z <p>Try</p> <pre><code>int i = Int32.Parse(value, NumberStyles.Any); </code></pre> http://stackoverflow.com/questions/778607/returnurl-in-asp-net-mvc/778648#778648 1 Answer by Nick Berardi for ReturnUrl in ASP.NET MVC Nick Berardi 2009-04-22T18:53:01Z 2009-11-04T02:41:43Z <p>Make sure you URL encode the RawUrl before using it.</p> <pre><code>&lt;%= Url.Encode(Request.RawUrl) %&gt; </code></pre> <p>This should do it for you.</p> http://stackoverflow.com/questions/1632558/large-data-stream-tcp-ip-or-a-web-service/1632587#1632587 2 Answer by Nick Berardi for Large data! stream tcp/ip or a web service? Nick Berardi 2009-10-27T17:57:38Z 2009-10-27T17:57:38Z <p>Streaming TCP/IP is probably your best bet, because you will not have the overhead of the HTTP protocol which is really meant for textual data. But if you go with something webservice related, make sure that whatever solution you choose supports sending "chunked" data. Because with out it, your server is going to have to buffer the entire request before sending.</p> <p>To answer you second question, you really don't want anybody besides you in your data. So I wouldn't even consider direct DB access. </p> http://stackoverflow.com/questions/1608302/can-i-use-a-static-i-e-predetermined-callback-function-name-when-requesting-j/1608334#1608334 2 Answer by Nick Berardi for Can I use a static (i.e., predetermined) callback function name when requesting JSONP with jQuery? Nick Berardi 2009-10-22T16:14:52Z 2009-10-22T16:20:50Z <p>As <a href="http://docs.jquery.com/Ajax/jQuery.getJSON#urldatacallback" rel="nofollow">defined in the documentation</a> for you to use the following method</p> <pre><code>jQuery.getJSON(...) </code></pre> <p>you need to specify <code>callback=?</code> when making a JSONP call. I usually only uses this for response types of "json". For response types of "jsonp", you want to use:</p> <pre><code>jQuery.get(...) </code></pre> <p>and specify the <code>type</code> as "jsonp". See this <a href="http://docs.jquery.com/Ajax/jQuery.get#urldatacallbacktype" rel="nofollow">documentation on the subject</a>. But that is also bound by the fact of having to have a <code>callback=?</code>. </p> <p>What I think you are <a href="http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback" rel="nofollow">looking for is this</a>:</p> <pre><code>jQuery.getScript(...) </code></pre> <p>Which should execute whatever method you have defined in your <code>callback</code>.</p> http://stackoverflow.com/questions/1602734/is-there-an-equivalent-to-date-in-as3/1602770#1602770 0 Answer by Nick Berardi for Is there an equivalent to __DATE__ in AS3? Nick Berardi 2009-10-21T18:41:41Z 2009-10-21T18:41:41Z <p>It is just for both <code>__DATE__</code> and <code>__TIME__</code></p> <pre><code>new Date(); </code></pre> <p>See this example below for how it might be used. You can find the <a href="http://livedocs.adobe.com/flex/3/langref/Date.html" rel="nofollow">documentation here</a>.</p> <pre><code>/** * Called by the parent container when the display is being drawn. */ public override function draw():void { // stores the current date and time in an instance variable currentTime = new Date(); showTime(currentTime); } /** * Displays the given Date/Time in that good old analog clock style. */ public function showTime(time:Date):void { // gets the time values var seconds:uint = time.getSeconds(); var minutes:uint = time.getMinutes(); var hours:uint = time.getHours(); // multiplies by 6 to get degrees this.secondHand.rotation = 180 + (seconds * 6); this.minuteHand.rotation = 180 + (minutes * 6); // Multiply by 30 to get basic degrees, then // add up to 29.5 degrees (59 * 0.5) // to account for the minutes. this.hourHand.rotation = 180 + (hours * 30) + (minutes * 0.5); } </code></pre> http://stackoverflow.com/questions/1566934/is-code-access-security-of-any-real-world-use/1567330#1567330 3 Answer by Nick Berardi for Is “Code Access Security” of any real world use? Nick Berardi 2009-10-14T16:06:23Z 2009-10-14T16:06:23Z <p>The thing to understand about Code Access Security is that it is of very little use to an application developer beyond understanding how it is being used and at what permission level for API's that you may be calling. The only exception to this, that I have really found useful is a CAS called PrincipalPermission, it basically doesn't allow certain code to be executed if the right Role isn't defined for the current Principal. See this post on it:</p> <p><a href="http://www.coderjournal.com/2008/03/securing-mvc-controller-actions/" rel="nofollow">http://www.coderjournal.com/2008/03/securing-mvc-controller-actions/</a></p> <p>The developers that really need to pay attention to CAS and how it should be implemented in their application is the framework and code library developers. Because there is certain levels of trust that you need to demand inorder for your application to work especially when dealing with unmanaged resources such as files, network streams, serial ports, etc. Or if you are creating the code for that unmanaged resource like some speicalized server, or any kind of low level access in to your assemblies you will want to create some code access security around it so that people aren't allowed to execute something that has been strictly denied to them.</p> <p>It doesn't help that Microsoft hasn't really done that great of a job explaining how CAS should be used in every day application. So that is really the reason for lack of use. However CAS is one of the many reasons that .NET is such a secure language and suffers from a lot fewer problems than its competitors.</p> http://stackoverflow.com/questions/1499814/whats-the-simplest-way-to-rewrite-urls-in-asp-net-mvc-iis7/1500092#1500092 1 Answer by Nick Berardi for What's the simplest way to rewrite Urls in ASP.NET MVC / IIS7? Nick Berardi 2009-09-30T19:07:55Z 2009-09-30T19:07:55Z <p>There is also the <a href="http://urlrewriter.codeplex.com" rel="nofollow">.NET URL Rewriter and Reverse Proxy</a>, which is the same as mod_rewrite on Apache, and completely free unlike others.</p> http://stackoverflow.com/questions/1498270/mvc-url-rewritting-somthing-like-http-controller-website-com/1498901#1498901 0 Answer by Nick Berardi for MVC url Rewritting somthing like http://controller.website.com Nick Berardi 2009-09-30T15:30:03Z 2009-09-30T15:30:03Z <p>Take a look at this answer it may help you out.</p> <p><a href="http://stackoverflow.com/questions/2262/asp-net-url-rewriting">http://stackoverflow.com/questions/2262/asp-net-url-rewriting</a></p> <p>You can try the following:</p> <pre><code>RewriteConf %{HTTP_HOST} !^mysite\.com$ [NC] RewriteRule ^(.*)$ http://mysite.com/user/%1$1 RewriteRule ^/user/([a-zA-Z0-9]+)\.mysite\.com/(.*) http://mysite.com/user/$1/$2 [NC,L] </code></pre> <p>What this rule does is first insert the host into the URL path and then strip out the correct values from the host and write it the way you want on the backend.</p> http://stackoverflow.com/questions/1496938/asp-net-what-does-the-starting-a-mean/1497280#1497280 1 Answer by Nick Berardi for ASP.NET : What does the '#' starting a <% %> mean ? Nick Berardi 2009-09-30T10:32:43Z 2009-09-30T10:32:43Z <p>New to .NET 4.0 there is</p> <pre><code>: </code></pre> <p>which is just like the <code>&lt;%= %&gt;</code> but HTML encodes your output. It is used like:</p> <pre><code>&lt;%: Model.Name %&gt; </code></pre> <p>And it is just like calling</p> <pre><code>&lt;%= HttpServerUtility.HtmlEncode(Model.Name) %&gt; .. or .. &lt;% Response.Write(HttpServerUtility.HtmlEncode(Model.Name)) %&gt; </code></pre> http://stackoverflow.com/questions/1496740/asp-net-mvc-one-way-route/1497198#1497198 2 Answer by Nick Berardi for ASP.NET MVC One Way Route Nick Berardi 2009-09-30T10:13:22Z 2009-09-30T10:13:22Z <p>Yes you can do what you are asking. You would just create your own route that inherited from the current one and override <code>GetVirtualPath</code> to always return null. This way no Action lookup would be done, but the URL would still function as a routing mapping to your action/controller.</p> <p>Also by the way, what is happening isn't URL Rewriting, because you using the Routes to define endpoints in to your application. Or in other words an API. So no rewriting is taking place. Think of the relationship between routes and your action/controller as more of a publically defined namespace for the web. Just like a namespace you are defining a specific spot in your application where your action/controller can be found.</p> http://stackoverflow.com/questions/1487867/c-get-values-of-static-properties-from-static-class/1487936#1487936 0 Answer by Nick Berardi for C# - Get values of static properties from static class Nick Berardi 2009-09-28T16:15:47Z 2009-09-28T16:15:47Z <p>Try removing <code>BindingFlags.DeclaredOnly</code>, because according to MSDN:</p> <blockquote> <p>Specifies that only members declared at the level of the supplied type's hierarchy should be considered. Inherited members are not considered.</p> </blockquote> <p>Since static's cannot be inherited, this might be causing your issues. Also I noticed the fields you are trying to get are not properties. So try using</p> <pre><code>type.GetFields(...) </code></pre> http://stackoverflow.com/questions/1487407/transact-sql-how-to-to-do/1487430#1487430 0 Answer by Nick Berardi for Transact SQL How to to do? Nick Berardi 2009-09-28T14:43:36Z 2009-09-28T14:43:36Z <p><code>Visual Studio Team Systems for Database Developers</code> will do this for you. </p> http://stackoverflow.com/questions/1476934/forwarding-http-mydomain-com-ctrlr-act-val-to-http-www-mydomain-com-ctrlr-act/1478114#1478114 0 Answer by Nick Berardi for Forwarding http://mydomain.com/ctrlr/act/val to http://WWW.mydomain.com/ctrlr/act/val Nick Berardi 2009-09-25T15:49:40Z 2009-09-25T15:49:40Z <p>You can use <a href="http://urlrewriter.codeplex.com" rel="nofollow">Url Rewriter</a> from Code Plex. You can force everything to www.domain.com by doing the following:</p> <pre><code>RewriteCond %{HTTP_HOST} !^(www).*$ [NC] RewriteRule ^(.*)$ http://www.%1$1 [R=301] </code></pre> <p>Or if you want to make it more specific for your domain</p> <pre><code>RewriteCond %{HTTP_HOST} !^www.mydomain.com$ [NC] RewriteRule ^(.*)$ http://www.mydomain.com$1 [R=301] </code></pre> <p>This also supports a whole bunch of other rewriter functions provided by mod_rewrite.</p> http://stackoverflow.com/questions/1468168/ie7-not-caching-css-image-over-ssl/1468490#1468490 1 Answer by Nick Berardi for IE7 not Caching CSS Image over SSL Nick Berardi 2009-09-23T20:59:43Z 2009-09-23T20:59:43Z <p>Well there are multiple issues according to other Stackoverflow posts. FireFox 2.x also has this problem. But FireFox 3.x doesn't.</p> <p><a href="http://stackoverflow.com/questions/174348/will-web-browsers-cache-content-over-https/174509#174509">http://stackoverflow.com/questions/174348/will-web-browsers-cache-content-over-https/174509#174509</a></p> <p>Also in Internet Explorer, you go to Tools > Internet Options > Advanced tab > Security section > Do not save encrypted pages to disk. It appears to be unchecked by default in IE6, 7 and 8.</p> http://stackoverflow.com/questions/1468168/ie7-not-caching-css-image-over-ssl/1468198#1468198 0 Answer by Nick Berardi for IE7 not Caching CSS Image over SSL Nick Berardi 2009-09-23T19:50:19Z 2009-09-23T19:50:19Z <p>Have you tried adding to the header for those type of static files.</p> <pre><code>P3P: CP="CAO PSA OUR" </code></pre> <p>I know this works with in IE to allow storage of cookies through framesets and stuff. Not sure if it works with static files under HTTPS.</p> http://stackoverflow.com/questions/1461631/is-css-used-anywhere-besides-web-browsers/1461920#1461920 0 Answer by Nick Berardi for Is CSS used anywhere besides web browsers? Nick Berardi 2009-09-22T18:50:18Z 2009-09-22T18:50:18Z <p>I have seen the CSS syntax popup as a selection tool more than a styling tool recently. The most widely used example of this is jQuery's use of CSS selectors.</p> http://stackoverflow.com/questions/1460841/performance-comparison-tcpclient-vs-httpwebrequest/1460883#1460883 2 Answer by Nick Berardi for Performance comparison TcpClient vs HttpWebRequest Nick Berardi 2009-09-22T15:42:44Z 2009-09-22T15:42:44Z <p>The <code>TcpClient</code> is going to be faster for most things, because the <code>HttpWebRequest</code> has to do a bunch of other things... Such as constructing the headers for the HTTP request, and managing streaming connections through things like chunked requests. Where a <code>TcpClient</code> is just the raw connection with out all the HTTP standards built in.</p> http://stackoverflow.com/questions/294021/is-there-a-ghostdoc-like-plug-in-for-coderush-or-resharper 1 Is there a GhostDoc like plug-in for CodeRush or ReSharper? Nick Berardi 2008-11-16T15:49:51Z 2009-09-18T15:19:39Z <p>I have noticed that GhostDoc hasn't been updated in a long while. So I am curious if there is a plug-in for Resharper or CodeRush that will accomplish the same thing? Or even if this type of functionality is built in to one of the tools that would be great too. </p> http://stackoverflow.com/questions/1401897/how-to-stop-visual-studio-adding-assemblies-to-my-web-config/1438516#1438516 0 Answer by Nick Berardi for How to stop Visual Studio adding assemblies to my web.config? Nick Berardi 2009-09-17T12:19:28Z 2009-09-17T12:25:00Z <p>Those are all the assemblies required by your project, in some shape or manor and the aid the compilation that ASP.NET does on your pages at runtime. They are probably being imported in by either by code you are using in your project or another library that is using them.</p> <p>But according to the <a href="http://msdn.microsoft.com/en-us/library/bfyb45k1.aspx" rel="nofollow">documentation</a>. These are the assemblies defined in your global web.config which can be found in <code>C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG</code>:</p> <pre><code>&lt;assemblies&gt; &lt;add assembly="mscorlib" /&gt; &lt;add assembly="System, ..." /&gt; &lt;add assembly="System.Configuration, ..." /&gt; &lt;add assembly="System.Web, ..." /&gt; &lt;add assembly="System.Data, ..." /&gt; &lt;add assembly="System.Web.Services, ..." /&gt; &lt;add assembly="System.Xml, ..." /&gt; &lt;add assembly="System.Drawing, ..." /&gt; &lt;add assembly="System.EnterpriseServices, ..." /&gt; &lt;add assembly="System.Web.Mobile, ..." /&gt; &lt;add assembly="*" /&gt; &lt;/assemblies&gt; </code></pre> <p>If you look there is an <code>assembly="*"</code> reference being added. And if you read the <a href="http://msdn.microsoft.com/en-us/library/37e2zyhb.aspx" rel="nofollow">documentation</a> about this command it says:</p> <blockquote> <p>Optionally, you can specify the asterisk (*) wildcard character to add every assembly within the private assembly cache for the application, which is located either in the \bin subdirectory of an application or in the.NET Framework installation directory (%systemroot%\Microsoft.NET\Framework\version).</p> </blockquote> <p>This means that any assembly in your /bin directory or in the .NET Framework installation directory is going to be included already. </p> <p>What this tells me about your problem is that those assemblies that are being included are already referenced in some way to your project. And they are probably coming from the <code>Avatar Dot Net Library</code> or some controls on your page. <strong>Check the "References" folder in your Visual Studio project on the Avatar Library for these references you don't want. Because that is where the build process gets these libraries from.</strong></p> <p>So in other words if you don't want them to be included scrub your referenced projects of all references of these libraries. </p> <p>Alternatively you can use a MSBuild XML parser to drop that section of the web.config each time you run your build process. Personally I use a task called <code>XmlUpdate</code> to modify certain parts of my web.config to get it production ready. If you would like to do the same it is part of the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a>.</p> http://stackoverflow.com/questions/1434953/any-way-to-generate-compiler-warning-for-unused-usings/1434963#1434963 2 Answer by Nick Berardi for Any way to generate compiler warning for unused usings? Nick Berardi 2009-09-16T19:21:50Z 2009-09-16T19:21:50Z <p>No because it is not a compiler issue, so you cannot generate compiler warnings. Compiler warnings only get generated when a dead code spot is found, such as an empty catch statement. Or an unused variable. Basically anything that could cause runtime issues. Since using statements have nothing to do with runtime and are more style issues of a text file, they will not generate warnings.</p> <p>But you can use a tool like reSharper to alert you of unused using statements.</p> http://stackoverflow.com/questions/1068167/firefox-does-not-deliver-pdf-if-it-is-handled-by-http-handler-and-inside-iframe/1432542#1432542 0 Answer by Nick Berardi for Firefox does not deliver pdf if it is handled by http-handler and inside iframe Nick Berardi 2009-09-16T12:01:48Z 2009-09-16T12:01:48Z <p>There was no mod_rewrite for IIS 6 either. It is an Apache only process. There are alternatives like IIS 7 Rewriter Module or <a href="http://urlrewriter.codeplex.com" rel="nofollow">Managed Fusion URL Rewriter</a>.</p> http://stackoverflow.com/questions/1427689/urlrewriting-net-pages-are-not-causing-postbacks/1429152#1429152 0 Answer by Nick Berardi for Urlrewriting.net pages are not causing postbacks Nick Berardi 2009-09-15T19:22:52Z 2009-09-15T19:22:52Z <p>You need to make sure it is doing something called ClientRebaseing which makes sure .NET is seeing the new URL vs the old Raw URL. See this post for more information:</p> <p><a href="http://www.ifinity.com.au/Blog/Technical%5FBlog/EntryId/46/Why-does-Url-Rewriting-break-all-my-image-links" rel="nofollow">http://www.ifinity.com.au/Blog/Technical%5FBlog/EntryId/46/Why-does-Url-Rewriting-break-all-my-image-links</a></p> <p>Also I don't know if this is supported in UrlRewriting.NET, but my own URL Rewriter based off of Apache mod_rewrite does support rebasing the client path.</p> <p><a href="http://urlrewriter.codeplex.com" rel="nofollow">http://urlrewriter.codeplex.com</a></p> http://stackoverflow.com/questions/9033/hidden-features-of-c/9038#9038 27 Answer by Nick Berardi for Hidden Features of C#? Nick Berardi 2008-08-12T16:38:50Z 2009-09-12T20:35:47Z <p>Honestly the experts by the very definition should know this stuff. But to answer your question:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ya5y69ds.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ya5y69ds.aspx</a></p> <p>The compiler flagging for numbers are widely known for these:</p> <pre><code>Decimal = M Float = F Double = D // for example double d = 30D; </code></pre> <p>However these are more obscure:</p> <pre><code>Long = L Unsigned Long = UL Unsigned Int = U </code></pre> http://stackoverflow.com/questions/1412863/how-do-i-view-the-sql-generated-by-the-entity-framework/1412902#1412902 1 Answer by Nick Berardi for How do I view the SQL generated by the entity framework ? Nick Berardi 2009-09-11T19:42:21Z 2009-09-11T19:42:21Z <p>You can do the following:</p> <pre><code>var result = from x in appEntities where x.id = 32 select x; var sql = ((System.Data.Objects.ObjectQuery)result).ToTraceString(); </code></pre> <p>That will give you the SQL that was generated.</p> http://stackoverflow.com/questions/1405662/what-is-the-hql-equivalent-of-this-sql/1405705#1405705 1 Answer by Nick Berardi for What is the HQL equivalent of this SQL Nick Berardi 2009-09-10T14:42:19Z 2009-09-10T14:42:19Z <p>It would depend on what your entities are and what the primary object you care about is. You seem to be pulling them all instead of just one entity. I am going to assume Group is the entity from this example</p> <pre><code>from MyApp.Entities.Group as g join fetch g.Users as u join fetch g.Activity as a where u.Id = :userId and a.Lineage like '?%' </code></pre> <p>That should get you started. But with out knowing your structure, I am taking a shot in the dark.</p> http://stackoverflow.com/questions/1403083/c-strip-illegal-chars-from-a-filename-string/1403102#1403102 4 Answer by Nick Berardi for C#: Strip Illegal Chars from a filename string. Nick Berardi 2009-09-10T02:29:39Z 2009-09-10T02:37:31Z <p>What do you mean by it won't do anything? I ran the following in a console application:</p> <pre><code>string name = ";;;'']][[ zion \\\\[[[]]]"; char[] invalidChars = System.IO.Path.GetInvalidPathChars(); string invalidString = Regex.Escape(new string(invalidChars)); string valid = Regex.Replace(name, "[" + invalidString + "]", ""); Console.WriteLine(valid); </code></pre> <p>By the way your syntax was wrong, you had some unescaped characters and you were missing a semi-colon.</p> <p>And I got the following result.</p> <pre><code>;;;'']][[ zion \\[[[]]] </code></pre> <p>Which is the correct result. Maybe you should ask a new question about what you are trying to do because your current approach seems to indicate that you don't have a strong understanding of Regex.</p> <p><strong>Update</strong>: Are you trying to check files names? If so you probably want to use:</p> <pre><code>System.IO.Path.GetInvalidFileNameChars(); </code></pre> <p><strong>Update</strong>: Here is a list of invalid characters that comes from that method <code>GetInvalidPathChars()</code></p> <pre><code>RealInvalidPathChars = new char[] { '"', '&lt;', '&gt;', '|', '\0', '\x0001', '\x0002', '\x0003', '\x0004', '\x0005', '\x0006', '\a', '\b', '\t', '\n', '\v', '\f', '\r', '\x000e', '\x000f', '\x0010', '\x0011', '\x0012', '\x0013', '\x0014', '\x0015', '\x0016', '\x0017', '\x0018', '\x0019', '\x001a', '\x001b', '\x001c', '\x001d', '\x001e', '\x001f' }; </code></pre> <p>So basically the following are invalid path characters might include ASCII/Unicode characters 1 through 31, as well as quote ("), less than (&lt;), greater than (>), pipe (|), backspace (\b), null (\0) and tab (\t).</p> <p>None of which seem to occur in your original string.</p> http://stackoverflow.com/questions/1394516/asp-net-day-render-issue/1394551#1394551 0 Answer by Nick Berardi for ASP.NET Day Render Issue Nick Berardi 2009-09-08T15:09:08Z 2009-09-08T15:09:08Z <p>The event you are using is called <code>DayRender</code> it happens when each Day is rendered. I am also not quite sure what your web service is doing, but if you don't want it called each time. Move the call outside of the event and store it as a local field. You can do it on <code>Page_Init</code> to have it be called before you controls are rendered.</p> http://stackoverflow.com/questions/1697880/problem-with-urlrewritingnet Comment by Nick Berardi on Problem with UrlRewritingNet Nick Berardi 2009-11-09T01:18:54Z 2009-11-09T01:18:54Z What version of IIS? 6 or 7? Also can you explain the h_t_t_p and how that helps anything? http://stackoverflow.com/questions/1677516/c-int-parse-issue-with-leading-zeros/1677522#1677522 Comment by Nick Berardi on C# int.parse issue with leading zeros Nick Berardi 2009-11-05T00:10:51Z 2009-11-05T00:10:51Z @Robert according to reflector they both are exactly the same. http://stackoverflow.com/questions/1677516/c-int-parse-issue-with-leading-zeros/1677522#1677522 Comment by Nick Berardi on C# int.parse issue with leading zeros Nick Berardi 2009-11-05T00:10:13Z 2009-11-05T00:10:13Z It doesn't, it uses int.Parse(value, CultureInfo.CurrentCulture), in the exact same way. http://stackoverflow.com/questions/778607/returnurl-in-asp-net-mvc/778648#778648 Comment by Nick Berardi on ReturnUrl in ASP.NET MVC Nick Berardi 2009-11-04T02:44:48Z 2009-11-04T02:44:48Z This works fine, the original post mis-analysed what was happening. http://stackoverflow.com/questions/1632586/how-to-replace-multiple-different-chars-with-white-space/1632601#1632601 Comment by Nick Berardi on How to replace multiple different chars with white space? Nick Berardi 2009-10-27T18:01:37Z 2009-10-27T18:01:37Z No I think you have them correct. http://stackoverflow.com/questions/1632586/how-to-replace-multiple-different-chars-with-white-space/1632594#1632594 Comment by Nick Berardi on How to replace multiple different chars with white space? Nick Berardi 2009-10-27T18:00:38Z 2009-10-27T18:00:38Z actually I think you mean. @&quot;[\\/:*\?\&lt;\&gt;\|]&quot;, because many of those characters are Reg Ex control characters. http://stackoverflow.com/questions/1386521/how-to-implement-url-routing-with-php-iis Comment by Nick Berardi on How to Implement URL Routing with PHP + IIS? Nick Berardi 2009-10-22T13:40:04Z 2009-10-22T13:40:04Z Which version of IIS are you using 7.0 or 6.0. It makes a difference for the best answer. http://stackoverflow.com/questions/1602734/is-there-an-equivalent-to-date-in-as3 Comment by Nick Berardi on Is there an equivalent to __DATE__ in AS3? Nick Berardi 2009-10-21T18:45:12Z 2009-10-21T18:45:12Z <code>&#95;&#95;TIME&#95;&#95;</code> and <code>&#95;&#95;DATE&#95;&#95;</code> are stubs in the old action script 2 language that would be filled in by the system at runtime. http://stackoverflow.com/questions/1566934/is-code-access-security-of-any-real-world-use/1567034#1567034 Comment by Nick Berardi on Is “Code Access Security” of any real world use? Nick Berardi 2009-10-14T17:36:36Z 2009-10-14T17:36:36Z Also the fact that you are putting it in the GAC to avoid the CAS, is just a setting of that machine. You can infact say that everything in the GAC or certain assemblies in the GAC should be treated as medium trust. http://stackoverflow.com/questions/1566934/is-code-access-security-of-any-real-world-use/1567034#1567034 Comment by Nick Berardi on Is “Code Access Security” of any real world use? Nick Berardi 2009-10-14T17:34:03Z 2009-10-14T17:34:03Z What do you mean consider it? I was commenting on the fact that you some how equated putting an assembly in the GAC to not needing CAS. I still don't understand your comment, because it seems to be only an isolated knowledge dump pertaining to a certain practice for deploying Sharepoint sites in a way to avoid the CAS. None of which answers the original posters question. http://stackoverflow.com/questions/1566934/is-code-access-security-of-any-real-world-use/1567034#1567034 Comment by Nick Berardi on Is “Code Access Security” of any real world use? Nick Berardi 2009-10-14T15:57:54Z 2009-10-14T15:57:54Z I don't understand your comment about how CAS and GAC are related. Because one is a cache of global assemblies and the other is code access security. Are you just saying that when registered in the GAC it is considered trusted so you don't have to worry about CAS? Because that is not really the purpose of CAS. http://stackoverflow.com/questions/1507105/how-can-we-convince-google-to-allow-jon-skeet-to-accept-a-microsoft-mvp-award Comment by Nick Berardi on How can we convince Google to allow Jon Skeet to accept a Microsoft MVP award? Nick Berardi 2009-10-01T23:59:14Z 2009-10-01T23:59:14Z Come on people bring this one back alive, it is Skeet we are talking about. http://stackoverflow.com/questions/1507105/how-can-we-convince-google-to-allow-jon-skeet-to-accept-a-microsoft-mvp-award Comment by Nick Berardi on How can we convince Google to allow Jon Skeet to accept a Microsoft MVP award? Nick Berardi 2009-10-01T23:58:31Z 2009-10-01T23:58:31Z Sure it is Jon Skeet == Programming or at least he should. The #1 contributor to Stackoverflow has to mean something. http://stackoverflow.com/questions/1498270/mvc-url-rewritting-somthing-like-http-controller-website-com/1498901#1498901 Comment by Nick Berardi on MVC url Rewritting somthing like http://controller.website.com Nick Berardi 2009-10-01T23:48:53Z 2009-10-01T23:48:53Z Yeah you just need to wrap the proper configuration rules around the rewrite rule. You may want to try including the mod_rewrite change rule [C] which says if any one of the rules fail they all fail in the chain. http://stackoverflow.com/questions/1472338/parsing-impossible-dates-in-c/1472363#1472363 Comment by Nick Berardi on Parsing impossible dates in C# Nick Berardi 2009-09-24T16:18:05Z 2009-09-24T16:18:05Z Well there is always the option of making your own Calendar based off the Gregorian Calendar, to handle date overflows... <a href="http://msdn.microsoft.com/en-us/library/system.globalization.gregoriancalendar.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> However for this situation it is probably overkill. Or you might also be able to create your own IFormatProvider to handle what Jon suggested under the covers.