% If Not session("admin_loggedin" & strSUnique) = Session.SessionID then Response.Redirect "default.asp" %>
|
Advertisement Management and Banner Rotator
The board is pre-configured with Banner Rotator. The Rotator displays random banners at the top of the board on every page with every content change. Note: The rotator works by selecting a random number from the total number of active banner entries. If you have a small number of banners, then it is possible the same banner is displayed 2 or more times in a row. This should not alert you. The average number of each banner display is eventually equalized. The banners can be loaded with two methods: Automatically by a user and Manually by an administrator. Automated Banner Submission With this method users may submit banner by uploading an image and filling out an online form. Only registered users who created a regular user account with the board may apply for banner advertising. It is advisable to modify advertise.asp page to reflect the conditions and prices for banner submission. Since there may be a variety price schemes for banner advertisement, you have to establish it yourself. The part of the page where you will outline the price scheme, can be modified online. Logon to admin page, click on "Email Templates" and select "Advertisement" Template. Modify template or copy\paste your HTML code and click Save. The content you modified will appear at the top of the advertise.asp which can be navigated by clicking on Advertise link at the bottom navigation bar. If you have enabled a payment system, then the pay button will automatically appear at this page. Unlike the ad post, payments for banner rotator and\or other advertisement services on your site will not be automatically posted to user accounts due to variety of price scheme and services you may offer. Depending of the method selected by user during submission, the banner may be displayed for a certain period of time or until the certain number of impression are reached. Following would happen during Automated Submissions:
Administration and Manual Banner Submission The rotator configuration page can be accessed by logging to Admin page and clicking "Banner Rotator". With automated submission, the initial status of the banner is "Not Active". Once payment is received, you as administrator, would need activate the banner. Find the banner in the list, click Edit, make corrections if necessary, then check Activate, Notify User and save changes. The banner is added to randomizer and notification Email is sent to user about banner activation. When banner is Expired, the record is not deleted but status changes back to "Not Active". At this point if user decided to continue with advertising campaign, you will need to Reset banner. While resetting, the Start Date is changed to the current date. Impressions and clicks counter is getting reset to 0 as well. You may edit the record and add the duration or number of impressions and then activate a banner over. To delete the record completely, click delete within the list next to appropriate entry. At this point banner image is NOT deleted (only the reference to it in randomizer). The file itself appear within "Available banners" box. You may leave it alone or physically delete the file by clicking on "Delete banner Image" button. Note: It worth to mention, that administrator may configure banner campaign to run for certain period of time AND/OR until it reaches certain number of impressions, while the user must select between two methods when submitting request. This gives administrator more flexibility to have no limit for banner campaign at all. Very useful if you want to submit your own banner for other site or for the site of your friends for instance (See manual submission below). To Submit Banner Manually you would need:
Within the list you may see the cumulative statistics for actual impressions and clicks on the banner since the beginning of the campaign. The detailed (daily) statistics can be accessed by users who submitted the banner. While logged, user may go to Advertise page and click on See Rotator Statistics. All banners and sites associated with this user will be displayed. No user can see the other user statistics. Option for advanced users You may move rotator to the bottom of the page. Open header.asp, locate line <%= RotateBanner %> and move it into appropriate place in footer.asp page. If you would like for the banner to appear on certain pages only, then remove the above string from header.asp at all and place it anywhere you'd like within designated pages. This version allows to quickly modify appearance of the board changing the board width and horizontal position. The Board has also been configured to accept up to 10 pages of advertisement, news or any other content. Each side of the board can accommodate 5 pages in any format (htm, asp, php...). The pages may be stored locally in "advert" folder, or anywhere on the web, as long as they have a valid URL address. It is more convenient to store them in "advert" folder because this way they are available for selection via drop-down box on "Advertisement Management" page.
Modifying Classified Board Appearance
Displaying Portal Content By default portal displayed only at the default.asp page. To enable portal for ALL other pages check "Show Portal on All pages" box and save changes. In addition you can hide Left/Right portal sides individually by modifying "Show Left Portal Bar" and "Show Right Portal Bar" check boxes status. Combining this feature with Side Bars advertising (see bellow) you can have a variety of different appearances for your board. Note: Portal Bars Content customized via Main Page Configuration page. To save space needed for some extensive Admin pages content, the portal is not displayed on any of the administrative pages. Displaying content bars Each left/right bars content page is displayed in a separate inline Frame. 5 frames on the left side bar are in header.asp and 5 frames on the right are in footer.asp. Therefore frames are visible on every page of the Classified Board. Moreover the content is refreshed each time visitors are jump from page to page on your board. This would allow you to place an add rotators to the frames content. The bars can be completely hidden by switching off "Enable" checkbox next to appropriate bar header (in "Side Bars Content & Geometry"). As well as configuring the overall width of each side bar To display the local page:
IMPORTANT: All HTML links within content pages must have a target specified in <a> tags. It must be either: .... target="_blank"> for a new page, or .... target="_top"> for the same page. If target is not specified, then all advertisement links will be opened within the same iframe!! The other way of advertisement, is to modify header.asp and footer.asp to display banners, rotators or any other content you wish to display for all pages on the board. |
| Top New Ads at the Remote site |
|
You may display top 5 new ads at the
remote site in a form of scrolling ticker. This can also be displayed at your
site but on pages other that classified. The "heart" of this solution is the
feed.js which dynamically generated at the same time the ticker on your
classified is created. This script is located in "cl_upload" folder. Locate a best place to display a scrolling
ticker at the destination page. This could be a table cell, a <div> or <p>
layer. Then place the following code inside that layer:
<script type="text/javascript">
<!-- rc_text = "Latest Ads:"; // Text Preceding the Ad Links rc_ticker_width = "300"; // Ticker width. Can be a number in px - "200" or % - "100%" rc_ticker_height = "15"; // Ticker height rc_color_border = "gray"; // Border Color. can be hex - #FFFFFF rc_border_width = "1"; // Border Width. Set 0 to remove border rc_color_bg = "white"; // Background Color rc_color_link = "red"; // Ad Links Color rc_color_text = "black"; // Preceding Text Color rc_ticker_font_size = "10pt"; // Ticker Font Size rc_ticker_font_style = "none"; // Font Style. "bold" or "none" rc_ticker_align = "left"; // Ticker position within parent layer. "center" or "left" or "right" rc_scrollamount = 1; // Number of pixels the text scrolls between each subsequent drawing rc_scrolldelay = 10; // Ticker Speed. (higher number - slows down ticker) rc_direction = "left"; // Scrolling Direction. "left" or "right or "up" or "down" rc_behavior = "scroll"; // "scroll" - infinite loop. "slide" - scrolls to the end and stops (IE only), "alternate" - triggers direction (best with rc_direction = "up") rc_margin = "3px"; // Set Margins (distance between text and border) //--> </script> <script type="text/javascript" src="http://yourdomain/rc_location/cl_upload/feed.js"></script> Configure ticker options such as width,
height, font... etc.
|