<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Doug Dossett</title>
	<atom:link href="http://dougdossett.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dougdossett.wordpress.com</link>
	<description>It&#039;s all about me.</description>
	<lastBuildDate>Tue, 03 Jan 2012 20:14:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='dougdossett.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Doug Dossett</title>
		<link>http://dougdossett.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dougdossett.wordpress.com/osd.xml" title="Doug Dossett" />
	<atom:link rel='hub' href='http://dougdossett.wordpress.com/?pushpress=hub'/>
		<item>
		<title>No onmouseover for options in IE</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/no-onmouseover-for-options-in-ie/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/no-onmouseover-for-options-in-ie/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:43:53 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Javascript/jQuery]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=65</guid>
		<description><![CDATA[I was just trying to get a multi select list set up so that when I mouse over one of the options in said list, it would show information in an adjacent div.   In FireFox this worked just fine by adding an onmouseover to the option tags and have it update the div&#8217;s innerHTML.  But [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=65&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was just trying to get a multi select list set up so that when I mouse over one of the options in said list, it would show information in an adjacent div.   In FireFox this worked just fine by adding an onmouseover to the option tags and have it update the div&#8217;s innerHTML.  But for IE, there was no happiness.   IE apparently won&#8217;t handle onmouseover or onclick for an option tag.  Cause who cares about option tags.   Well I finally came up with a solution, at least for my case.</p>
<p>In trying to find a solution, I kept trying to use the (propriatary) attachEvent method to attach an onmouseover or onclick event to my options.  Again, no luck here.  However I did find that I could use the test for attachEvent support to at least isolate IE and only use my solution for IE.  So here&#8217;s the code I ended up with:</p>
<p>My select list. I&#8217;m listing groups of skills and I want to show which skills are included in each group.</p>
<pre>&lt;div style="float: left;"&gt;
  &lt;select size="5" name="listSkillGroups" multiple="multiple" id="listSkillGroups" onclick="getText(this)"&gt;
    &lt;option value="20"
      title="Small Equipment Operations, Hammering"
      onmouseover="getText(this);"&gt;
      Carpentry Skills&lt;/option&gt;
    &lt;option selected="selected" value="2"
      title="MS SQL, Oracle Database"
      onmouseover="getText(this);"&gt;
      Database&lt;/option&gt;
    &lt;option value="4"
      title="A+ Certification, PC Repair, Microsoft SMS"
      onmouseover="getText(this);"&gt;
      Desktop Engineering Skills&lt;/option&gt;
    &lt;option value="18" title="MySQL, Apache, PHP Development, CSS, HTML"
      onmouseover="getText(this);"&gt;
      FOSS Experience&lt;/option&gt;
    &lt;option value="5"
      title="Microsoft Word, Microsoft Excel, Microsoft Sharepoint, Microsoft InfoPath"
      onmouseover="getText(this);"&gt;
      General PC Skills&lt;/option&gt;
    &lt;option value="3" title="Small Equipment Operations, Small Equiment Repair, Tree/Plant Identification"
      onmouseover="getText(this);"&gt;
      Landscaping Skills&lt;/option&gt;
    &lt;option selected="selected" value="1"
      title=".NET, IIS, CSS, HTML" alt=".NET, IIS, CSS, HTML"
      onmouseover="getText(this);"&gt;Web Development&lt;/option&gt;
  &lt;/select&gt;&lt;br /&gt;
  &lt;span&gt;
    (Use Ctrl or Shift Key to select multiple.)
  &lt;/span&gt;
&lt;/div&gt;     

&lt;div id="SkillDetails" style="padding: 10px; float: left; width: 250px;"&gt;&lt;/div&gt;</pre>
<p>Now the javascript function for both the mouseover and onclick versions.</p>
<pre>&lt;script type="text/javascript" language="javascript"&gt;
   &lt;!--
   var oSelected = ",";
   function getText(ctrl) {
     if (window.attachEvent) {
        for (var o = 0; o &lt; ctrl.options.length; o++) {
            if (ctrl.options[o].selected == true &amp;&amp; oSelected.indexOf("," + ctrl.options[o].value + ",") == -1) {
                oSelected += ctrl.options[o].value + ",";
                document.getElementById('SkillDetails').innerHTML = "&lt;strong&gt;Included Skills:&lt;/strong&gt; " + ctrl.options[o].title;
            } else if (ctrl.options[o].selected == false &amp;&amp; oSelected.indexOf("," + ctrl.options[o].value + ",") != -1) {
                oSelected = oSelected.replace(ctrl.options[o].value + ",", "");
            }
        }
     } else {
        document.getElementById('SkillDetails').innerHTML = '&lt;strong&gt;Included Skills:&lt;/strong&gt; ' + ctrl.title;
     }
   }
--&gt;
&lt;/script&gt;</pre>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=65&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/no-onmouseover-for-options-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>Unintentionally Overwriting Stylesheets in IE</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/unintentionally-overwriting-stylesheets-in-ie/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/unintentionally-overwriting-stylesheets-in-ie/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:37:40 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Javascript/jQuery]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=60</guid>
		<description><![CDATA[As part of a recent request to customize the header of a SharePoint (MOSS 2007) site, I ran into a little problem when trying to dynamically replace a stylesheet using Javascript.  The page had two stylesheets loading, one core stylesheet and one theme stylesheet, in that order.  I was trying to replace the core stylesheet [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=60&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As part of a recent request to customize the header of a SharePoint (MOSS 2007) site, I ran into a little problem when trying to dynamically replace a stylesheet using Javascript.  The page had two stylesheets loading, one core stylesheet and one theme stylesheet, in that order.  I was trying to replace the core stylesheet with an altered version for certain parts of the site, however when I did it was as if the theme stylesheet was being overwritten too.  The problem was in how IE handles the DOM and Stylesheets (this was not a problem in Firefox).</p>
<p>I started by creating a new stylesheet link element, then replacing the existing one with the new one (see code below).</p>
<p><code>var newElement = document.createElement("link");<br />
newElement.type = "text/css";<br />
newElement.rel = "stylesheet";<br />
newElement.href = "/_layouts/1033/styles/core_orig.css";<br />
newElement.media = 'screen';</code></p>
<p><code>var oHead = document.getElementsByTagName("head")[0];<br />
var aLinks = oHead.getElementsByTagName("link");</code></p>
<p><code>for (var li = 0; li &lt; aLinks.length; li++) {<br />
if (aLinks.href.indexOf("core.css") &gt; -1) {<br />
oHead.replaceChild(newElement, aLinks[li]);<br />
}<br />
}</code></p>
<p>This was the first instance of seeing the problem with my theme.css being overwritten.  I then tried just doing a simple replace on the link href to replace core.css with core_orig.css.  Again, the same results.  In both cases it seemed as if the replace just wasn&#8217;t happening at all.  After some exploring using the ever helpful <a href="http://www.noledgetransfur.com/Resources.aspx?LinkID=11" target="_blank">Firebug</a> and the<a href="http://www.noledgetransfur.com/Resources.aspx?LinkID=10" target="_blank"> IE Dev Toolbar</a> I realized the replace was happing, it just wasn&#8217;t behaving as expected.</p>
<p>So finally I realized it was just a matter of the order of things occuring, as it often is.  In this case, IE was loading core.css, then theme.css then in javascript I was loading core_orig.css which because of similar classes was basically overwritting them both.  In Firefox this wasn&#8217;t an issue as it just replaced the core.css as I wanted but IE reinterpreted it again after the other two had already loaded.  So now all I had to do was just drop and recreate the theme.css after replace the core.css and I was done (final code below).</p>
<pre>var url=window.location.href.toLowerCase();
  if (url.indexOf('/sites/') &gt; -1 || url.indexOf('/sitedirectory/') &gt; -1) {
    var oHead = document.getElementsByTagName("head")[0];
    var aLinks = headID.getElementsByTagName("link");

    var newElement = document.createElement('link');
    newElement.type = 'text/css';
    newElement.rel = 'stylesheet';
    newElement.href = '/_layouts/1033/styles/core_orig.css';
    newElement.media = 'screen';	

    for (var ci = 0; ci &lt; aLinks.length; ci++) {
      if (aLinks[ci].href.indexOf('core.css') &gt; -1) {
        var newHref = aLinks[ci].href;
        newHref = newHref.replace("core.css", "core_orig.css");
        newElement.href = newHref;
        oHead.replaceChild(newElement, aLinks[ci]);
      } else if (aLinks[ci].href.indexOf('/_themes/') &gt; -1) {
        var newNode = aLinks[ci].cloneNode();
        oHead.removeChild(aLinks[ci]);
        oHead.appendChild(newNode);
      }
    }
  }</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=60&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/unintentionally-overwriting-stylesheets-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>AJAX Tabs &#8211; Remove, don&#8217;t disable.</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/ajax-tabs-remove-dont-disable/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/ajax-tabs-remove-dont-disable/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:36:31 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[Javascript/jQuery]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=58</guid>
		<description><![CDATA[The other day I started having a strange problem with a DetailsView control inside of an AJAX Tab Panel.  When the control would load, the paging links looked normal, but when I&#8217;d click on one they would all become disabled.  In actuality, they were only being disabled in appearance since the paging function is associated [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=58&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The other day I started having a strange problem with a DetailsView control inside of an AJAX Tab Panel.  When the control would load, the paging links looked normal, but when I&#8217;d click on one they would all become disabled.  In actuality, they were only being disabled in appearance since the paging function is associated with an onclick event rather than the actual href of the link.  So why would these all become disabled?</p>
<p>To make things even more confusing, I had another DetailsView control on the next tab over on the page.  This one was almost identical in code, only differing in the data being loaded, and it worked just fine.  I tried many a thing to try and fix it.  The magical <a href="http://www.noledgetransfur.com/Resources.aspx?LinkID=11">Firebug</a> extension was a big help in trying to debug the javascript that the AJAX controls generate.  From what I could tell, something, somewhere thought that these controls should be disabled so on that first post back, all the links disabled attribute was added and set to disabled.</p>
<p>Next I started looking at what could be causing it to disable, and how to renable it.  I tried various enabled, visible, etc. options but nothing worked.  Finally I started looking at the code around this tab.  Just to see if it was replicatable, I tried switching the order of the two tabs (one working, one not) and behold, the working one did have the same problem and the broken one started working.</p>
<p>So to make an already long story short, I finally narrowed it down to the one thing that was being disabled, the next tab panel.   As part of the web application, the user has the option to turn certain features off, one of which makes this tab unnecessary.  So in this case I was disabling the tab when not needed.  I had a couple other tabs on the page also not turned on but they weren&#8217;t causing a problem.  The key was how I turned them off.  Instead of disabling the tabs, I was actually removing them from the tab container collection.</p>
<p>I&#8217;m sure I&#8217;ll be the only .NET programmer ever to run into this, but should you ever be in the need to hide a tab, remove it don&#8217;t disable it.   I have no idea why it makes a difference and would affect the functionality of a control in the tab next door, but now we at least know the fix.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=58&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/ajax-tabs-remove-dont-disable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint RSS Feed Updates</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/sharepoint-rss-feed-updates/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/sharepoint-rss-feed-updates/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:35:53 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=56</guid>
		<description><![CDATA[I&#8217;ve started using the RSS Viewer web part but it wasn&#8217;t obvious how often it would update the feed.  There&#8217;s a cache setting in the web part settings but that didn&#8217;t seem to control when it updated. I finally found in the Site Settings, there&#8217;s an option for RSS under Site Administration.  There you can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=56&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started using the RSS Viewer web part but it wasn&#8217;t obvious how often it would update the feed.  There&#8217;s a cache setting in the web part settings but that didn&#8217;t seem to control when it updated.</p>
<p>I finally found in the Site Settings, there&#8217;s an option for RSS under Site Administration.  There you can specify a site-wide setting for Time to Live.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=56&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/sharepoint-rss-feed-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>obj.watch() vs obj.onpropertychange()</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/obj-watch-vs-obj-onpropertychange/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/obj-watch-vs-obj-onpropertychange/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:35:07 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Javascript/jQuery]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=54</guid>
		<description><![CDATA[I was trying to use javascript to do some trimming of content coming in on an RSS feed in SharePoint.  I created a function to do this which worked fine but I found that running it viawindow.onload was running before the RSS feed could load.   I needed a way to watch the div it loads in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=54&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was trying to use javascript to do some trimming of content coming in on an RSS feed in SharePoint.  I created a function to do this which worked fine but I found that running it via<em>window.onload</em> was running before the RSS feed could load.   I needed a way to watch the div it loads in for a change of content.   Using the javascript <em>watch</em> function seemed like a reasonable solution but after much playing with it I realized IE doesn&#8217;t appear to support it.</p>
<p>Instead IE has it&#8217;s own event, <em><a href="http://www.sokkit.net/pragmacms/" target="_blank">obj.onpropertychange</a>.  </em>In fact, in my case, this event worked better for me than <em>obj.watch</em>.   In the case of obj.watch, you specify the property to watch and the function to fire off when there&#8217;s a change.  So you can do something like myDiv.watch(&#8216;innerHTML&#8217;, updateMyContent) to update some content when the content of the watched div changes.  I&#8217;m sure this is being done already on a lot of ajax-y sites, but it was new to me.</p>
<p>The only problem in my case with obj.watch is that it expects a value back from the function and uses that value as the new property value.  In my function, I was trying to make changes to the content that had been changed which was then being overwritten when the function completed through the normal flow of obj.watch.</p>
<p>For me, obj.onpropertychange worked much better.  It fires my function on a change, allows me to change the content and doesn&#8217;t do any overwriting after I&#8217;m done.  Unfortunately, this only works in IE.  Fortunately in my case this is for an intranet where that&#8217;s all that is used.  So just be aware of differences in functionality and browser support.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=54&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/obj-watch-vs-obj-onpropertychange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix Corrupt InfoPath Form Header</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/fix-corrupt-infopath-form-header/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/fix-corrupt-infopath-form-header/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:34:20 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[InfoPath]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=52</guid>
		<description><![CDATA[I&#8217;ve seen this a couple time and have found help elsewhere, but thought I should add it here too.  If you&#8217;re messing with the header on an InfoPath form and end up not being able to open it due to an error with a header tag in your .xsf file, it&#8217;s fairly easy to fix.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=52&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen this a couple time and have found help elsewhere, but thought I should add it here too.  If you&#8217;re messing with the header on an InfoPath form and end up not being able to open it due to an error with a header tag in your .xsf file, it&#8217;s fairly easy to fix.  Kinda.</p>
<ol>
<li>First rename the .xsn to a .cab.</li>
<li>Use WinZip or what ever archive program you want and extract the contents of the .cab.</li>
<li>There you&#8217;ll see the Manifest.xsf.  Open it in Notepad or other text editor and find your offending &lt;header&gt; tag and delete it.</li>
<li>Save the file (make sure it keeps the .xsf extension).</li>
<li>Now you&#8217;ll want to zip these back up into a cab file again.  If your archive program supports this, use it.  If not, try iexpress.exe (Start -&gt; Run -&gt; iexpress) which is likely already on your machine (new to me).  It&#8217;ll walk you through creating a cab file from the files you previously extracted.</li>
<li>Finally, rename the .cab back to a .xsn and you&#8217;re good to go.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=52&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/fix-corrupt-infopath-form-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix IIS Upload Limit</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/fix-iis-upload-limit/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/fix-iis-upload-limit/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:33:42 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=50</guid>
		<description><![CDATA[Apparently the default for allowed upload size in IIS is around 200k. In many cases, this is not enough. Upload scripts in asp/vbscript will report &#8220;Operation not allowed&#8221;, which is oh so descriptive. Found a quick and easy post on how to fix this.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=50&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apparently the default for allowed upload size in IIS is around 200k. In many cases, this is not enough. Upload scripts in asp/vbscript will report &#8220;Operation not allowed&#8221;, which is oh so descriptive. Found a <a href="http://www.banmanpro.com/support2/File_Upload_limits.asp" target="_blank">quick and easy post</a> on how to fix this.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=50&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/fix-iis-upload-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Kills IIS Admin</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/sharepoint-kills-iis-admin/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/sharepoint-kills-iis-admin/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:32:50 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=47</guid>
		<description><![CDATA[At some point our install of MOSS 2007 (SharePoint) started causing problems on the server it was installed on.  If you opened the IIS MMC, it was unable to connect to the local server and display any web sites on the server.  Makes making changes and adding new sites a little difficult. I found a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=47&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At some point our install of MOSS 2007 (SharePoint) started causing problems on the server it was installed on.  If you opened the IIS MMC, it was unable to connect to the local server and display any web sites on the server.  Makes making changes and adding new sites a little difficult.</p>
<p>I found a number of references to this being caused by an incorrect password or user specified to run one or more of the SharePoint related services.  Tried updating all the users to be sure they were entered correctly and this seemed to have fixed it for a while but recently experience the problem again.</p>
<p>While I continue to find a long term solution, I thought I&#8217;d at least post the temporary solution.  You can reboot the server to fix this, but most people don&#8217;t like having to do this to a production server.  Instead you can just restart SharePoint services, such as the Timer or the Administrator and this will typically fix it without affecting access or functionality of the site or server.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=47&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/sharepoint-kills-iis-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>Word can&#8217;t authenticate with SharePoint</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/word-cant-authenticate-with-sharepoint/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/word-cant-authenticate-with-sharepoint/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:32:03 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=45</guid>
		<description><![CDATA[In some cases of users trying to open Word or other documents from a secured external SharePoint site, they are prompted for authentication to the site again as Word doesn&#8217;t know they&#8217;re already authenticated.  If using Forms Authentication, this doesn&#8217;t really work.  There&#8217;s an easy IE setting you can change that will have the document [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=45&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In some cases of users trying to open Word or other documents from a secured external SharePoint site, they are prompted for authentication to the site again as Word doesn&#8217;t know they&#8217;re already authenticated.  If using Forms Authentication, this doesn&#8217;t really work.  There&#8217;s an easy IE setting you can change that will have the document open in the browser, maintaining the authentication and not prompting the user again.</p>
<p>1.  Click Start -&gt; Programs -&gt; Accessories -&gt; Windows Explorer (not IE, but Windows Explorer).<br />
2.  On the menu, click Tools -&gt; Folder Options.<br />
3.  Go to the File Types tab.<br />
4.  Scroll down and select the DOC extension (Or xls or what ever you&#8217;re changing it for).<br />
5.  Click the Advanced button.<br />
6.  Select the &#8220;Browse in same window&#8221; option and click OK twice.</p>
<p>Now when the user clicks to open the document, it will load in word inside the browser window without an additional prompt for authentication.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=45&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/word-cant-authenticate-with-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
		<item>
		<title>WSS 3.0 &#8211; Change Basic Page Title</title>
		<link>http://dougdossett.wordpress.com/2012/01/03/wss-3-0-change-basic-page-title/</link>
		<comments>http://dougdossett.wordpress.com/2012/01/03/wss-3-0-change-basic-page-title/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 19:26:44 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://dougdossett.wordpress.com/?p=38</guid>
		<description><![CDATA[If you create a basic web page in WSS 3.0, the page title in the browser title bar just shows up as &#8220;Basic Page&#8221;.   You can change this on a per file basis using SharePoint Designer, but you can also make a change system-wide. My solution was to edit the template file for basic pages [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=38&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you create a basic web page in WSS 3.0, the page title in the browser title bar just shows up as &#8220;Basic Page&#8221;.   You can change this on a per file basis using SharePoint Designer, but you can also make a change system-wide.</p>
<p>My solution was to edit the template file for basic pages located at:</p>
<blockquote><p>drive:\Program Files\Common Files\Microsoft Shared\web server extensions _<br />
\12\TEMPLATE\1033\STS\DOCTEMP\BLANKPGS\pstd.aspx</p></blockquote>
<p>Locate the section at the top:</p>
<blockquote><p>&lt;asp:Content ContentPlaceHolderId=&#8221;PlaceHolderPageTitle&#8221; runat=&#8221;server&#8221;&gt;<br />
&#8230; &lt;/asp:Content&gt;</p></blockquote>
<p>Replace it with:</p>
<blockquote><p>&lt;asp:Content ContentPlaceHolderId=&#8221;PlaceHolderPageTitle&#8221; runat=&#8221;server&#8221;&gt;<br />
&lt;SharePoint:ListItemProperty runat=&#8221;server&#8221; Property=&#8221;Page_x0020_Title&#8221;<br />
id=&#8221;ListItemProperty1&#8243;/&gt;<br />
- &lt;SharePoint:ProjectProperty Property=&#8221;Title&#8221; runat=&#8221;server&#8221;/&gt;<br />
&lt;/asp:Content&gt;</p></blockquote>
<p>Finally, in the document library where you&#8217;re going to store your basic web pages, create a new column called &#8220;Page Title&#8221;.  Now when you create a new basic web page, fill in this column with what ever you want the title to be.  The result is that you&#8217;ll end up with a page title of &#8220;Value of Page Title Column &#8211; Site Name&#8221;.  The Site Name comes from whatever you specified as the title of your site.  You can of course change the title elements to be whatever you want, but this worked for my purposes.</p>
<p>Pros:  Pages end up with a logical page title with a fairly easy process.  Easy for normal users to update the page title without the use of SharePoint Designer.</p>
<p>Cons:  This is server wide, so will affect all sites on a server.  But at least if you use pages in a library where there is no &#8220;Page Title&#8221; column it will still show the site name in the title which is still better than &#8220;Basic Page&#8221;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dougdossett.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dougdossett.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/dougdossett.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/dougdossett.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dougdossett.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dougdossett.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dougdossett.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dougdossett.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dougdossett.wordpress.com&amp;blog=9066839&amp;post=38&amp;subd=dougdossett&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://dougdossett.wordpress.com/2012/01/03/wss-3-0-change-basic-page-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8d31b12bf6c4c15de8e9efcf6313b581?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">noledgetransfur</media:title>
		</media:content>
	</item>
	</channel>
</rss>
