<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>Scott Rozman's Blog</title>
    <description>latest blog posts from scottrozman.net</description>
    <link>http://scottrozman.net/Blog.aspx</link>
    <docs>http://backend.userland.com/rss</docs>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ScottRozmansBlog" /><feedburner:info uri="scottrozmansblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
      <title>Continuous Integration and Version Control</title>
      <description>&lt;p&gt;Looking into these two issues and here are some resources.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.stevetrefethen.com/videos/Continuous Integration.ashx" title="view Camtasia video"&gt;Video of using CruiseControl.NET and SVN&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="http://sourceforge.net/projects/ccnet/" title="go to website"&gt;SourceForge page for CruiseControl.NET&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="http://www.cruisecontrolnet.org/projects/ccnet" title="go to website"&gt;Homepage for CruiseControl.NET&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/1vWct5QVmUQ" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/1vWct5QVmUQ/Continuous_Integration_and_Version_Control.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/12-02-09/Continuous_Integration_and_Version_Control.aspx</comments>
      <guid isPermaLink="false">b9e69493-05dd-479e-bd77-3b768fba7596</guid>
      <pubDate>Thu, 09 Feb 2012 23:32:15 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/12-02-09/Continuous_Integration_and_Version_Control.aspx</feedburner:origLink></item>
    <item>
      <title>SQL Instance Connection String Issues</title>
      <description>&lt;p&gt;Recently, we have started moving our MSSQL production databases to another server which has multiple instances of SQL server.&lt;/p&gt; &lt;p&gt;I've been trying to get things to connect from a .NET web app with little success.&lt;/p&gt; &lt;p&gt;I found a great blog post which has been updated over time to include more details regarding the exact issue I've encountered.&lt;/p&gt; &lt;p&gt;&lt;a href="http://blogs.msdn.com/b/sql_protocols/archive/2007/05/13/sql-network-interfaces-error-26-error-locating-server-instance-specified.aspx" title="view blog post"&gt;http://blogs.msdn.com/b/sql_protocols/archive/2007/05/13/sql-network-interfaces-error-26-error-locating-server-instance-specified.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;One potential issue is with the port used to communicate between the web and SQL server. Instances tend to use dynamic port allocations, so setting up a static port is sometimes advisable:&lt;/p&gt; &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/ms345327.aspx" title="view technet document"&gt;http://technet.microsoft.com/en-us/library/ms345327.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;I also downloaded PortQryV2, referenced in the first link and that confirmed "UDP port 1434 is LISTENING" and also sent back a listing of all of the SQL instances with the TCP ports they are using.&lt;/p&gt; &lt;p&gt;Lastly, there is the actual connection string. I am trying to connect to a Sitefinity database, so my connection string sits in the DataConfig.config file. However, as a starting point for troubleshooting, I have been working with a static page sitting in the root of the site which just tries to establish a connection to the database through the codefile. If the page loads with no errors, I'm happy.&lt;/p&gt; &lt;p&gt;I am on SQL Server 2005, so have been referencing this for connection string format.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.connectionstrings.com/sql-server-2005" title="go to website"&gt;http://www.connectionstrings.com/sql-server-2005&lt;/a&gt;&lt;/p&gt; &lt;p&gt;The idea of creating a page which just connects to the db was from forums on Sitefinity.com.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.sitefinity.com/devnet/forums/sitefinity-4-x/general-discussions/openaccessexception.aspx" title="view forum thread"&gt;http://www.sitefinity.com/devnet/forums/sitefinity-4-x/general-discussions/openaccessexception.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Finally, I've got something working...&lt;/p&gt; &lt;p&gt;It turns out that if you use the specific port number for the SQL instance, you do not include the name of that instance in the connection string, so I've been able to connect by just including the port number of my instance... now to confirm that the port number will remain the same!&lt;/p&gt; &lt;p&gt;Another helpful article with many examples of connection strings here:&lt;/p&gt; &lt;p&gt;&lt;a href="http://weblogs.sqlteam.com/dang/archive/2011/07/10/sql-server-connection-strings.aspx" title="view article"&gt;http://weblogs.sqlteam.com/dang/archive/2011/07/10/sql-server-connection-strings.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;br /&gt; &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/lC1USIMkOs8" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/lC1USIMkOs8/SQL_Instance_Connection_String_Issues.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/12-02-08/SQL_Instance_Connection_String_Issues.aspx</comments>
      <guid isPermaLink="false">d708e683-7a9b-44be-b036-89941e8eddc0</guid>
      <pubDate>Wed, 08 Feb 2012 16:47:24 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/12-02-08/SQL_Instance_Connection_String_Issues.aspx</feedburner:origLink></item>
    <item>
      <title>Sending email from PHP on IIS</title>
      <description>&lt;a href="http://learn.iis.net/page.aspx/751/configure-smtp-e-mail-in-iis-7-and-above/"&gt;http://learn.iis.net/page.aspx/751/configure-smtp-e-mail-in-iis-7-and-above/&lt;/a&gt; &lt;p&gt;&lt;br /&gt; &lt;/p&gt; &lt;p&gt;It seems that if you are sending to a server other than the LocalHost, you can configure just via the PHP.ini.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/9P5hDFz2JzE" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/9P5hDFz2JzE/Sending_email_from_PHP_on_IIS.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/12-01-12/Sending_email_from_PHP_on_IIS.aspx</comments>
      <guid isPermaLink="false">bfb23ced-98f2-4551-b0cb-7846ef188280</guid>
      <pubDate>Thu, 12 Jan 2012 16:54:55 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/12-01-12/Sending_email_from_PHP_on_IIS.aspx</feedburner:origLink></item>
    <item>
      <title>Setting Anonymous User to App Pool Identity</title>
      <description>&lt;p&gt;Great video which explains a lot about users and IIS7.&lt;/p&gt; &lt;p&gt;&lt;a href="http://dotnetslackers.com/articles/iis/Securing-IIS-Thwarting-the-Hacker-Week-23.aspx"&gt;http://dotnetslackers.com/articles/iis/Securing-IIS-Thwarting-the-Hacker-Week-23.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Following the instructions on this site:&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.bluevalleytech.com/techtalk/blog/assigning-ntfs-folder-permission-to-iis7-application-pools/"&gt;http://www.bluevalleytech.com/techtalk/blog/assigning-ntfs-folder-permission-to-iis7-application-pools/&lt;/a&gt;&lt;/p&gt; &lt;p&gt;I did not find that typing "IIS APPPOOL\mypoolname" worked.&lt;/p&gt; &lt;p&gt;Using ICACLS put the user into the list and then I could adjust permissions as needed with the GUI.&lt;/p&gt; &lt;p&gt;From the command prompt, I moved to the directory containing a directory that needed the updated permissions. Then I ran:&lt;/p&gt; &lt;p&gt;&lt;strong&gt;ICACLS wwwroot /grant "IIS APPPOOL\mypoolname":RX&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;* note that having a space in from of the ":" gives an invalid parameter message&lt;/p&gt; &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc753525(WS.10).aspx"&gt;http://technet.microsoft.com/en-us/library/cc753525(WS.10).aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://salvoz.com/blog/2010/02/02/using-icacls-to-set-permissions-for-apppoolidentities-in-iis-7-5/"&gt;http://salvoz.com/blog/2010/02/02/using-icacls-to-set-permissions-for-apppoolidentities-in-iis-7-5/&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/FNY8kgETwCc" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/FNY8kgETwCc/Setting_Anonymous_User_to_App_Pool_Identity.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-12-15/Setting_Anonymous_User_to_App_Pool_Identity.aspx</comments>
      <guid isPermaLink="false">b4412afd-7296-48c7-a459-fa0583076106</guid>
      <pubDate>Thu, 15 Dec 2011 19:38:20 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-12-15/Setting_Anonymous_User_to_App_Pool_Identity.aspx</feedburner:origLink></item>
    <item>
      <title>SWFObject in Sitefinity</title>
      <description>&lt;p&gt;Here are some links:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="http://nooshu.com/swfobject-2-2-and-wmode-transparent/"&gt;http://nooshu.com/swfobject-2-2-and-wmode-transparent/&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://blog.deconcept.com/swfobject/"&gt;http://blog.deconcept.com/swfobject/&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.codingforums.com/showthread.php?t=137848"&gt;http://www.codingforums.com/showthread.php?t=137848&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.bobbyvandersluis.com/swfobject/generator/index.html"&gt;http://www.bobbyvandersluis.com/swfobject/generator/index.html&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://code.google.com/p/swfobject/"&gt;SWFObject Project on Google Code&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://bytes.com/topic/javascript/answers/624331-dynamically-loading-swf-innerhtml"&gt;http://bytes.com/topic/javascript/answers/624331-dynamically-loading-swf-innerhtml&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://www.adobe.com/devnet/flashplayer/articles/alternative_content.html"&gt;http://www.adobe.com/devnet/flashplayer/articles/alternative_content.html&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://animation.about.com/od/flashanimationtutorials/ss/flashwmode_3.htm"&gt;http://animation.about.com/od/flashanimationtutorials/ss/flashwmode_3.htm&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/sME1AVG9bzo" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/sME1AVG9bzo/SWFObject_in_Sitefinity.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-11-11/SWFObject_in_Sitefinity.aspx</comments>
      <guid isPermaLink="false">263a0ff2-9aab-48d5-b81f-78d5a9d1303b</guid>
      <pubDate>Fri, 11 Nov 2011 15:07:00 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-11-11/SWFObject_in_Sitefinity.aspx</feedburner:origLink></item>
    <item>
      <title>Sitefinity 4.x Script Management</title>
      <description>&lt;p&gt;Today, I was troubleshooting a widget that I created which uses jQuery with the popeye plugin. My masterpage had a reference to a copy of jQuery that I am hosting on a static domain referenced by multiple websites... like using a CDN, but just have a single server.&lt;/p&gt; &lt;p&gt;When in the backend of Sitefinity, they are using jQuery, so there was a conflict loading multiple copies of jQuery and my widget would not display.&lt;/p&gt; &lt;p&gt;See this &lt;a href="http://www.sitefinity.com/devnet/forums/sitefinity-4-x/sdk/jquery-in-firefox.aspx" title="view forum post"&gt;jQuery in Firefox&lt;/a&gt; forum thread on Sitefinity.com&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;I've decided to reference Sitefinity's copy of jQuery instead, but now the order my scripts were loading is incorrectly. I had been using the asp:Scriptmanager, but doing that seems to result in those scripts loading before the Sitefinity scripts.&lt;/p&gt; &lt;p&gt;I know that sf:ResourceLinks can be used to load local paths as well, but I do not believe that I can load things from my static domain.&lt;/p&gt; &lt;p&gt;Sitefinity's script widget offers the ability to load scripts from another domain and to decide when they load (head, within content, before closing body tag), but I would rather not drag on multiple widgets for a single area of content, since each of those script widgets will show up visually in the back-end.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/h6LtKUkPniU" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/h6LtKUkPniU/Sitefinity_4_x_Script_Management.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-11-04/Sitefinity_4_x_Script_Management.aspx</comments>
      <guid isPermaLink="false">2dc9dab7-2aa7-434d-bbf5-b2e78553be4e</guid>
      <pubDate>Fri, 04 Nov 2011 18:56:54 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-11-04/Sitefinity_4_x_Script_Management.aspx</feedburner:origLink></item>
    <item>
      <title>The TR tag and borders</title>
      <description>&lt;p&gt;Yesterday, I was trying to apply a top border on a table row, but no matter what I could not get it show up.&lt;/p&gt; &lt;p&gt;I could change the background color of the rows in question using a particular class, but trying to change border properties would not work.&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;div style="border: 1px solid #7f9db9; overflow-y: auto;" class="reCodeBlock"&gt; &lt;div style="background-color: #ffffff;"&gt;&lt;span&gt;&lt;span style="margin-left: 0px ! important;"&gt;&lt;code style="color: #000000;"&gt;.dirTable tr {&lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-top&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;1px&lt;/code&gt; &lt;code style="color: #009900;"&gt;solid&lt;/code&gt; &lt;code style="color: #009900;"&gt;gray&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-left&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;none&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-right&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;none&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-bottom&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;none&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;margin&lt;/code&gt;&lt;code style="color: #000000;"&gt;: &lt;/code&gt;&lt;code style="color: #009900;"&gt;0&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;padding&lt;/code&gt;&lt;code style="color: #000000;"&gt;: &lt;/code&gt;&lt;code style="color: #009900;"&gt;0&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;background-color&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;red&lt;/code&gt;&lt;code style="color: #000000;"&gt;;}&lt;/code&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;Using the above, I would see red in the background of my table, but no gray borders and a small white border on all of the cells in the table.&lt;/p&gt; &lt;p&gt;It was so frustrating because, I had used nearly identical markup on another site which was still working as expected.&lt;/p&gt; &lt;p&gt;It turns out that the original site makes use of the &lt;a href="http://meyerweb.com/eric/tools/css/reset/" title="visit website" target="_blank"&gt;Eric Meyers CSS Reset&lt;/a&gt; and the new site has a section for CSS reset included in the &lt;a href="http://cssgrid.net/" title="visit website" target="_blank"&gt;1140 CSS Grid&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The key difference was the Meyers reset contains:&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;div style="border: 1px solid #7f9db9; overflow-y: auto;" class="reCodeBlock"&gt; &lt;div style="background-color: #ffffff;"&gt;&lt;span&gt;&lt;span style="margin-left: 0px ! important;"&gt;&lt;code style="color: #000000;"&gt;table { &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-collapse&lt;/code&gt;&lt;code style="color: #000000;"&gt;: &lt;/code&gt;&lt;code style="color: #009900;"&gt;collapse&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-spacing&lt;/code&gt;&lt;code style="color: #000000;"&gt;: &lt;/code&gt;&lt;code style="color: #009900;"&gt;0&lt;/code&gt;&lt;code style="color: #000000;"&gt;; &lt;br /&gt; &lt;/code&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;Adding the border-collapse property to my table class fixed the problem:&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;div class="reCodeBlock" style="border: 1px solid #7f9db9; overflow-y: auto;"&gt; &lt;div style="background-color: #ffffff;"&gt;&lt;span&gt;&lt;span style="margin-left: 0px ! important;"&gt;&lt;code style="color: #000000;"&gt;.dirTable {&lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-collapse&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;collapse&lt;/code&gt;&lt;code style="color: #000000;"&gt;;&lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-left&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;1px&lt;/code&gt; &lt;code style="color: #009900;"&gt;solid&lt;/code&gt; &lt;code style="color: #009900;"&gt;gray&lt;/code&gt;&lt;code style="color: #000000;"&gt;;&lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-right&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;1px&lt;/code&gt; &lt;code style="color: #009900;"&gt;solid&lt;/code&gt; &lt;code style="color: #009900;"&gt;gray&lt;/code&gt;&lt;code style="color: #000000;"&gt;;&lt;/code&gt;&lt;code style="color: #006699; font-weight: bold;"&gt;border-bottom&lt;/code&gt;&lt;code style="color: #000000;"&gt;:&lt;/code&gt;&lt;code style="color: #009900;"&gt;1px&lt;/code&gt; &lt;code style="color: #009900;"&gt;solid&lt;/code&gt; &lt;code style="color: #009900;"&gt;gray&lt;/code&gt;&lt;code style="color: #000000;"&gt;;}&lt;/code&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;While looking for this solution, &lt;a title="view blog post" href="http://csarven.ca/tr-border-trick-for-ie" target="_blank"&gt;Sarven Capadisli's Blog post from 2006&lt;/a&gt; got me on the right track! Seems like a simple problem, but it wasted too much of my time. Hopefully my post will help someone else save time... or at least help me remember the next time I run across it.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/DKVcCPX5i3Y" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/DKVcCPX5i3Y/The_TR_tag_and_borders.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-09-22/The_TR_tag_and_borders.aspx</comments>
      <guid isPermaLink="false">5532aac0-bdd5-4804-9a09-777a32d3c65b</guid>
      <pubDate>Thu, 22 Sep 2011 15:01:01 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-09-22/The_TR_tag_and_borders.aspx</feedburner:origLink></item>
    <item>
      <title>Visual Studio Save Lag</title>
      <description>&lt;p&gt;I've been having weird, slow saving issues in Visual Studio 2010.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;I just tried some of the suggestions on &lt;/p&gt; &lt;p&gt;&lt;a href="http://richarddingwall.name/2009/08/24/does-your-visual-studio-run-slow/" title="view blog post"&gt;http://richarddingwall.name/2009/08/24/does-your-visual-studio-run-slow/&lt;/a&gt;&lt;/p&gt; &lt;p&gt;cleared out the temp files and the project MRU list; initial results are promising. &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/8elclJtsSWo" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/8elclJtsSWo/Visual_Studio_Save_Lag.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-09-21/Visual_Studio_Save_Lag.aspx</comments>
      <guid isPermaLink="false">d96ffca9-04c3-4bb9-a727-50c3f5d57f48</guid>
      <pubDate>Wed, 21 Sep 2011 15:46:31 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-09-21/Visual_Studio_Save_Lag.aspx</feedburner:origLink></item>
    <item>
      <title>jQuery Shuffle</title>
      <description>&lt;p&gt;Just used a helpful plugin to put some list items in a random order.&lt;/p&gt; &lt;p&gt;&lt;a title="visit yelotofu website" target="_blank" href="http://yelotofu.com/2008/08/jquery-shuffle-plugin/"&gt;http://yelotofu.com/2008/08/jquery-shuffle-plugin/&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/S3npNyponB8" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/S3npNyponB8/jQuery_Shuffle.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-08-18/jQuery_Shuffle.aspx</comments>
      <guid isPermaLink="false">7cd66ab1-7f98-44d9-82f1-bfd41efbf397</guid>
      <pubDate>Thu, 18 Aug 2011 21:02:07 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-08-18/jQuery_Shuffle.aspx</feedburner:origLink></item>
    <item>
      <title>Image Scroller with Random Order</title>
      <description>&lt;p&gt;I just needed to make a scroller of some books, the option to view them larger and to have the order different every time the page loads.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;For the slide show or scroller effect, I used the &lt;a target="_blank" href="http://dev.herr-schuessler.de/jquery/popeye/" title="visit plugin website"&gt;jQuery popeye plugin&lt;/a&gt;. This also offers the ability to view the images as a larger version.&lt;/p&gt; &lt;p&gt;For the randomization, this "&lt;a title="visit plugin website" href="http://yelotofu.com/2008/08/jquery-shuffle-plugin/"&gt;Shuffle plugin&lt;/a&gt;" at Yelotofu.com did the trick.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;On the popeye code, I also used the jQuery.noconflict which is described in an &lt;a href="http://scottrozman.net/blog/10-11-03/Avoiding_jQuery_Conflicts_in_Sitefinity.aspx" title="view blog post"&gt;earlier blog post&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/LgE6ZhXvWYs" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/LgE6ZhXvWYs/Image_Scroller_with_Random_Order.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-08-15/Image_Scroller_with_Random_Order.aspx</comments>
      <guid isPermaLink="false">b4c24f45-c043-44bd-8c12-47d6b4624589</guid>
      <pubDate>Mon, 15 Aug 2011 18:14:28 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-08-15/Image_Scroller_with_Random_Order.aspx</feedburner:origLink></item>
    <item>
      <title>PDF form JavaScript</title>
      <description>&lt;p&gt;Today, I was working on a PDF with a form in Acrobat which I wanted to set up for emailing.&lt;/p&gt; &lt;p&gt;After creating a button, I needed to know how to add some JavaScript to the mousedown action on the button.&lt;/p&gt; &lt;p&gt;Here are two useful resources I found:&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/Acro6JSGuide.pdf"&gt;http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/Acro6JSGuide.pdf&lt;/a&gt;&lt;/p&gt; &lt;p&gt;This got me starting on sending email, but my first crack at using the field value to change the BCC on the email did not work.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.codingforums.com/showthread.php?t=231405"&gt;http://www.codingforums.com/showthread.php?t=231405&lt;/a&gt;&lt;/p&gt; &lt;p&gt;This example gave me the missing piece.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;I also wanted to confirm that required fields were filled before allowing the submit button to generate the email.&lt;/p&gt; &lt;p&gt;This link was useful:&lt;/p&gt; &lt;p&gt;&lt;a href="http://acrobatusers.com/forum/javascript/check-required-fields-emailing-document"&gt;http://acrobatusers.com/forum/javascript/check-required-fields-emailing-document&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/hCsO6OTzTy8" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/hCsO6OTzTy8/PDF_form_JavaScript.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-07-21/PDF_form_JavaScript.aspx</comments>
      <guid isPermaLink="false">7ee04c14-2346-4409-a963-68ff04d5c893</guid>
      <pubDate>Thu, 21 Jul 2011 21:42:30 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-07-21/PDF_form_JavaScript.aspx</feedburner:origLink></item>
    <item>
      <title>Backing up MySQL data</title>
      <description>&lt;p&gt;Here are a couple of resources that I used for research:&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;http://kb.liquidweb.com/how-to-back-up-mysql-databases-from-the-command-line/&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Restoring data can be done with the MySQL Workbench tool.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;For MySQL running on Windows servers, you can manage the server if WMI is available.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;http://www.poweradmin.com/help/enableWMI.aspx&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;http://msdn.microsoft.com/en-us/library/aa822854%28v=vs.85%29.aspx&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;In order to avoid the giant ibdata file and have one file per database, please see:&lt;/p&gt; &lt;p&gt;http://stackoverflow.com/questions/3456159/how-to-shrink-purge-ibdata1-file-in-mysql &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/CpiQ7uq2Gk4" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/CpiQ7uq2Gk4/Backing_up_MySQL_data.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-07-19/Backing_up_MySQL_data.aspx</comments>
      <guid isPermaLink="false">d73cbfe8-fb6c-49e7-96aa-9dbee198a6ff</guid>
      <pubDate>Tue, 19 Jul 2011 18:24:28 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-07-19/Backing_up_MySQL_data.aspx</feedburner:origLink></item>
    <item>
      <title>Using PHP on IIS</title>
      <description>&lt;p&gt;I've just started working with supporting some php applications on IIS. Time to experiment a bit and take some notes. &lt;/p&gt; &lt;p&gt;It seems that PHP is happy to run under any settings for the Application Pool. v4.0, v2.0, Integrated or Classic.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/BnFeHvP4zjc" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/BnFeHvP4zjc/Using_PHP_on_IIS.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-07-15/Using_PHP_on_IIS.aspx</comments>
      <guid isPermaLink="false">cbf71978-1fad-43cd-8ba3-6579deab0131</guid>
      <pubDate>Fri, 15 Jul 2011 14:33:00 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-07-15/Using_PHP_on_IIS.aspx</feedburner:origLink></item>
    <item>
      <title>Wildcard SSL on single IP</title>
      <description>&lt;p&gt;Looks like it is possible to do this with multiple domain sub-domains, single IP and a wildcard certificate:&lt;/p&gt; &lt;p&gt;&lt;a href="http://forums.iis.net/t/1117559.aspx"&gt;http://forums.iis.net/t/1117559.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Here is how to get it working in IIS7:&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.sslshopper.com/article-ssl-host-headers-in-iis-7.html"&gt;http://www.sslshopper.com/article-ssl-host-headers-in-iis-7.html&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="http://forums.iis.net/t/1117559.aspx"&gt;&lt;br /&gt; &lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/DeEEldIDWVY" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/DeEEldIDWVY/Wildcard_SSL_on_single_IP.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-07-13/Wildcard_SSL_on_single_IP.aspx</comments>
      <guid isPermaLink="false">44d42263-985a-4ea1-a1be-bf81c3234ac2</guid>
      <pubDate>Wed, 13 Jul 2011 15:53:12 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-07-13/Wildcard_SSL_on_single_IP.aspx</feedburner:origLink></item>
    <item>
      <title>How-to Scheduled Backup in MS SQL 2005 </title>
      <description>&lt;p&gt;I just had to set this up, so thought I'd save this video resource and this &lt;a target="_blank" href="http://support.microsoft.com/kb/930615"&gt;link to Microsoft documentation&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;iframe width="425" height="349" frameborder="0" src="http://www.youtube.com/embed/yHzA5i-4qjE"&gt;&lt;/iframe&gt;&lt;img src="http://feeds.feedburner.com/~r/ScottRozmansBlog/~4/QSX9Wv6WbzM" height="1" width="1"/&gt;</description>
      <link>http://feedproxy.google.com/~r/ScottRozmansBlog/~3/QSX9Wv6WbzM/How-to_Scheduled_Backup_in_MS_SQL_2005.aspx</link>
      <author>Scott Rozman</author>
      <comments>http://scottrozman.net/Blog/11-07-07/How-to_Scheduled_Backup_in_MS_SQL_2005.aspx</comments>
      <guid isPermaLink="false">0a6cca6c-e543-4f7a-9ad1-8dd24f7ad65b</guid>
      <pubDate>Thu, 07 Jul 2011 15:37:06 GMT</pubDate>
    <feedburner:origLink>http://scottrozman.net/Blog/11-07-07/How-to_Scheduled_Backup_in_MS_SQL_2005.aspx</feedburner:origLink></item>
  </channel>
</rss>

