Documenting Code With Sandcastle - Part 3
Back - Part 2
To change the foot note that defaults to “Send comment about this topic to Microsoft”
to something more appropriate
Go into C:\Program Files\Sandcastle\Presentation\vs2005\Content\Shared_Content.xml”
and change the footer that begins in line 118. The third parameter in the javascript
function “sendfeedback” is the address you want this feedback to go to. It is probably
best for this to be a generic email address (eg support@xyz.com ) as opposed to
a persons email.
This is also a good place to insert any Copyright notice or company logo.
<item id="footer">
<p/>
Copyright XYZ 2007
<p/>
<span>
Send
<a>
<includeAttribute name="href" item="MailToLink">
<parameter>{0}</parameter>
<parameter>{1}</parameter>
</includeAttribute>
comments
</a>
about this topic to XYZ Development Team
</span>
</item>
<item id="MailToLink">javascript:sendfeedback('Documentation Feedback
(Sandcastle CTP): ', '{1}', 'support@xyz.com');</item>
Back - Part 2