Captured Technology - Blog
By Steve Patterson on
2/23/2010 5:23 PM
LinkMarket – The Link Exchnage Network I was receiving many varied request to exchange links with webmasters on a number of different sites. I began to search for a network where I could do all my link exchanges without having to email individual site owners. LinkMarket.com came up in the search results from Google and I have been working with them since that time. The exchange has a great set of websites with many higher page ranked sites available. And it is possible to have exchanges approved with higher ranking sites even when your site is not ranked or on the lower end of the page rank scale. Setup a page like other sites have on your site and began exchanging links right away. There is a limit of...
|
By Steve Patterson on
2/11/2010 3:32 PM
Using the ASP.Net Ajax Accordion It was suggested that we utilize the Ajax Accordion control in a recent project and although the software is easy to install finding decent documentation on a quick solution was not as simple. I did finally stumble upon a couple of examples and modified the code from them to come up with an easy way to implement an image based menu with the accordion style navigation. The first thing to do is register the Ajax Control Kit in the page header. <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit"%>
Place the Script Manage on the page itself or on the Master Page.Placing the Script Manager on the Master Page worked well in our case as multiple pages used Ajax .
"ScriptManager1" runat="server">
The main body of code contains the Accordion definition, a Panes area, an Accordion Pane definition, a Header, a Content area, and closing tags. The unique thing that we did was to place an asp image object within the header group instead of text. Our content area also contained a user control but the links of the menu could have been created directly on the page just as well.
"Accordion1" runat="server" FadeTransitions="True"
SelectedIndex="0" TransitionDuration="100" HeaderCssClass="accordionHeader"
ContentCssClass="accordionContent" AutoSize="None" ToolTip="Something">
"AccordionPane5" runat="server">
"server" AlternateText="Some Text" ImageUrl="~/Images/Menu1.png" />
...
... Links to Menu items.
...
|
|