emcee
-
Total Posts
:
5
-
Reward points
:
0
- Joined: Feb 15 '03
-
Status: offline
|
Removing ASP Logo on Forum Pages
Fri. Mar 21, '03 12:26 AM
( permalink)
I did a search but couldn' t find an answer to my question. How do I remove the ASP logo from the forum? What file is this referenced in? Thanks!
|
|
|
|
Bruce Lee
-
Total Posts
:
76
-
Reward points
:
0
- Joined: Jun 15 '02
-
Status: offline
|
right here :)
Fri. Mar 21, '03 12:52 AM
( permalink)
http://www.aspplayground.net/forum/tm.aspx?m=375801 It says header/footer information, but the logo is referenced here as well. You can either modify the source of header_footer.asp, or just replace the logo with your own with the same file name. Our admin control panel has the feature dynamic header/footer which is also useful to design your own site style.
<message edited by Samuel on Sat. Sep 20, '08 6:02 PM>
Bruce Lee
ASPPlayground.NET Custom Software Developer
|
|
|
|
Guest
-
Total Posts
:
888
-
Reward points
:
0
- Joined: May 23 '01
-
Status: online
|
Re: right here :)
Sat. Sep 20, '08 5:05 PM
( permalink)
|
|
|
|
Samuel
-
Total Posts
:
11857
-
Reward points
:
180790
- Joined: May 23 '01
-
Status: offline
|
Re: right here :)
Sat. Sep 20, '08 6:03 PM
( permalink)
thanks for your notice. This is a very old thread, so the reference is no longer at the location. I have updated it to reflect the system change.
ASPPlayground.NET ~ see our Version 4 plans here
|
|
|
|
Guest
-
Total Posts
:
888
-
Reward points
:
0
- Joined: May 23 '01
-
Status: online
|
Re: right here :)
Wed. Oct 1, '08 4:53 AM
( permalink)
the answer in the link is very unhelpful to novices looking at forums for 1st time, how do you do it, is it only done via 3rd arty software to edit (MasterPage) or is it file called that? Saying read the manual is not always the way to do it, especially if you do not fully understand, or are looking at forum software.
|
|
|
|
Samuel
-
Total Posts
:
11857
-
Reward points
:
180790
- Joined: May 23 '01
-
Status: offline
|
Re: right here :)
Wed. Oct 1, '08 12:26 PM
( permalink)
Hi, Master Page is an ASP.NET feature (a page with extension .master) that serves like a container for common elements (header/footer). Here is the description for Master Page from MSDN (Microsoft's site): Microsoft ASP.NET master pages allow you to create a consistent layout for the pages in your application. A single master page defines the look and feel and standard behavior that you want for all of the pages (or a group of pages) in your application. You can then create individual content pages that contain the content you want to display. When users request the content pages, they merge with the master page to produce output that combines the layout of the master page with the content from the content page.
ASPPlayground.NET ~ see our Version 4 plans here
|
|
|
|
reba95
-
Total Posts
:
3
-
Reward points
:
120
- Joined: Nov 08 '08
-
Status: offline
|
Re: right here :)
Mon. Nov 17, '08 3:25 PM
( permalink)
Thank you, this post is exactly what I was looking for.
|
|
|
|
Bud
-
Total Posts
:
78
-
Reward points
:
2830
- Joined: May 20 '08
-
Status: offline
|
Re:Removing ASP Logo on Forum Pages
Fri. Mar 18, '11 1:56 AM
( permalink)
I just installed version 3.9 and there is no logo showing at the top of my forum. I want to add my own logo though can't find where to do it. I have looked in masterpage.master and there is nothing obvious there. Help! <% @ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %> <! < < DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">html xmlns="http://www.w3.org/1999/xhtml">head runat="server"> <title>Untitled Page</title> <script type="text/javascript"> document.execCommand( } try {"BackgroundImageCache", false, true);catch(err) {}</script> <asp:ContentPlaceHolder id="head" runat="server"> </ < </asp:ContentPlaceHolder>head>body> <form id="form1" runat="server"> <div> <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server" /> </div> </ </ </form>body>html>
|
|
|
|
Samuel
-
Total Posts
:
11857
-
Reward points
:
180790
- Joined: May 23 '01
-
Status: offline
|
Re:Removing ASP Logo on Forum Pages
Fri. Mar 18, '11 8:10 AM
( permalink)
Hi Bud, You can add your own logo right above the <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server" /> control using HTML tags (table, img, a, hr, etc.)
ASPPlayground.NET ~ see our Version 4 plans here
|
|
|
|