webbot comment tag in my html source code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fatimahtaher
    New Member
    • Jan 2007
    • 11

    webbot comment tag in my html source code

    Hi. I have a problem with a Web page that was created by someone else in FrontPage. Apparently the mouseover drop down menu (I don't know the technical term for it) has shifted (moved further up) and I don't know how to fix it. When I look at the code this is what I get:

    <!--webbot bot="Include" U-Include="nav.ht ml" TAG="BODY" -->

    There is no location for me to adjust. Please help.
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    From what I gather, this is FrontPage only stuff and the file it is including is nav.html, but I guess you know that. But that's content and I don't know if it would affect the menu. Got link?

    Comment

    • fatimahtaher
      New Member
      • Jan 2007
      • 11

      #3
      Yes. Here's the URL to the actual Web page.



      And here's the URL to the nav page:



      I would appreciate any help you can provide.

      Thank you.
      Fatimah

      Comment

      • drhowarddrfine
        Recognized Expert Expert
        • Sep 2006
        • 7434

        #4
        This looks like the typical bad code FrontPage produces. It's rather antiquated. I'm leaving in a few minutes and won't be back till tomorrow. But you'll need a doctype if you want this to work in all browsers. See the stick at the top of this forum and use the html4.01 transitional one.

        Comment

        • AricC
          Recognized Expert Top Contributor
          • Oct 2006
          • 1885

          #5
          You really don't need to include your code that way there are several other ways to do this. From looking at the post above if you are using front page you should consider re-coding the page. Front page is notorious for heinous code (as stated above) and longer than needed messy code. If you want to get rid of that webbot junk use <? include("nav.ht m") ?> or <!--#include virtual="insert thisfile.html" --> (These are server side commands)

          HTH,
          Aric

          Comment

          • fatimahtaher
            New Member
            • Jan 2007
            • 11

            #6
            Thank you. I will try that.

            Fatimah

            Comment

            • fatimahtaher
              New Member
              • Jan 2007
              • 11

              #7
              Originally posted by drhowarddrfine
              This looks like the typical bad code FrontPage produces. It's rather antiquated. I'm leaving in a few minutes and won't be back till tomorrow. But you'll need a doctype if you want this to work in all browsers. See the stick at the top of this forum and use the html4.01 transitional one.
              Appreciate any help. Thanks.

              Fatimah

              Comment

              • drhowarddrfine
                Recognized Expert Expert
                • Sep 2006
                • 7434

                #8
                If you are allowed to experiment with that page, then change this part:

                <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:v="urn:sc hemas-microsoft-com:vml" xmlns:o="urn:sc hemas-microsoft-com:office:offi ce" xmlns:(null)1=" http://www.w3.org/TR/REC-html40" lang="en"><head >

                <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"><title>Un iversity Rideshare Programs</title>

                <link href="ursprogra ms.css" rel="stylesheet " type="text/css">
                <script language="JavaS cript" src="ursprogram s.js"></script></head><body>

                <!--webbot bot="Include" U-Include="banner .html" TAG="BODY" startspan -->

                To this:

                <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
                <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
                <head>
                <title>Universi ty Rideshare Programs</title>
                <meta http-equiv="content-type"
                content="text/html;charset=ut f-8" />
                <link href="ursprogra ms.css" rel="stylesheet " type="text/css">
                <script type="text/javascript src="ursprogram s.js" />
                </head>
                <body>

                And see what happens.

                Comment

                • fatimahtaher
                  New Member
                  • Jan 2007
                  • 11

                  #9
                  Originally posted by drhowarddrfine
                  If you are allowed to experiment with that page, then change this part:

                  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:v="urn:sc hemas-microsoft-com:vml" xmlns:o="urn:sc hemas-microsoft-com:office:offi ce" xmlns:(null)1=" http://www.w3.org/TR/REC-html40" lang="en"><head >

                  <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"><title>Un iversity Rideshare Programs</title>

                  <link href="ursprogra ms.css" rel="stylesheet " type="text/css">
                  <script language="JavaS cript" src="ursprogram s.js"></script></head><body>

                  <!--webbot bot="Include" U-Include="banner .html" TAG="BODY" startspan -->

                  To this:

                  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
                  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
                  <head>
                  <title>Universi ty Rideshare Programs</title>
                  <meta http-equiv="content-type"
                  content="text/html;charset=ut f-8" />
                  <link href="ursprogra ms.css" rel="stylesheet " type="text/css">
                  <script type="text/javascript src="ursprogram s.js" />
                  </head>
                  <body>

                  And see what happens.
                  I tried that and when I switched over to design view - it was just a blank page.

                  Fatimah

                  Comment

                  • drhowarddrfine
                    Recognized Expert Expert
                    • Sep 2006
                    • 7434

                    #10
                    Well, I didn't look at how it would affect the rest of the code so I'll look at it later.

                    Comment

                    Working...