User Tim Boland - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:10:03Zhttp://stackoverflow.com/feeds/user/70http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/206441/online-code-beautifier-and-formatter9Online Code Beautifier And FormatterTim Boland2008-10-15T20:54:44Z2009-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-php1Format mysql datetime with phpTim Boland2008-09-25T23:10:30Z2009-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-framework0ASP.NET Profile/Trace FrameworkTim Boland2009-08-05T21:00:02Z2009-10-09T07:00:04Z
<p>I'm looking for a ASP.NET module that will benchmark results, session, sql queries & other stuff & 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-parameters1urlencode all querystring parametersTim Boland2009-07-14T18:30:38Z2009-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)) + "&";
}
</code></pre>
http://stackoverflow.com/questions/1041840/yuicompressor-error-not-sure-what-is-wrong/1106145#11061450Answer by Tim Boland for yuicompressor error, not sure what is wrong?Tim Boland2009-07-09T20:00:25Z2009-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 & 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-rtm2Free-Form Date Picker - like RTMTim Boland2009-02-24T15:17:25Z2009-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-elements2What CSS properties can be applied to which HTML elementsTim Boland2009-02-09T16:22:07Z2009-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-linqdatasource1Rebinding GridView using LinqDataSourceTim Boland2008-12-19T18:59:33Z2009-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#3820270Answer by Tim Boland for Rebinding GridView using LinqDataSourceTim Boland2008-12-19T19:50:49Z2008-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-config0Multiple/Different authentication settings in web.configTim Boland2008-11-25T20:54:02Z2008-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><authentication/></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><location/></code> tag but it doesn't look like you can have <code><authentication/></code> tags in a <code><location/></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><location path="/folder1">
<system.web>
<authentication mode="Forms" />
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
</code></pre>
http://stackoverflow.com/questions/273356/best-process-to-change-over-plain-html-pages-to-asp-net-aspx-pages/273403#273403-2Answer by Tim Boland for Best "process" to change over plain HTML pages to ASP .NET aspx pages?Tim Boland2008-11-07T19:48:52Z2008-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#1368723Answer by Tim Boland for Format mysql datetime with phpTim Boland2008-09-25T23:30:09Z2008-09-25T23:30:09Z<p>This worked the best for me:</p>
<pre><code>$datetime = strtotime($row->createdate);
$mysqldate = date("m/d/y g:i A", $datetime);
</code></pre>
http://stackoverflow.com/questions/128349/string-format-date-c-or-vb-net0String Format Date - C# or VB.NETTim Boland2008-09-24T16:56:48Z2008-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#968450Answer by Tim Boland for How do I sort a multidimensional array in phpTim Boland2008-09-18T20:54:06Z2008-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#748640Answer by Tim Boland for Php error_reporting, Best setting for development? E_STRICT ?Tim Boland2008-09-16T17:34:45Z2008-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#747891Answer by Tim Boland for What bug tracking software do you use?Tim Boland2008-09-16T17:25:26Z2008-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#747381Answer by Tim Boland for What do you use as a good alternative to Team System?Tim Boland2008-09-16T17:20:08Z2008-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#661931Answer by Tim Boland for Whose Data Access Layer do you use for .NET?Tim Boland2008-09-15T19:49:06Z2008-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#14291Answer by Tim Boland for Bandwith throttling in IIS 6 by IP AddressTim Boland2008-08-04T17:14:28Z2008-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#14151Answer by Tim Boland for Best way to access Exchange using PHP ?Tim Boland2008-08-04T17:00:40Z2008-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#2592Answer by Tim Boland for How do I programmatically create a PDF in my .NET application?Tim Boland2008-08-01T23:20:07Z2008-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#1584Answer by Tim Boland for How do I track file downloads with apache/PHPTim Boland2008-08-01T17:51:55Z2008-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#1127199Comment by Tim Boland on urlencode all querystring parametersTim Boland2009-07-14T18:53:35Z2009-07-14T18:53:35ZThere is no .Query but this seems to work perfectly: Page.Request.Url.AbsoluteUrihttp://stackoverflow.com/questions/582146/free-form-date-picker-like-rtm/582189#582189Comment by Tim Boland on Free-Form Date Picker - like RTMTim Boland2009-02-24T15:46:03Z2009-02-24T15:46:03ZPerfect - Thanks
http://stackoverflow.com/questions/582146/free-form-date-picker-like-rtmComment by Tim Boland on Free-Form Date Picker - like RTMTim Boland2009-02-24T15:45:33Z2009-02-24T15:45:33ZIn case someone wanted to edit my stuffhttp://stackoverflow.com/questions/318816/multiple-different-authentication-settings-in-web-config/320255#320255Comment by Tim Boland on Multiple/Different authentication settings in web.configTim Boland2008-11-26T21:02:24Z2008-11-26T21:02:24ZRight, 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 serverhttp://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheap/6829#6829Comment by Tim Boland on Any good PHP IDE, preferably free or cheap?Tim Boland2008-11-07T21:14:03Z2008-11-07T21:14:03ZBut eclipse is super slow compared to notepad++http://stackoverflow.com/questions/206441/online-code-beautifier-and-formatter/206452#206452Comment by Tim Boland on Online Code Beautifier And FormatterTim Boland2008-10-15T20:57:57Z2008-10-15T20:57:57ZYes, that is a great toolhttp://stackoverflow.com/questions/136782/format-mysql-datetime-with-php/136802#136802Comment by Tim Boland on Format mysql datetime with phpTim Boland2008-09-25T23:31:20Z2008-09-25T23:31:20ZSee below for what worked best for me:http://stackoverflow.com/questions/136782/format-mysql-datetime-with-php/136801#136801Comment by Tim Boland on Format mysql datetime with phpTim Boland2008-09-25T23:21:58Z2008-09-25T23:21:58ZThe question says datetime