User Tim Boland - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:10:03Z http://stackoverflow.com/feeds/user/70 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/206441/online-code-beautifier-and-formatter 9 Online Code Beautifier And Formatter Tim Boland 2008-10-15T20:54:44Z 2009-11-25T18:32:08Z <p>What are the best online Code Beautifier And Formatter out there? I'm not asking for highlighters. Any language will do.</p> http://stackoverflow.com/questions/136782/format-mysql-datetime-with-php 1 Format mysql datetime with php Tim Boland 2008-09-25T23:10:30Z 2009-11-21T19:12:50Z <p>Column in mysql database named CreateDate, need to format to mm/dd/yy H:M (AM/PM) with PHP syntax</p> http://stackoverflow.com/questions/1235721/asp-net-profile-trace-framework 0 ASP.NET Profile/Trace Framework Tim Boland 2009-08-05T21:00:02Z 2009-10-09T07:00:04Z <p>I'm looking for a ASP.NET module that will benchmark results, session, sql queries &amp; other stuff &amp; spit out on the page. I know Trace will give you some of that but not the sql part. I know Jeff had something similar for alpha stackoverflow, just wondering if there was a http module already out there that did this.</p> <p>Similar to CodeIgniter profile class = The Profiler Class will display benchmark results, queries you have run, and $_POST data at the bottom of your pages. This information can be useful during development in order to help with debugging and optimization.</p> <p><a href="http://codeigniter.com/user%5Fguide/general/profiling.html" rel="nofollow">http://codeigniter.com/user_guide/general/profiling.html</a></p> http://stackoverflow.com/questions/1127143/urlencode-all-querystring-parameters 1 urlencode all querystring parameters Tim Boland 2009-07-14T18:30:38Z 2009-07-14T19:00:15Z <p>Is there a way to url encode the entire URL querystring without trying to urlencode each individual querystring parameters. Right now I'm having to rebuild the querystring with something like this:</p> <pre><code>foreach (string x in Page.Request.QueryString.Keys) { sQueryString += x + "=" + Server.UrlEncode(Request.Params.Get(x)) + "&amp;"; } </code></pre> http://stackoverflow.com/questions/1041840/yuicompressor-error-not-sure-what-is-wrong/1106145#1106145 0 Answer by Tim Boland for yuicompressor error, not sure what is wrong? Tim Boland 2009-07-09T20:00:25Z 2009-07-09T20:00:25Z <p>Your encoding of the actual file YUICompressor is acting on is the issue. Open the file in notepad++ and change to ANSI &amp; it should work.</p> <p>[<a href="http://extjs.com/forum/showthread.php?t=27732" rel="nofollow">http://extjs.com/forum/showthread.php?t=27732</a>][1]</p> http://stackoverflow.com/questions/582146/free-form-date-picker-like-rtm 2 Free-Form Date Picker - like RTM Tim Boland 2009-02-24T15:17:25Z 2009-02-24T15:31:24Z <p>I'm looking for a way to have a textbox that allows users to type in a date in any format and turns around and formats that date in a 'mm/dd/yyyy' format. So the user could type in "Today" and it would turn the date as 02/24/2009 or they could type in Wednesday Feb 24 and formatting would automatically pick up. Remember the Milk does this (but I believe server side). This is asp.net so I could do via ajax web service call but I would prefer to do this via Javascript. I'm looking for a general technique or existing library to help with this.</p> http://stackoverflow.com/questions/528820/what-css-properties-can-be-applied-to-which-html-elements 2 What CSS properties can be applied to which HTML elements Tim Boland 2009-02-09T16:22:07Z 2009-02-10T15:04:38Z <p>I'm looking for a source/spec that can tell me what CSS properties can applied to which HTML elements. For instance, the css property; "overflow". I know I can apply this to div, p, textarea but what other elements can I apply this too? Is there a spec somewhere I can reference?</p> http://stackoverflow.com/questions/381873/rebinding-gridview-using-linqdatasource 1 Rebinding GridView using LinqDataSource Tim Boland 2008-12-19T18:59:33Z 2009-01-29T21:29:04Z <p>I have a gridview that is using a LinqDataSource for it's datasource. I've added a FooterTemplate so users can insert new records. The Add Button has a command name that puts the values in a Dictionary list and then calls the LinqDataSource.Insert() method. This works fine. But the gridview never refreshes automatically with the new row. I'm using the LinqDataSource.Selecting event to initially bind the data. I've tried LinqDataSource.Bind() and GridView.Bind() but the gridview is never refreshed. Any idea how to get the GridView to rebind?</p> <p>Note: I'm not using an UpdateDate panel, simple postback/refresh no ajax</p> http://stackoverflow.com/questions/381873/rebinding-gridview-using-linqdatasource/382027#382027 0 Answer by Tim Boland for Rebinding GridView using LinqDataSource Tim Boland 2008-12-19T19:50:49Z 2008-12-19T19:50:49Z <p>Once solution that worked was to:</p> <ul> <li>Add logic to define DataSourceID for GridView in CodeBehind</li> <li>Call function after Insert() method</li> </ul> http://stackoverflow.com/questions/318816/multiple-different-authentication-settings-in-web-config 0 Multiple/Different authentication settings in web.config Tim Boland 2008-11-25T20:54:02Z 2008-11-26T10:36:43Z <p>How would I go about setting different authentication tags for different parts of my web app? Say I have:</p> <pre><code>/ /folder1/ /folder2/ </code></pre> <p>Would it be possible to specify different <code>&lt;authentication/&gt;</code> tags for each folder?</p> <p>I want folder1 to use Windows authentication but folder2 use Forms authentication. </p> <p>I tried doing in a <code>&lt;location/&gt;</code> tag but it doesn't look like you can have <code>&lt;authentication/&gt;</code> tags in a <code>&lt;location/&gt;</code> tags, at least not via VS 2008 with it's built in webserver.</p> <p>This errors out saying - Error 3 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. </p> <pre><code>&lt;location path="/folder1"&gt; &lt;system.web&gt; &lt;authentication mode="Forms" /&gt; &lt;authorization&gt; &lt;deny users="?"/&gt; &lt;/authorization&gt; &lt;/system.web&gt; &lt;/location&gt; </code></pre> http://stackoverflow.com/questions/273356/best-process-to-change-over-plain-html-pages-to-asp-net-aspx-pages/273403#273403 -2 Answer by Tim Boland for Best "process" to change over plain HTML pages to ASP .NET aspx pages? Tim Boland 2008-11-07T19:48:52Z 2008-11-07T19:48:52Z <p>Changing over to aspx should not break any SEO</p> http://stackoverflow.com/questions/136782/format-mysql-datetime-with-php/136872#136872 3 Answer by Tim Boland for Format mysql datetime with php Tim Boland 2008-09-25T23:30:09Z 2008-09-25T23:30:09Z <p>This worked the best for me:</p> <pre><code>$datetime = strtotime($row-&gt;createdate); $mysqldate = date("m/d/y g:i A", $datetime); </code></pre> http://stackoverflow.com/questions/128349/string-format-date-c-or-vb-net 0 String Format Date - C# or VB.NET Tim Boland 2008-09-24T16:56:48Z 2008-09-24T17:00:01Z <p>Date coming out of a database, need to format as "mm/dd/yy"</p> <pre><code>For Each dr as DataRow in ds.Tables(0).Rows Response.Write(dr("CreateDate")) Next </code></pre> http://stackoverflow.com/questions/96759/how-do-i-sort-a-multidimensional-array-in-php/96845#96845 0 Answer by Tim Boland for How do I sort a multidimensional array in php Tim Boland 2008-09-18T20:54:06Z 2008-09-18T20:54:06Z <p>I prefer to use array_multisort <a href="http://us2.php.net/manual/en/function.array-multisort.php" rel="nofollow">http://us2.php.net/manual/en/function.array-multisort.php</a></p> http://stackoverflow.com/questions/74847/php-errorreporting-best-setting-for-development-estrict/74864#74864 0 Answer by Tim Boland for Php error_reporting, Best setting for development? E_STRICT ? Tim Boland 2008-09-16T17:34:45Z 2008-09-16T17:34:45Z <p>ini_set("display_errors","2"); ERROR_REPORTING(E_ALL);</p> http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use/74789#74789 1 Answer by Tim Boland for What bug tracking software do you use? Tim Boland 2008-09-16T17:25:26Z 2008-09-16T17:25:26Z <p>TestTrack Pro - cross platform, customizable.</p> <p><a href="http://www.seapine.com" rel="nofollow">http://www.seapine.com</a></p> http://stackoverflow.com/questions/11857/what-do-you-use-as-a-good-alternative-to-team-system/74738#74738 1 Answer by Tim Boland for What do you use as a good alternative to Team System? Tim Boland 2008-09-16T17:20:08Z 2008-09-16T17:20:08Z <p>Seapine CM - Cross platform issue management and version control</p> <p><a href="http://www.seapine.com" rel="nofollow">http://www.seapine.com</a></p> http://stackoverflow.com/questions/66156/whose-data-access-layer-do-you-use-for-net/66193#66193 1 Answer by Tim Boland for Whose Data Access Layer do you use for .NET? Tim Boland 2008-09-15T19:49:06Z 2008-09-15T19:49:06Z <p>Stick with what you got. DAL typically work for regular "normal" architecture but fall down when you don't fit the model.</p> http://stackoverflow.com/questions/1409/bandwith-throttling-in-iis-6-by-ip-address/1429#1429 1 Answer by Tim Boland for Bandwith throttling in IIS 6 by IP Address Tim Boland 2008-08-04T17:14:28Z 2008-08-04T17:14:28Z <p>Simple answer for IIS 6 is no. Take a look at this for a possible way to do something similar in IIS 7. </p> <p><a href="http://www.hanselman.com/blog/SqueezingTheMostOutOfIIS7MediaBitRateThrottling.aspx" rel="nofollow">http://www.hanselman.com/blog/SqueezingTheMostOutOfIIS7MediaBitRateThrottling.aspx</a></p> http://stackoverflow.com/questions/588/best-way-to-access-exchange-using-php/1415#1415 1 Answer by Tim Boland for Best way to access Exchange using PHP ? Tim Boland 2008-08-04T17:00:40Z 2008-08-04T17:00:40Z <p>I would look into IMAP</p> <p>http://us3.php.net/imap</p> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/259#259 2 Answer by Tim Boland for How do I programmatically create a PDF in my .NET application? Tim Boland 2008-08-01T23:20:07Z 2008-08-01T23:20:07Z <p>Here is a nice list of commercial solutions: <a href="http://www.411asp.net/home/assembly/document/pdf" rel="nofollow">http://www.411asp.net/home/assembly/document/pdf</a></p> http://stackoverflow.com/questions/146/how-do-i-track-file-downloads-with-apache-php/158#158 4 Answer by Tim Boland for How do I track file downloads with apache/PHP Tim Boland 2008-08-01T17:51:55Z 2008-08-01T17:51:55Z <p>Use your httpd log files. Install http://awstats.sourceforge.net/</p> http://stackoverflow.com/questions/1127143/urlencode-all-querystring-parameters/1127199#1127199 Comment by Tim Boland on urlencode all querystring parameters Tim Boland 2009-07-14T18:53:35Z 2009-07-14T18:53:35Z There is no .Query but this seems to work perfectly: Page.Request.Url.AbsoluteUri http://stackoverflow.com/questions/582146/free-form-date-picker-like-rtm/582189#582189 Comment by Tim Boland on Free-Form Date Picker - like RTM Tim Boland 2009-02-24T15:46:03Z 2009-02-24T15:46:03Z Perfect - Thanks http://stackoverflow.com/questions/582146/free-form-date-picker-like-rtm Comment by Tim Boland on Free-Form Date Picker - like RTM Tim Boland 2009-02-24T15:45:33Z 2009-02-24T15:45:33Z In case someone wanted to edit my stuff http://stackoverflow.com/questions/318816/multiple-different-authentication-settings-in-web-config/320255#320255 Comment by Tim Boland on Multiple/Different authentication settings in web.config Tim Boland 2008-11-26T21:02:24Z 2008-11-26T21:02:24Z Right, but it seems like in VS2008 debugger, it can't treat these subfolders as application folders, I'll need to test out by pushing to an IIS server http://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheap/6829#6829 Comment by Tim Boland on Any good PHP IDE, preferably free or cheap? Tim Boland 2008-11-07T21:14:03Z 2008-11-07T21:14:03Z But eclipse is super slow compared to notepad++ http://stackoverflow.com/questions/206441/online-code-beautifier-and-formatter/206452#206452 Comment by Tim Boland on Online Code Beautifier And Formatter Tim Boland 2008-10-15T20:57:57Z 2008-10-15T20:57:57Z Yes, that is a great tool http://stackoverflow.com/questions/136782/format-mysql-datetime-with-php/136802#136802 Comment by Tim Boland on Format mysql datetime with php Tim Boland 2008-09-25T23:31:20Z 2008-09-25T23:31:20Z See below for what worked best for me: http://stackoverflow.com/questions/136782/format-mysql-datetime-with-php/136801#136801 Comment by Tim Boland on Format mysql datetime with php Tim Boland 2008-09-25T23:21:58Z 2008-09-25T23:21:58Z The question says datetime