|
Since you have the handy user preferences page, you might as well let users change preferences as they view slides. You can link
Slideshow2.aspx to the
SlideshowSettings.aspx preferences page with a normal hyperlink. You can add a hyperlink to the slideshow by using one of the following three methods:
In Design view, drag an Anchor element from the HTML Elements tab of the Toolbox onto the page and then edit the tag to set the text to Set caption preferences. In the Properties window, set its href property to
SlideshowSettings.aspx.
If you re handy with HTML, switch to HTML view and add an <a> tag that links to
SlideshowSettings.aspx. Set the href attribute of the <a> tag to
SlideshowSettings.aspx. It might look like this:
<a href="SlideshowSettings.aspx">Set caption p references</a>
If you want to just stick with Web controls, from the Web Controls tab of the Toolbox, drag a Hyperlink control onto the page and set its NavigateUrl property to
SlideshowSettings.aspx and its Text property to Set caption preferences.
|