How to publish data (messages) on a web page

I'm looking for a simple POSt the data automatically after it was presented. It is an internal web site for a group of users that is located on a shared network drive. Have looked for tutorials and not much chance for a simple method. Any help will be greatly appreciated.

Thank you

Todd

A simple way, using a server side include.  The include file could be a very simple list like this:

  • announcement 1
  • Ad 2
  • Ad 3

Then add a server include the statement in the parent page where you want your ad to appear.

More on SSI:

http://forums.Adobe.com/message/2112460#2112460

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
http://ALT-Web.com/
http://Twitter.com/ALTWEB
http://ALT-Web.blogspot.com

Tags: Dreamweaver

Similar Questions

  • When I connect Yahoo mail, I get a message "of the Web page" that says "out of memory online: 1".»

    Message from Web page blocks the mailbox.

    When I connect Yahoo mail, I get a message "of the Web page" that says "out of memory online: 1".» How can I get rid of him?

    First I would try the cleaning of your story/temp IE files
    -> Tools-> Internet Options click on the browser history under delete-> check all box, and then select 'delete '.
    Restart the browser and see if you are able to connect to Yahoo mail

    If this is not the case, try this:
    http://support.Microsoft.com/kb/126962

  • Change a data area on all web pages from a single source.

    I need to change the data on all the web pages on a constant basis. How can I make a single source since Spry is no longer supported.

    Personally, if the server has installed PHP (most do so, but check with your host), I would use a server side include: Server Side Includes > Introduction

    That would allow you to edit and upload a file, the server would then add the information in this file to your pages anywhere where you add the code of tiny include.

  • How can I get my example Yahoo web pages to fit the screen of my computer?

    How can I get my example Yahoo web pages to fit the screen of my computer?  When I open yahoo page is longer then the screen of my computer. This is happening on all pages, when I opened.

    Advisor.

    Andy

    original title: computer screen

    Hello!

    Try this:
    1. shoot to the top of your Internet explore
    2. go to the toolbar at the top of the page go to hell VIEW > ZOOM > and adjust the size of the page that will fit your window.
    Hope this helps,
    Thank you
    Makoi
  • How to create component message layout, Standard region page header?

    Hi all

    Please help me on this

    How to create component message layout, header region page Standard using customization?

    Thanx

    Hello

    create the header area and component message page layout in your JDEV with VO required, AM a CO server migration.

    Go to the page you need and then create the stack layout using personalization and in her extends well provided that the path for the region you created in JDev.

    Hope this will help with customization, it is not possible to create the header region.

    Kind regards
    Out Sharma

  • How to deploy an extension to the web page you are working on that

    I use DW CS3 I can download an extension on the web, then click it and it says the installed extension. I can open the extensions Manager and see, but I can't figure out how to get the extension on my web page, I'm working on. I tried to click on install and it isn't allowing me to go where the extension is and when I opened the extension is just ask me if I want to replace the extension in the extension manager. I can get the entensions to the Manager but I can't use it on my web pages I have created. Here, any help would be appreciated.

    What specific extension?

    If you open the extension manager and click on this extension, there are
    comment usually the creator on this menu to use to find and USE the
    extension.

    --
    Alan
    Adobe Community Expert, dreamweaver

    http://www.Adobe.com/communities/experts/

  • How do I post messages on a Web site

    Hey everybody,

    I was wondering if there is a way to display messages on the Web site using an application I created. I know it has to do with the API - but I was wondering how would the structure of code for such a task. I have a text input and a button that should display the message in text on a Web site. Is there anyway I can make the app automatically post to a page if I provide a URL?

    Thanks in advance!

    Hey Jimmy,

    This code should you get. He gets a user to input a single textfield and submit its as a POST to a Web page that you provide as a URLRequest and then set up the charger with data and submit it and once it receives a confirmation email that the data has been submitted it will warn you. his code:

    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.net.URLLoader;
        import flash.net.URLRequest;
        import flash.net.URLRequestMethod;
        import flash.net.URLVariables;
        import flash.net.navigateToURL;
        import flash.text.TextFieldAutoSize;
    
        import qnx.ui.buttons.LabelButton;
        import qnx.ui.text.Label;
        import qnx.ui.text.TextInput;
    
        [SWF(width="1024",height="600",backgroundColor="#CCCCCC",frameRate="30")]
        public class RandomTests extends Sprite
        {
            private var enterText:TextInput;
            private var enterBtn:LabelButton;
            private var statusText:Label;
            private var loader:URLLoader;
    
            public function RandomTests()
            {
                enterText = new TextInput();
                enterText.setSize(400, 50);
    
                addChild(enterText);
    
                enterBtn = new LabelButton();
                enterBtn.label = "Click me to post";
                enterBtn.setPosition(410,0);
                enterBtn.setSize(150,50);
                enterBtn.addEventListener(MouseEvent.CLICK, postData);
    
                addChild(enterBtn);
    
                statusText = new Label();
                statusText.autoSize = TextFieldAutoSize.LEFT;
                statusText.setPosition(0,100);
                statusText.format.color = 0xFF0000;
    
                addChild(statusText);
            }
            public function postData(e:MouseEvent):void
            {
                /*
                 * url:String will store the address to your page online
                */
                var url:String = "http://www.rabcore.com/workshop/receivePost.php";
                /*
                 * request:URLRequest is what you send with all your variables
                 * and data to using the loader class
                */
                var request:URLRequest = new URLRequest(url);
                /*
                 * variables:URLVariables will store all the variables you
                 * want to submit to the webserver
                */
                var variables:URLVariables = new URLVariables();
                /*
                 * for every variable you want to send use the
                 * variables.[variable_name] = "string" format
                */
                variables.showMeData = enterText.text;
                /*
                 * add the variables to the request
                */
                request.data = variables;
                /*
                 * set the method to POST if you are submitting a form
                 * type that does not have a URL query string
                 * set the GET if you want the variables to show up
                 * up as a url query string (e.g. page.php?showMeData=something)
                */
                request.method = URLRequestMethod.POST;
    
                /*
                 * set up the URLLoader object that will send the request to
                 * the server
                */
                loader = new URLLoader();
                /*
                 * set up a listener to check when the request has been sent and
                 * received by the webserver using the Event.COMPLETE event
                */
                loader.addEventListener(Event.COMPLETE, updateStatus);
                /*
                 * finally send the request to the webserver
                */
                loader.load(request);
            }
            public function updateStatus(e:Event):void
            {
                statusText.text = "Data has been submitted successfully.";
                /*
                 * remove listeners when done
                */
                loader.removeEventListener(Event.COMPLETE, updateStatus);
            }
        }
    }
    

    Let me know if you need any explanation. Good luck!

    Edit: Comments added to the source code

  • How can I eliminate frequent Explorer script error notification and message of the Web page advising the same error on the screen?

    I use Explorer XP and I have version 8 of belief. I constantly receive the same opinion on many different sites, thet being in the opinion of the Script Explorer error with a Web page message saying that an error has occurred in this view, error 53, permission denied. I don't know why or what it means, or how to remove it. I click OK and continue what I'm doing.

    Hi jerryschroer,

    Did you do any hardware changes or software on your computer before this problem?

    You can follow this link completely and check if the problem persists:

    How to fix script errors in Internet Explorer on Windows computers?

    Hope the helps of information.

  • How to publish your site to one web server (other than the Business Catalyst)

    I want to know how to publish my site by uploading files to a web server Godaddy when I click on publish the only option I have is to use Business Catalyst, I want to use my Godaddy hosting and my own domain name.

    Thank you for your help.

    Carmen

    Hello

    As I know, the version you use for Adobe Muse is 1.1 which is an older version of Muse.

    This feature has been added in the latest version of Adobe Muse.

    I would you please uninstall Adobe Muse from your computer user n suggest the link below and download and install the latest version of Adobe Muse on your computer:

    Adobe Muse for Mac: http://www.adobe.com/go/muse_latest_mac

    Adobe Muse for Win: http://www.adobe.com/go/muse_latest_win

    I hope this helps.

    Kind regards

    Sachin

  • Cannot get on internet, ebay or by e-mail. Get a message that says - Web page not available-. How can I fix th

    Cannot get on internet, ebay or by e-mail. I get the page that says - Web page not available-. How can I fix?

    Make sure that you are connected to your WiFi network and make sure that an internet connection could be established since the modem (the area where past the line cable or phone) and the router (the box that connects to the modem via ethernet).

  • Impossible to import picture in the message of the Web page

    Impossible to import a picture to the message Web page

    Which Web page? What are you trying to do, download on a web page or download from a web page? How do you try to do this?

  • "Message from the Web Page" "out of Memory Line: 28"

    I get a pop up that says "Message from Web Page" "out of Memory Line: 28" what does this mean and how do I?

    Thank you, mimi61954

    See if the information below helps you solve the problem/s you have with Internet Explorer:

    http://support.Microsoft.com/default.aspx/KB/936213/?p=1

    "How to optimize Internet Explorer"

    Configuration in Windows Internet Explorer 7 and Windows Internet Explorer 8 settings can cause one or more of the following problems:

    ·     You experience performance issues in Internet Explorer.

    ·     You receive an error message in Internet Explorer. For example, you receive a message error "Internet Explorer cannot display the webpage".

    ·     Internet Explorer stops responding.

    This article describes how optimize or reset Internet Explorer in Windows Vista to solve these problems.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/936215

    "How to solve the problems of Internet Explorer in Windows Vista and Windows XP"

    This article explains how to solve any problems that you may experience when you use Windows Internet Explorer 7 or Windows Internet Explorer 8 on a computer that is running Windows Vista.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/936214/

    "How to solve compatibility problems that affect Internet Explorer 7 in Windows Vista"

    This article describes how to troubleshoot software compatibility affecting Windows Internet Explorer 7. To help determine which program may be the cause of the problem, you can do the following:

    1 use the mode safe mode with networking

    2. perform a clean boot

    3. use another user account

    4 scan your computer against viruses and spyware

    5. run Internet Explorer 7 in "no Add-ons" mode

    Hope the above helps.

    See you soon.

    Mick Murphy - Microsoft partner

  • display a success message on a Web page based on a validation in a java class

    Hi all

    I'm stuck at a fundamental question. I do form validations in an adf application. I am able to print the error messages via ValidatorExceptions on the Web page, whenever a validation fails. But in the case of a successful event, for example change of password scenario, when the password is changed, I need to show the user a message of success for the success of the event and provide a link to the home page.

    How is it possible, without having to switch between the pop-up windows using switcher.

    Any ideas or pointers greatly appreciated.

    PS: I use version 11.1 of Jdev

    Thanks in advance.

    Hello

    You can insert html tags in the text of the message in the java source code.

    Look at this example:

    public void addMessage()

    {

    String html ='"Select link: http://www.google.com------" > Google";

    FacesMessage fm = new FacesMessage (FacesMessage.SEVERITY_INFO, html, null);

    FacesContext.getCurrentInstance () .addMessage (null, fm);

    }

    RFH.

  • How to add external content to our Web page

    Hi all

    I need to add a virtual reality panorama to my Web page. VR Pano that's HTML plus two records. Can I store on my ftp and share it, but how to integrate it to the Web page? I can't copy all of the html code, because there are two additional files. Any ideas?

    In this case, you can simply download the two files on your site through FTP to the desired location and update the path in the Pano RV HTML code that you would be inserted into pages of Muse to the object-> the option Insert HTML code in order to call these scripts from their relative location.

    You can also take a look at this thread where the user had a similar query.

    http://forums.Adobe.com/message/5078401#5078401

    Thank you

    Vinayak

  • How to establish the size of the web page?

    I'm developing a simple web page that has about 10 pages on it. With the help of tables especially to organize. Problem... every page is a different length, with large areas of empty space at the bottom. The only control I can find established the size of the window, not the size of the page. Any suggestions would be greatly appreciated.

    Hello

    The amount of empty space below the contents of your pages is controlled by
    the size of the browser users, specifically to the height. You cannot simply
    know what it's going to be.
    However, you can do things to try to make when your content ends at glance
    similar between pages.

    You can do such things that give your site a certain content area
    background color and the body, another one, or a border at the bottom of
    the content area... do anything to show where the ends of the content. Then, try to
    Check this breakpoint to a similar position on each page. In this way, the end of
    the content of the pages component will be better aligned as you move from one page to
    page.

    One way to do is to use a column in your table with a menu and
    images, for example. Any other content could be in the next column
    This.
    If you do this sidebar as large as the largest content of any page, and
    keep the same on all pages, the minimum height of the table will be
    controlled by this column on each page.

    No matter how you do it, it can be difficult. Don't forget that users can have
    a size of different text in their browser than what you designed with. Content
    text boxes can be taller on their screens. In addition, the larger text.
    These content areas will be larger than the other pages with little text or
    images, which do not change size. That's why I said the minimum height
    your table can be controlled by this column.

    Well, there are other ways to attack this problem.
    If you could post a link, I'm sure you'll get some good ideas :-)

    Take care
    Tim

    "dayarts" wrote in message
    News:fnfkd0$DQQ$1@forums. Macromedia.com...
    > I'm developing a simple web page that has about 10 pages on it. Using
    > tables
    > mainly to organize it. Problem... each page are another
    > length,.
    > with large areas of empty space at the bottom. The only control I can find
    > set the size of the window, not the size of the page. Any suggestions
    > would be
    > appreciated.
    >

Maybe you are looking for