|
|
Posted 05/03/2006 07:29:46 |
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 07/02/2008 00:14:11
Posts: 4,
Visits: 14
|
|
| I have a web site header, menu, etc...and I want to use the KB within this design.... How do I do it? Thanks for any info!
|
|
|
|
Posted 06/03/2006 13:39:48 |
|
|
Support Supremo
      
Group: Customers
Last Login: 09/09/2008 21:04:36
Posts: 568,
Visits: 2,505
|
|
GMC (3/5/2006)
I have a web site header, menu, etc...and I want to use the KB within this design.... How do I do it? Thanks for any info! Hi GMC, There are controls called Header.ascx and Footer.ascx. In these files you can add any html tags after <body>, in Header.ascx and before </body> in Footer.ascx. For example: You can create a table where your first row will be HELLO WORLD! Your second will be the InstantKB and your third row will be BYE WORLD! The code will be as follows: In header.ascx:
<%@ Control language="vb" CodeBehind="header.ascx.vb" Inherits="InstantKB.InstantKB_UserUserControlHeader" %> <html> <head> <title id="KBPageTitle" runat="server"/></title> <link id="KBStyleSheet" runat="server"/> <script language="JavaScript" src="scripts/kbjs.js"></script> </head> <body bgcolor="#ffffff"> <Table width=100%> <tr> <td> <B>HELLO WORLD!</B> </TD> </TR> <TR> <TD> In footer.ascx :
<%@ Control language="vb" CodeBehind="footer.ascx.vb" Inherits="InstantKB.InstantKB_UserUserControlFooter" %> </TD> </TR> <tr><td><b>BYE WORLD!</B> </TD> </TR> </TABLE> </body> </html>
|
|
|
|