<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How we did it: Fly Buys website</title>
	<atom:link href="http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/</link>
	<description>Ari Bakker&#039;s thoughts on customising and configuring SharePoint 2007 and 2010</description>
	<lastBuildDate>Fri, 27 Aug 2010 20:13:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jason</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-148</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-148</guid>
		<description>Cool, thanks for this. I had actually seen the MS article but skipped through it quickly as it was pretty bland documentation. The second article was very useful. In the end I used custom web controls to determine visibility on the editform based upon security...probably should have used custom field type controls but the project is already in production and we have to keep the existing columns / field types and their data.</description>
		<content:encoded><![CDATA[<p>Cool, thanks for this. I had actually seen the MS article but skipped through it quickly as it was pretty bland documentation. The second article was very useful. In the end I used custom web controls to determine visibility on the editform based upon security&#8230;probably should have used custom field type controls but the project is already in production and we have to keep the existing columns / field types and their data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ari Bakker</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-149</link>
		<dc:creator>Ari Bakker</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-149</guid>
		<description>Two basic approaches come to mind:

          First is to create a list definition that includes a custom editform.aspx and package this up as a feature. See the article titled &quot;Creating Custom Form Templates&quot; in the WSS 3.0 SDK for more details.

          The second option is to create a custom webpart, usercontrol, page or other code based component that uses the object model to manually render the fields and update the relevant list item. For the Fly Buys site we created a separate &quot;Data Maintenance&quot; section of the site so users didn&#039;t have to understand the underlying list structure. To do this we built a series of webparts and placed these on custom pages deployed via a feature. Chris Johnson has a good post on some of the options for custom development at http://blogs.msdn.com/cjohnson/archive/2006/09/05/application-development-on-moss-2007-amp-wss-v3.aspx</description>
		<content:encoded><![CDATA[<p>Two basic approaches come to mind:</p>
<p>          First is to create a list definition that includes a custom editform.aspx and package this up as a feature. See the article titled &quot;Creating Custom Form Templates&quot; in the WSS 3.0 SDK for more details.</p>
<p>          The second option is to create a custom webpart, usercontrol, page or other code based component that uses the object model to manually render the fields and update the relevant list item. For the Fly Buys site we created a separate &quot;Data Maintenance&quot; section of the site so users didn&#39;t have to understand the underlying list structure. To do this we built a series of webparts and placed these on custom pages deployed via a feature. Chris Johnson has a good post on some of the options for custom development at <a href="http://blogs.msdn.com/cjohnson/archive/2006/09/05/application-development-on-moss-2007-amp-wss-v3.aspx" rel="nofollow">http://blogs.msdn.com/cjohnson/archive/2006/09/05/application-development-on-moss-2007-amp-wss-v3.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-150</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-150</guid>
		<description>Actually I&#039;ll be a little more descript: I am wanting to customise the EditForm.aspx pages however I don&#039;t have the luxury of using SharePoint Designer in production. I have to package it up into a feature, and adding a DataFormWebPart with SharePoint Designer in a page and then releasing it into production as a feature doesn&#039;t work for me. I assume the web part is configured for the development environment. How did you do it?</description>
		<content:encoded><![CDATA[<p>Actually I&#39;ll be a little more descript: I am wanting to customise the EditForm.aspx pages however I don&#39;t have the luxury of using SharePoint Designer in production. I have to package it up into a feature, and adding a DataFormWebPart with SharePoint Designer in a page and then releasing it into production as a feature doesn&#39;t work for me. I assume the web part is configured for the development environment. How did you do it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-151</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-151</guid>
		<description>How did you put together the page with all of the  SharePoint field controls? Did you use application pages, sites pages, forms (editform.aspx), or usercontrols? I am wanting to do the same thing but have been trying for days to find a good way of doing it.</description>
		<content:encoded><![CDATA[<p>How did you put together the page with all of the  SharePoint field controls? Did you use application pages, sites pages, forms (editform.aspx), or usercontrols? I am wanting to do the same thing but have been trying for days to find a good way of doing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: keith patton</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-152</link>
		<dc:creator>keith patton</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-152</guid>
		<description>actually, i ended up using a responsefilter in the end, you need to fix up bad javascript declarations but am happy to report xhtml 1.0 compliance now!</description>
		<content:encoded><![CDATA[<p>actually, i ended up using a responsefilter in the end, you need to fix up bad javascript declarations but am happy to report xhtml 1.0 compliance now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Patton</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-153</link>
		<dc:creator>Keith Patton</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-153</guid>
		<description>Hi,
          I see in the source of the flybuys site, that the PlaceHolderAdditionalPageHead placeholder in your master page is generating a duplicate title tag. This is happening for me as well and i can&#039;t see any reference anywhere as to how to resolve it. We are working towards xhtml 1.0 transitional and i would prefer not to have to use a regex and response filter to clean this up if i can avoid it.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
          I see in the source of the flybuys site, that the PlaceHolderAdditionalPageHead placeholder in your master page is generating a duplicate title tag. This is happening for me as well and i can&#39;t see any reference anywhere as to how to resolve it. We are working towards xhtml 1.0 transitional and i would prefer not to have to use a regex and response filter to clean this up if i can avoid it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-154</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-154</guid>
		<description>Hi Erinc
          I am trying to do the same thing.  If I find further information on this I will post here or please feel free to email me.</description>
		<content:encoded><![CDATA[<p>Hi Erinc<br />
          I am trying to do the same thing.  If I find further information on this I will post here or please feel free to email me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Senthil</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-155</link>
		<dc:creator>Senthil</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-155</guid>
		<description>HI Ari,

          Thats a Fantastic Site.Just I was courious to navigate to the _layouts/settings.aspx.But it too smart it redirected me back to the root site ..How did you acheived this ? This will help me to secure our site



          Thanks &amp; Regards
          Senthil</description>
		<content:encoded><![CDATA[<p>HI Ari,</p>
<p>          Thats a Fantastic Site.Just I was courious to navigate to the _layouts/settings.aspx.But it too smart it redirected me back to the root site ..How did you acheived this ? This will help me to secure our site</p>
<p>          Thanks &amp; Regards<br />
          Senthil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erinc arikan</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-156</link>
		<dc:creator>erinc arikan</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-156</guid>
		<description>Very nice, I am trying to do something similar, I am trying to integrate sharepoint with igoogle like UI on ASP.net, do you think that it&#039;s feasible.</description>
		<content:encoded><![CDATA[<p>Very nice, I am trying to do something similar, I am trying to integrate sharepoint with igoogle like UI on ASP.net, do you think that it&#39;s feasible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: =8)-DX</title>
		<link>http://www.sharepointconfig.com/2008/01/how-we-did-it-fly-buys-website/comment-page-1/#comment-157</link>
		<dc:creator>=8)-DX</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ari.provoke.co.nz/Lists/Posts/ViewPost.aspx?ID=44#comment-157</guid>
		<description>Toby, maybe an iisreset (or AppPool refresh) would help.. I would recommend doing that after almost all stsadm commands</description>
		<content:encoded><![CDATA[<p>Toby, maybe an iisreset (or AppPool refresh) would help.. I would recommend doing that after almost all stsadm commands</p>
]]></content:encoded>
	</item>
</channel>
</rss>
