Strange problem while login to SCN in Internet explorer

Dear All,
I am facing a strange problem, where i am unable to login into SCN through Internet explorer, as when i click logon button a blank screen is coming and the login screen is not opening.Its happening  both in my office and house.
This question i am posting through google chrome, where i am able to get the below screen.
The attached image is what i am getting i am talking about
Is this problem coming for everyone,kindly let me know.As in my office we are using only Internet explorer and i am unable to work on SCN.
Kindly let me know bout it.Since i am active in this module, i am posting the question here.
Thanks&Regards
Darshan Desai

Hi,
Please repost at SCN Support to get quick solution.
IE 9 is best suitable for our forum. IE 11 is not working as required. I am also using Google Chrome at home. But at office i am using  IE9.
Thanks & Regards,
Nagarajan

Similar Messages

  • Strange problem while clearing a customer

    Hi everybody
    I am encountering this strange problem while trying to clear some open items for certain customers. Though these customers have open items on them (checked in BSID and FBL5N), the system is giving a warning message saying that there are no open items on the customers while trying F-30 and F-32.
    The only thing that was different for these customers from the rest was that these customers had some transactions which were supposed to be cleared through AP payment run. (transactions for customer payment).
    Can anybody explain why the system was not considering these line items as open while accessing F-30 and F-32??

    Hi,
    - check SAP Note 136754
    some table fields in the missing documents using Transaction SE16. The following conditions must exist:
    BSIS-XOPVW = X      (Indicator: Open item management, only for G/L                     accounts)
    BSEG-XOPVW = X      (Indicator: Open item management)
    BSEG-AUGBL = space  (clearing document number)
    BSEG-DISBN = space  (discount document number)
    BKPF-BSTAT = space  (document status)
    BKPF-XSTOV = space  (indicator reversal flag)
    REGUS/REGUP -> see below
    Should one or more conditions not exist, please note the following information:
    1. BSEG-XOPVW <> X or BSIS-XOPVW <> X for G/L account line items:
                  The line item presumably comes from a time before you activated the open item management of a G/L account. Documents before this master record change do not contain this technical information. Use report RFSEPA02 if you want to bring the documents in line with the new master record. You must refer to the documentation of this report.
                  Because there may be problems subsequently acivating open item management, RFSEPA02 was changed as of Release 4.5A so that it cannot be started without modifications. SAP wants to make sure you are familiar with the problems, which may result from activating open item management. You can however restart RFSEPA02 when you have deactivated the line:
                  leave program.
    2. BSEG-XOPVW <> X for open item account line items:
                  This data status is not allowed. Contact the SAP Hotline.
    3. BSEG-DISBN <> space.
                  The line item has already been used within bill of exchange accounting.
    4. BKPF-BSTAT <> space.
                  This is a document with a special function, for example a sample document or recurring entry document. Generally these are not taken into account in clearing transactions.
    5. BKPF-XSTOV <> space.
                  The document was flagged for reversal. Only if you cancel the reversal flag, can you clear the document again. You can do this by removing the planned date for the reverse posting (BKPF-STODT) in the document header using Transaction FB02 (Change document).
    6. REGUS/REGUP:
                  Look at table REGUS using Transaction SE16. Enter the account (KONKO) in the selection screen. If you selected an entry, use the information Run date (LAUFD) and Identification (LAUFI) in Transaction F110 (payment program). Check the status of the payment run. If only the proposal was carried out, the documents proposed for payment are blocked for other clearing transactions. It is only when you delete the proposal run that the items are taken into account again in the clearing transaction.
    Rgds.

  • Strange problem while execution of query....

    Hi Friends
    I am facing a strange problem while executing the query.
    I have one query ,its old one ,till yesterday everday it was working fine ,
    But today i am trying to execute that query ,execution process takes very long time ,finally no response from bw server.
    its an important report in our company
    I checked query , Every thing is ok ,bze i haven't made any changes
    So i need some suggetions  .like where can i check and what can i do?
    ASAP ....  So Please ...its very urgent....
    EVERY THING AND ANY THING WILL BE REWARED
    Thanks in advance
    RK

    Hi
    Stefan
    Thank you for your valuable suggestion
    the problem is solved
    Already i  assigned  points.
    Thnaks & Regards
    RK

  • Strange problem while building a secondary index.

    Hi,
    I have a strange problem in creating a secondary index which is a part of primary data.
    I tested my program and a working sample program
    My data scheme looks like:
       Key = unique string
       Data = structure {
                        time_t timestamp;
        Secondary Key = timestamp in data (NOT unique)
    My BDB environment flags is "DB_CREATE | DB_INIT_CDB | DB_INIT_MPOOL | DB_THREAD"
    The primary DB is created as BTREE with a custom key compare function provided by calling DB->set_bt_compare.
    int my_key_compare(DB *db, const DBT *key1, const DBT *key2)
         const char *k1_v = (const char *)key1->data;
         const char *k2_v = (const char *)key2->data;
         return strcmp(k1_v, k2_v);
    The secondary Index DB is created as BTREE while permitting duplication. (DB_DUPSORT)
    It has two custom callback functions; one for data compare, the other for extracting a data from the primary data.
    int my_extract_timestamp(DB *db, const DBT *primary_key, const DBT *primary_data, DBT *secdondary_key)
         secondary_key->data = ( (MY_DATA *)(primary_data->data))->timestamp;
         secondary_key->size = sizeof(time_t);
         return 0;
    int my_secondary_dup_compare(DB *db, const DBT *key1, const DBT *key2)
         time_t      k1_v = *(time_t *)key1->data;
         time_t      k2_v = *(time_t *)key2->data;
         return k1_v - k2_v;
    The function 'my_extract_timestamp' is set by calling DB->associate().
    My problem is 'my_secondary_dup_compare' function called with a strange DBT values.
    I think the values should point to the value provided from my_extract_timestamp(), but they pointed to
    the key which provided when calling DB->put on the primary DB.
    Could somebody help me ?
    Any help highly appreciated.

    Hi,
    In the secondary database, the key is what you extract and the data is the key of the primary database. As your primary key is a unique string, your data in secondary database is also a unique string. The DB->set_dup_compare sets the comparison function for the duplicate data, so you are comparing time stamps on unique strings, not on what you extract.
    As you are comparing the time stamps which are the keys of secondary database, I guess here you want to set the bt_compare function instead of the dup_compare for the secondary database.
    Also, about this sentence:
    secondary_key->data = ( (MY_DATA *)(primary_data->data))->timestamp;
    The DBT.data should be an address, but this is a value here instead of an address.
    Regards,
    Winter, Oracle Berkeley DB

  • Strange Problem While Recording

    I have a PushBufferStream that I separated in 4, because the first one have 4 videos multiplexed. Then I tried to record one of the new PushBufferStreams by wrapping it in a new DataSource in a new Processor. I created the DataSink and started to record and it worked well. But the video file generated (an .AVI) have a strange problem. It has the duration of the original DataSource, not the duration of the recording time. If I start the original DataSource now and after one minute record the PushBufferStream by 5 seconds, the video file created have 1minute and 5 seconds. In the first image just a static image (the first frame) is shown, and in the lasts 5 seconds the video is shown normaly.
    Does anyone could help me, I don�t know what could I do to solve the problem? Thanks.

    just a thought, check how much memory your app is using, is it storing a minuites worth of video in memory, then when yu record for your five seconds, it's dumpng the whole lot into your avi file.
    maybe empty your buffer before you record.

  • A strange problem while Solaris9 CC compile union

    I met a strange question while using solaris9 CC to compile my code.
    These codes looks like as following:
    typedef
    struct {
    int len;
    union {
    DWORD u;
    #if BYTE_ORDER == BIG_ENDIAN
    struct {
    BYTE ext1 : 1;
    BYTE codingStd : 2;
    BYTE infoTransCap : 5;
    BYTE ext2 : 1;
    BYTE transMode : 2;
    BYTE infoTransRate : 5;
    BYTE ext3 : 1;
    BYTE rateMutiplier : 7;
    BYTE ext4 : 1;
    BYTE LAYER1IDENT : 2;
    BYTE USERINFOLAYER : 5;
    } U4;
    struct {
    BYTE EXT1 : 1;
    BYTE CODINGSTD : 2;
    BYTE INFOTRANSCAP : 5;
    BYTE EXT2 : 1;
    BYTE TRANSMODE : 2;
    BYTE INFOTRANSRATE : 5;
    BYTE EXT3 : 1;
    BYTE LAYER1IDENT : 2;
    BYTE USERINFOLAYER : 5;
    BYTE : 8;
    } U3;
    #elif BYTE_ORDER == LITTLE_ENDIAN
    struct {
    BYTE infoTransCap : 5;
    BYTE codingStd : 2;
    BYTE ext1 : 1;
    BYTE infoTransRate : 5;
    BYTE transMode : 2;
    BYTE ext2 : 1;
    BYTE rateMutiplier : 7;
    BYTE ext3 : 1;
    BYTE USERINFOLAYER : 5;
    BYTE LAYER1IDENT : 2;
    BYTE ext4 : 1;
    } U4;
    struct {
    BYTE INFOTRANSCAP : 5;
    BYTE CODINGSTD : 2;
    BYTE EXT1 : 1;
    BYTE INFOTRANSRATE : 5;
    BYTE TRANSMODE : 2;
    BYTE EXT2 : 1;
    BYTE USERINFOLAYER : 5;
    BYTE LAYER1IDENT : 2;
    BYTE EXT3 : 1;
    BYTE : 8;
    } U3;
    #endif /* BYTE_ORDER */
    }_U;
    } CaBEARER, *CaLPBEARER;
    at xxx.cpp , I write some codes:
    bearer._U.U3.EXT1 = 0x01;
    bearer._U.U3.CODINGSTD = 0x01;
    bearer._U.U3.INFOTRANSCAP = 0x08;
    bearer._U.U3.EXT2 = 0x01;
    bearer._U.U3.TRANSMODE = 0x00;
    bearer._U.U3.INFOTRANSRATE = 0x00;
    bearer._U.U3.EXT3 = 0x01;
    bearer._U.U3.LAYER1IDENT = 0x01;
    bearer._U.U3.USERINFOLAYER = 0x05;
    But I compile it, CC reports these errors
    Error: Badly formed expression.
    Error: Identifier expected instead of "0x00000001".
    What' wong with these codes? how to do ?
    Thank you!

    At a.h
    typedef
    struct {
    int len;
    union {
    DWORD u;
    #if BYTE_ORDER == BIG_ENDIAN
    struct {
    BYTE ext1 : 1;
    BYTE codingStd : 2;
    BYTE infoTransCap : 5;
    BYTE ext2 : 1;
    BYTE transMode : 2;
    BYTE infoTransRate : 5;
    BYTE ext3 : 1;
    BYTE rateMutiplier : 7;
    BYTE ext4 : 1;
    BYTE LAYER1IDENT : 2;
    BYTE USERINFOLAYER : 5;
    } U4;
    struct {
    BYTE EXT1 : 1;
    BYTE CODINGSTD : 2;
    BYTE INFOTRANSCAP : 5;
    BYTE EXT2 : 1;
    BYTE TRANSMODE : 2;
    BYTE INFOTRANSRATE : 5;
    BYTE EXT3 : 1;
    BYTE LAYER1IDENT : 2;
    BYTE USERINFOLAYER : 5;
    BYTE : 8;
    } U3;
    #elif BYTE_ORDER == LITTLE_ENDIAN
    struct {
    BYTE infoTransCap : 5;
    BYTE codingStd : 2;
    BYTE ext1 : 1;
    BYTE infoTransRate : 5;
    BYTE transMode : 2;
    BYTE ext2 : 1;
    BYTE rateMutiplier : 7;
    BYTE ext3 : 1;
    BYTE USERINFOLAYER : 5;
    BYTE LAYER1IDENT : 2;
    BYTE ext4 : 1;
    } U4;
    struct {
    BYTE INFOTRANSCAP : 5;
    BYTE CODINGSTD : 2;
    BYTE EXT1 : 1;
    BYTE INFOTRANSRATE : 5;
    BYTE TRANSMODE : 2;
    BYTE EXT2 : 1;
    BYTE USERINFOLAYER : 5;
    BYTE LAYER1IDENT : 2;
    BYTE EXT3 : 1;
    BYTE : 8;
    } U3;
    #endif /* BYTE_ORDER */
    }_U;
    } CaBEARER, *CaLPBEARER;
    At b.cpp
    #include "a.h"
    CaBEARER bearer;
    1:bearer._U.U3.EXT1 = 0x01;
    2:bearer._U.U3.CODINGSTD = 0x01;
    3:bearer._U.U3.INFOTRANSCAP = 0x08;
    4:bearer._U.U3.EXT2 = 0x01;
    5:bearer._U.U3.TRANSMODE = 0x00;
    6:bearer._U.U3.INFOTRANSRATE = 0x00;
    7:bearer._U.U3.EXT3 = 0x01;
    8:bearer._U.U3.LAYER1IDENT = 0x01;
    9:bearer._U.U3.USERINFOLAYER = 0x05;
    But I compile it, CC reports these errors
    Line 1:Error: Badly formed expression.
    Line 1:Error: Identifier expected instead of "0x00000001".
    Line 2:Error: Badly formed expression.
    Line 2:Error: Identifier expected instead of "0x00000001".
    Line 3:Error: Badly formed expression.
    Line 3:Error: Identifier expected instead of "0x00000001".
    Line 4:Error: Badly formed expression.
    Line 4:Error: Identifier expected instead of "0x00000001".
    Line 5:Error: Badly formed expression.
    Line 5:Error: Identifier expected instead of "0x00000001".
    Line 6:Error: Badly formed expression.
    Line 6:Error: Identifier expected instead of "0x00000001".
    Line 7:Error: Badly formed expression.
    Line 7:Error: Identifier expected instead of "0x00000001".
    Line 7:Error: Badly formed expression.
    Line 8:Error: Identifier expected instead of "0x00000001".
    Line 8:Error: Badly formed expression.
    Line 9:Error: Identifier expected instead of "0x00000001".
    Line 9:Error: Badly formed expression.

  • Strange problem while syncronizing catalog

    I am doing a syncronization, once every two weeks or so. Since I started using Lightroom 3 (now 3.3) I end up with a very strange problem, that makes it almost impossible to sync the catalog.
    I get the window were it tells me to "add" pictures or movies without "moving" the images, then after I push the buttom it only takes a moment before I get up a dialog box were it tells me; " Community toolbar" with bold text and then "We're sorry, but the Safari browser version you are currently using does not support the community toolbar"
    If I do not push "OK", so that the dialog box dissapeare the syncronization will not move on. For every image I want to ad the same dialog box appears and I have to push "ok" again.
    Do not understand this at all. I have tried to update the Safari. I also been in contact with the phone support that could not help me.
    Anyone?
    // Torbjorn

    Hello
    I use Mac OSX 10.6.6
    Do not have any add-ons
    And Yes it is when I syncronize  the hole catalog. In the catalog I have several folders.
    //Torbjorn

  • Problem in Opening HTML Page in Internet Explorer from my Swing Application

    Hi,
    I am opening a HTML file in Internet Explorer from my swing application.I am using the code given below
    private final static String WIN_FLAG = "url.dll,FileProtocolHandler";
    private final static String WIN_PATH = "rundll32";
    String cmd = WIN_PATH + " " + WIN_FLAG + " " + url;
    // url is HTML file Path
    Process p = Runtime.getRuntime().exec( cmd );
    Here there are two things i need to address ...
    1)The HTML file is opening up,but it always opens behind the swing application,that makes me every time to maximize the HTML file after it being opened up.I want to open it in front of the Swing Application.I need to implement "Always On Top" functionality for the html page.
    2)Whenever i trigger action to open different HTML page,it opens in new Internet Explorer window.
    I need to open it in same IE window.
    how to solve out these problems ??? any help would be greatly appreciated .Thanks in advance.
    - Manikandan

    any idea about this ????

  • Problem in "Save As" option in Internet Explorer 8

    When I want save the page in Internet Explorer 8 in save as type: Web Archive, single file (*.mht) is missing. Only HTML File is present. So I am unable to save any web page in a single file.
    Please give me the tricks so that I can get back the Web Archive, single file (*.mht) option.

    Hi,
    Did you installed any adds-on recently? For this problem, it would be better to remove IE in
    Turn Windows Features on or off of Control Panel for test.
    In addition, another workaround method is upgrade IE 8 to IE 11, you can have a try.
    If these method no use, please feel free let us know.
    Roger Lu
    TechNet Community Support

  • Having problem with spry menu bar in Internet Explorer.

    I'm having a problem with my spry menu bars in Internet Explorer.
    Here are the pictures:
    Firefox
    Internet Explorer
    HERE ARE THE CODES:
    HTML CODE:
    <style type="text/css">
    <!--
    #apDiv1 {
        position:absolute;
        width:160px;
        height:126px;
        z-index:1;
        left: 205px;
        top: 424px;
        margin: 0 auto;
    -->
    </style>
    <style type="text/css">
    #apDiv3 {
        position:absolute;
        width:254px;
        height:206px;
        z-index:2;
        left: 123px;
        top: 1529px;
    #apDiv4 {
        position:absolute;
        width:250px;
        height:194px;
        z-index:3;
        left: 381px;
        top: 1528px;
    #apDiv5 {
        position:absolute;
        width:256px;
        height:200px;
        z-index:4;
        left: 636px;
        top: 1529px;
    #apDiv6 {
        position:absolute;
        width:349px;
        height:205px;
        z-index:5;
        left: 889px;
        top: 1530px;
    </style>
    <style type="text/css">
    #apDiv7 {
        position:absolute;
        width:887px;
        height:204px;
        z-index:6;
        left: 324px;
        top: 905px;
    #apDiv8 {
        position:absolute;
        width:1295px;
        height:74px;
        z-index:1;
        left: 212px;
        top: 668px;
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    <style type="text/css">
    #apDiv2 {
        position:absolute;
        width:209px;
        height:197px;
        z-index:2;
        top: 1220px;
        left: 171px;
    #apDiv9 {
        position:absolute;
        width:331px;
        height:97px;
        z-index:3;
        left: 385px;
        top: 1218px;
    #apDiv10 {
        position:absolute;
        width:292px;
        height:199px;
        z-index:4;
        left: 724px;
        top: 1218px;
    #apDiv11 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:1;
    body {
        background-color: #000;
        background-image: url();
        text-align: center;
        color: #F00;
    .none {
        font-size: 80px;
        font-family: "Times New Roman", Times, serif;
        font-weight: bold;
    #apDiv12 {
        position:absolute;
        width:991px;
        height:60px;
        z-index:5;
        left: 198px;
        top: 192px;
    #apDiv13 {
        position:absolute;
        width:200px;
        height:115px;
        z-index:1;
        left: 588px;
        top: 322px;
    </style>
    <body onLoad="MM_preloadImages('images/WebConfroll.png','images/youthfootballroll.png','images/ statefbsweatshirt.png')">
    <p align="center" class="none"><img src="images/footballtitle.png" width="941" height="183"></p>
    <div align="center">
      <ul id="MenuBar2" class="MenuBarHorizontal">
        <li><a class="MenuBarItemSubmenu" href="#">[Placeholder]</a>
          <ul>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">[Placeholder]</a>
          <ul>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
            <li><a href="#">[Placeholder]</a></li>
          </ul>
        </li>
        <li><a class="MenuBarItemSubmenu" href="#">Videos</a>
          <ul>
            <li><a class="MenuBarItemSubmenu" href="#">2008 Videos</a>
              <ul>
                <li><a href="videos/2009 videos/Glenbard part one/partone.html">Glenbard South Game</a></li>
                <li><a href="#">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&# 160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[Placeholder]</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">2009 Videos</a>
              <ul>
                <li><a href="#">[Placeholder]</a></li>
                <li><a href="#">[Placeholder]</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">2010 Videos</a>
              <ul>
                <li><a href="#">[Placeholder]</a></li>
                <li><a href="#">[Placeholder]</a></li>
              </ul>
            </li>
          </ul>
        </li>
      </ul>
    </div>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><span class="cent"><img src="images/bulldoghelmit.png" width="150" height="99" /></span></p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p class="cent"> </p>
    <div align="center">
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li> <a class="MenuBarItemSubmenu" href="#">Football Season 2008</a>
          <ul>
            <li><a href="http://page.bps101.net/web/t1350/Football2009/2008%20Defense%20Stats.pdf">Defense Stats</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football2009/2008%20Offense%20Stats.pdf">Offense and Records</a></li>
            <li><a href="http://page.bps101.net/web/t1350/BHS%20All%20Time%20Stats.pdf">AllTime Data</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football2009/Western%20Sun%202009.pdf">Western Sun Final Standings</a></li>
          </ul>
        </li>
        <li> <a href="#" class="MenuBarItemSubmenu">Football Season 2009</a>
          <ul>
            <li><a href="http://page.bps101.net/web/t1350/Football%202010/2009%20Banquet%20Record%20and%20Stats.pdf">Defense Stats</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202010/2009%20Banquet%20Record%20and%20Stats.pdf">Record Book and Offense</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202010/All-Time%20Data%202009.pdf">Alltime Data</a></li>
          </ul>
        </li>
        <li> <a class="MenuBarItemSubmenu" href="#">Football Season 2010</a>
          <ul>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2011%20Checklist.pdf">2010-2011 Offseason Checklist</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2010%20Defense%20Stats%20Final.pdf">Defense Stats</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2010%20Stats%20Packet.pdf">Record Book and Offense</a></li>
            <li><a href="http://page.bps101.net/web/t1350/Football%202011/2010%20ALL%20TIME.pdf">Alltime Data</a></li>
          </ul>
        </li>
      </ul>
    </div>
    <p align="center"> </p>
    <p align="center"> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><img src="images/Batavia Youth football.png" alt="" width="869" height="200" /></p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image4','','images/WebConfroll.png',1)"></a></p>
    <div align="center">
      <div align="center"></div>
      <div align="center"><a href="http://www.athletics2000.com/upstate8/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image7','','images/WebConfroll.png',1)"><img src="images/WebConf.png" name="Image7" width="206" height="194" border="0" id="Image7" /></a><a href="http://www.bataviayouthfootball.org/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image6','','images/statefbsweatshirt.png',1)"><img src="images/statefbsweatshirt.jpg" name="Image6" width="375" height="199" border="0" id="Image6" /></a><a href="http://www.bataviayouthfootball.org/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image8','','images/youthfootballroll.png',1)"><img src="images/youth football.png" name="Image8" width="329" height="197" border="0" id="Image8" /></a></div>
    </div>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image5','','images/youthfootballroll.png',1)"></a></p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"> </p>
    <p align="center"><img src="images/Logos.png" width="1167" height="199" /></p>
    <script type="text/javascript">
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    CSS CODE
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: auto 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: 54em;
        border-top: thick solid #00F;
        border-left: thick solid #00F;
        border-right: thick solid #00F;
        border-bottom: thick solid #00F;
        height: 2.2em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        cursor: pointer;
        width: 18em;
        float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 18em;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 18em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #000;
        padding: 0.5em 0.75em;
        color: #C96;
        text-decoration: none;
        text-align: center;
        height: 1.2em;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #900;
        color: #009;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #900;
        color: #FFF;
        text-decoration: underline;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
        color: #FF0;
        font-family: "Lucida Console", Monaco, monospace;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    The website is http://wwww.bataviabulldogfootball.tk

    Note that running your page through the W3C Validator gives this list of errors: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.bataviabulldogfootball.tk%2F&charset=%2 8detect+automatically%29&doctype=Inline&group=0
    I see that you have a very thin doctype at the top. I suggest you create a new page in Dreamweaver and copy the bit at the top of the page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Then put that code in place of these lines from your current page:
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    I see that you have two opening <body> tags. Delete one; it is not needed. Add the preload images from the second into the first body tag and delete the second.
    I see code below the closing </html> tag. Re position it before the closing </body> tag.
    Because of these errors mentioned above, it was impossible to see the page. Fix and reply here when you have done so.
    Also, it is not possible for me to divine what difficulty you are having. If you can please also express it in English (LOL), I'll be happy to suggest a correction for you!
    Beth
    p.s. Posting entire blocks of code is NEVER as helpful as giving us a link to the pages in action. I seldom read through code dumps here in the Forum.
    Message was edited by: Zabeth69

  • Yahoo e-mail will not allow me to add contacts and will not auto fill e-mail addresses, and now I'm having trouble downloading Adobe documents from my bank. All of these problems can be solved by using Internet Explorer, but I prefer Firefox.

    I get an error message when trying to add new contacts and it is suggested I try back later, also when sending an e-mail the address I wish to send an e-mail to will no longer auto-fill. This has been a problem for sometime, maybe a month. The last problem I had was trying to download my March bank statement, in Adobe. If I switch to Internet Explorer I can accomplish these tasks. I am using Yahoo on both Firefox and Internet Explorer.

    Check the Ethernet connection to the AirPort Express. Make sure that the Ethernet connection from the Comcast modem is connected to the WAN port on the back of the AirPort Express. The WAN port is the one with the circle of dots shown over the port.
    It sounds like you are connected to the Ethernet LAN port.

  • Having trouble with sound while watching video clips using Internet Explorer?

    sound & video pausing
    while watching video clips using Internet Explorer

    I answered your other thread.  Locking this duplicate one.

  • Problem: displayed output in appletviewer vs internet explorer

    I am new to Java programming, having recently completed by first class. I have been trying to set up the Java Development Kit on my PC at home. I installed J2SDK1.4.1_01 and edited my autoexec.bat file to: (1) add ;C:\J2SDK1.4.1_01/BIN to the PATH statement and (2) create a CLASSPATH statement: SET CLASSPATH=;.;
    I been using old programs from class to test the install and have encountered a problem. I recompiled a program which outputs an applet. I can view the applet in Appletviewer, but when I go to view it in Internet Explorer, I see only a gray rectangular box.
    I tried a slightly different program which, in addition to producing an applet, also (in the html code) prints different sized heading lines.
    I see the applet only in Appletviewer. In Internet Explorer, I see the heading lines and a retangular gray box. Both this and the first program import java/awt/Graphics.
    I have tried variations for CLASSPATH such as SET CLASSPATH=;.;C:\J2SDK1.4.1_01 AND C=;.;C:\WINDOWS\JAVA\PACKAGES\zipfile (repeating the C:\WINDOWS... for each zipped file) .... nothing works
    Can you give me an idea on what I need to do to fix this.

    Thanks for your suggestion to search the forum for similar problems. I went into the control panel to try and enable Java Plug-in. I found two Java Plugin icons. One was for an earlier version ... 1.3 and the other showed up as J2SDK1.4.1_01. I took the check off the 1.3 version to unenable it and went to enable the 1.4.1_01 plugin. The problem is, it had no enable check box. So I went to the advanced features of Internet Options to try and enable Java Plugin from there. Under Java(SUN) there was no listing for a Java JIT compiler to enable. There was a JIT Compiler which could be enabled under Microsoft VM. I didn't think it would work, but I tried enabling it and rebooting. ... I was still unable to see applets in IE. I then tried unenabling it with similar results.
    Today, I uninstalled 1.3 and uninstalled/reinstalled 1.4.1_01 (without a problem) and rebooted. I went into the control panel to try and enable the Java Plugin (of which there was just 1 now), and it gave me this error message: The system cannot find the registry key specified // HKEY_LOCAL-Machine\Software\JavaSsoft\Java Plug-in\1.4.1-01.
    Bottom line ... I still can't see applets in IE. I have tried finding the answer about the Key Registry problem in Forums, but I didn't see one that tied into my problem. Also, there is still no listing within the advanced features of Internet Options for Java (Sun) - JIT Compiler ...so I still can't enable it from there.
    At this point, I don't know if I've inadverently done something to screw things up. I'd really like to start playing around in Java, but I can't until I have the system set up properly. Anyone have any ideas?

  • Problem loading generated (X)HTML in Internet Explorer dialog window

    Hi,
    Using JDeveloper 11.1.1.4.0.
    In our ADF application we are providing a preview functionality to letters that the users can generate. The preview XHTML code is generated by stored procedures and displayed in a dialog window as an iframe. This works fine in Firefox but in Internet Explorer there is only a spinning blue circle where the iframe is supposed to be and the preview is not loading. If I copy-paste the preview URL to a separate IE window it loads up correctly, so there is something wrong in the way the dialog window tries to display the data.
    This is the preview JSPX page:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <!-- jsp:directive.page contentType="text/html;charset=UTF-8"/ -->
      <f:view afterPhase="#{backingBeanScope.RenderBean.checkPhase}">
        <af:document id="d1" rendered="false">
          <af:messages id="m1"/>
        </af:document>
      </f:view>
    </jsp:root>The preview page is embedded as an iframe on the dialog window:
    <f:facet name="center">
                <af:inlineFrame id="if1"
                                source="/faces/ActualTemplatePreview?messageTemplateId=#{pageFlowScope.MessageTemplateId}&amp;isOpenTemplate=#{pageFlowScope.IsOpenTemplate}&amp;messageText=#{pageFlowScope.MessageText}"
                                styleClass="AFStretchWidth"/>
              </f:facet>And this is the backing bean:
    public class RenderBean{
        public RenderBean() {
            super();
        private BindingContainer _b(){
          return BindingContext.getCurrent().getCurrentBindingsEntry();
        public void checkPhase(PhaseEvent event){
            if(PhaseId.RENDER_RESPONSE == event.getPhaseId()){
              final ResponseWriter writer = FacesContext.getCurrentInstance().getResponseWriter();
              try{
                final Object xhtml = _b().getOperationBinding("GetXhtml").execute();
                writer.append(xhtml.toString());
              }catch(IOException e){
                throw new RuntimeException(e);
    }GetXhtml method is defined in the application module and calls the stored procedure which generates the code.
    Any ideas what might be the problem? I read some older threads about Internet Explorer having problems with MIME types when displaying PDF inline (see e.g. {thread:id=2361293}), could this somehow relate to displaying (X)HTML code too?
    Regards,
    Joonas

    Could be something with an IE conditional statement in the code used to place the Flash on the Web Page. Post a link to the page and let us take a look.
    Best wishes,
    Adninjastrator

  • I have internet explorer and having problems on working with adobe on internet explorer. i want to stay with internet explorer and use adobe that i think is with Google. i can't work on line  with adobe either because I am not with adobe.What do I do to k

    Need to know how I stay on internet explorer and still be able to use adobe. I have tried everything and nothing seems to work online or offline. help!!!

    Help me to how I can work with adobe on internet explorer. I also can not download online with adobe. What do I do?

Maybe you are looking for

  • XML to flat file conversion using file content conversion in reciever CC

    Hi, Iam working on Idoc to File scenario. Iam having a problem in the communication channel of reciever. Iam using File content conversion in Reciever Adapter. My xml format is asfollows:-- - <Header>   <FILLER1>KTP</FILLER1>   <YEAR_IDOC>YEAR 2006</

  • XML Data Connection : Relative path

    Hi, I'm new to Xcelsius I have added an XML Data Connection with a static path pointing to a xml file in my C:/ Now I would like to point the path to a relative path like ./ where the XML file be place in the same place as the dashbord. How can I do

  • How to use Class Pattern to find match word ?

    Hi All: Now I want find some words in a article . for example , I want to find a word ---"book" . For this purpose , I use java.util.regex.Pattern to do that . Following is my code String tmpStr = ".*?[\\W]+book[\\W]+.*?";                          Pa

  • Dynamic Proxies vs. Generated Code

    I've seen reference a couple times here about stub serialization issues in WebLogic implementations that use dynamic proxies for the stubs. It sounds like recent WebLogic versions have switched back to generated code. Is this the case? If so, I thoug

  • Do I need install web analysis on client machine?

    I have installed web analysis in the server, to let the user to access web analysis, should I also install web analysis in the user's machine, or just let them access the web analysis URL, http//hostname:16000/webanalysis ?