More than one request for a single submit through IE 5.5/Netscape 4.7

While using IE 5.5 or Netscape 4.7, I'm getting 3 requests coming to my servlet for a sigle submit from the same page. All 3 requests have 3 different thread ids. Can anyone advise how to prevent this?
Thanks in advance for your early response.
Thanks,
Kalyan

There is a good chance that the page that makes the request has the problem. I have seen it happen for using unnecessary javascript which submits the same form several times. check that page first.

Similar Messages

  • More than one style for a single link state?

    RH 8 outputting CHM
    Hello,
    Is it possible to define more than one style for a single link state?
    For example, I would like a link in the footer of my master page to be smaller than the links that appear in the body of my topics. I want to retain behavior, and simply change the point size.
    I can't simply hand format in Design mode, because my link is within a script. Or, am I missing something easy here?
    Thanks much.

    I'm pleased to say I figured out how to change the formatting of a hyperlink embedded within a script.
    Within the script, I used a var string to reproduce the text in my link. Then I used another var to change the string size.
    So, here's the part of my script that produces what I'm after:
    var mailDisplay = 'Was this information helpful? ';
    var str = 'Was this information helpful?';
    var mailDisplay = str.fontsize("1");
    Upon generation of the CHM, the script trumps the CSS. It's a beautiful thing.

  • Creating more than one account for a single user

    I was wondering, if I creat more than one account for me (the only person that uses my powerbook) is that going overboard? I mean, lets say I am logged into the standard account and I want to learn more about the bash shell and using terminal which I am new to, if I **** something up will the whole system be toast or will only things in that account be messed up? Like could I then just log into my admin account and delete the other messed up one? Or no? My theory was that this was a way of keeping my comp safe from myself, being that I am new to macs and moreso that I am new to the unix side of things and want to start learning the command line without worrying about screwing up my whole system. I would just use the standard account for everyday use (like what I do now) or experiment with terminal, and when I need to download something or change some settings that requires me to be logged in as admin then I would log in and download what I need then log out and use it in the standard account...am I just wasting my time? Is what I am doing any "safer" than just having one admin account and thats it?
    Thanks for all the help! It feels good to be a part of the goodguys team =)
    Thanks again!

    Ghost,
    First, I don't subscribe to the "one should not use an admin account" philosophy. For someone who is the owner and main user of any given machine, I see the use of anything but an admin account a bit anal, totally unecessary, and needlessly complicating.
    On the other hand, I don't see the need for more than one admin account on any given machine. Yes, I see exceptions to this, and many people favor having a second admin account as a "backup," but I have never had more than one admin account on any of my machines, and have never encountered a situation where one would have helped.
    In short, I like the idea of having a "main" admin account that is used most of the time, and then having "secondary" accounts (all non-admin) for any additional users that might log in.
    Now, any limitations that apply to you as a GUI user of an account, admin or not, will apply to you at the command line as well. In other words, you can't get yourself into any more trouble at the command line than you can within the GUI. In fact, you might even be better protected at the command line than you are in the GUI. I say this because any action that would ordinarily "elevate" you above the standard capabilities of a non-admin user require the use of "sudo." Avoid the use of sudo, and you can avoid any problems.
    That doesn't mean that you wouldn't be able to do something stupid that might wreck an account that contains "all of your stuff," and on which you depend. It is not likely that you would damage your System, but it is entirely conceivable that you might, for example, accidently delete or overwrite your entire HOME folder. Oops!
    If you simply don't trust yourself with the command line, a second account might be a good place to experiment. Maybe create it as a non-admin account at first, with the option to change it to an admin account at a later time, when you want to learn how to use "sudo" to do more powerful things. By then, you will understand what not to do. Eventually, you will have the confidence to use the command line in your own account, which will have been an admin account all this while.
    Scott

  • More than one Album for a Single Song

    There're some songs which belong to more than one album,
    Eg:- Seether's "Sold Me" belongs to "Disclaimer II" and "The Punisher"
    so to add those songs to both the albums i have to keep two copies of the song and that leads the Genius Mixers to play the same song twice from both the albums. Isn't there a way to add a song to all the the albums by having only one copy of the song?

    Isn't there a way to add a song to all the the albums by having only one copy of the song?
    No there is not.  The album information is embedded in the file metadata.  If you want the same song in multiple albums, you will need multiple copies of the song file.
    As noted by the previous poster, you can delete duplicates.  However, this will remove the deleted copy from its album, and does not meet your request to have one copy in multiple albums.

  • More than one invoice for a single material document

    Dear all,
    If a material document contains 10 items,while creating invoice in J1IS with reference to that material document.The system is generating one invoice for the first 8 items in the material doc.& one more invoice for the balance items.
    Is it possible to get all the 10items in a single invoice in J1IS.
    Kindly help us.
    Regards
    M.Sarathi

    Check the setting for max no of items allowed in the excise setting for excise transactions.

  • More than one output for a single line in an sql

    Hi There,
    I have a table like the following ,
    A B
    1 5
    2 4
    I want to output the following,
    1-1
    1-2
    1-3
    1-4
    1-5
    2-2
    2-3
    2-4
    Is it possible to write a single sql statement to do this?
    Thanks,
    --JJ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Something like this ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.20
    satyaki>
    satyaki>
    satyaki>with jose
      2  as
      3    (
      4      select 1 A, 5 B from dual
      5      union all
      6      select 2, 4 from dual
      7    )
      8  select j2.A, j1.B
      9  from (
    10          select rownum B
    11          from jose
    12          connect by rownum < B
    13        ) j1,
    14        jose j2
    15  where j1.B <= j2.B
    16  order by j2.A,
    17          j1.B;
             A          B
             1          1
             1          2
             1          3
             1          4
             1          5
             2          1
             2          2
             2          3
             2          4
    9 rows selected.
    Elapsed: 00:00:01.06
    satyaki>Regards.
    Satyaki De.

  • More than one index for a column.

    Hi,
    I am trying to create more than one index for a particular column of the table.But oracle does not allow more than one index for a column.
    I just want to make sure whether we can add more than one index for a column
    and if yes what are the scenarios.
    Because as far as i know some database allows more than one index for a single column.

    You cannot create more than one index for the same column(s).This is not so true Nicolas. Look at following example:
    SQL> create index idx_mytest_id on mytest(id);
    Index created.
    SQL> create index idx_mytest_id_desc on mytest(id desc);
    Index created.
    SQL> create index idx_fbi_mytest_id_upper on mytest(upper(id));
    Index created.
    SQL> create index idx_fbi_mytest_id_upper_desc on mytest(upper(id) desc);
    Index created.
    SQL> create index idx_fbi_mytest_id_lower_id on mytest(lower(id));
    Index created.
    SQL> create index idx_fbi_mytest_id_lower_id_dsc on mytest(lower(id) desc);
    Index created.
    SQL> create index idx_fbi_mytest_id_tr_up on mytest(trunc(upper(id)));
    Index created.
    -- I can still continue but for this example this will be enough
    SQL> select index_name from dba_indexes where table_name = 'MYTEST';
    INDEX_NAME                                                                                                    
    IDX_MYTEST_ID                                                                                                 
    IDX_FBI_MYTEST_ID_UPPER                                                                                       
    IDX_MYTEST_ID_DESC                                                                                            
    IDX_FBI_MYTEST_ID_UPPER_DESC                                                                                  
    IDX_FBI_MYTEST_ID_LOWER_ID                                                                                    
    IDX_FBI_MYTEST_ID_LOWER_ID_DSC                                                                                
    IDX_FBI_MYTEST_ID_TR_UP                                                                                       
    7 rows selected.You can see 7 indexes for one column (ID) and I could still continue...
    So according this test we can say you can't create more than one index for one column (or the same group of columns in case of composite index) with same condition(s).
    Message was edited by:
    Ivan Kartik
    Or simplified: you can't create the same index for same column(s) twice :-)

  • Can i create more than one instance for single database?

    HI
    anybody can tell me how to create more than one instance for single database(without using RAC)?
    thanks
    Kalanidhi

    Anandji,
    I sometimes think differently. I also think like what this person is asking..(although I have installed and administering 5 different RAC databases)
    The main doubt of mine is that we create multiple instances accessing the same storage area.
    Anyway the controlfiles of all instances will have the same information except the instance_names and instance id's.
    Hence I always think , why can't it be possible to to create another instance in the same system and point it to a controlfile which is copied from the other instance.
    Why can't the same files be shared between the two instances in a same system ?
    I know I am thinking a little bit confusing...
    Anyway I need to test that also...
    Mahesh.

  • Allow for more than ONE item in a single row?

    Allow for more than ONE item in a single row? I can't use this wonderful program unless I can get more than one field on a row (i.e. 1st name, mi, last name etc)

    Thanks for your feedback. This is something we definetely want to provide next year (can't say when yet).
    If others are interested in this feature please vote on it within the idea tab: http://forums.adobe.com/ideas/1046
    That helps us prioritize our work based on customer demand.
    Randy

  • Need to maintain more than one address for single customer.

    Dear All,
    I need to maintain more than one address for single customer, Is it possible? If so how can I maitain kindly send the details.
    Rgds
    Srinivasan.K.R.

    Dear Srinivasan,
    I don't think you can maintain the more than one address for single customer as per the standard.
    You can this options
    1.You can create different ship to parties as per the addresses.
    2.You can change the address manually while creating sales order for single customer.
    I hope this will help you,
    Regards,
    Murali.

  • How set value for more than one variable using a single prompt

    There is a way to set more than one variable with a single prompt?
    e.g. set @CurrentYear and @PasteYear using just a single prompt for @CurrentYear.
    Some hint?
    Thanks
    Luc

    Using repository variables you can set like that.
    Check this link http://gerardnico.com/wiki/dat/obiee/set_variable
    If helps pls mark

  • How to make manager approve more than one request in one time in SSHR

    Dear All,
    Anyone has an idea on how to make manager approver more than one request in one time in SSHR??
    for example, manager is having 20 requests to approve on Change Pay Function, he don't want to check one by one and approve it, he want to approve the 20 requests directly from one time, is there any solution for that??
    Thanks and Regards

    Hi Adel,
    As Vignesh has mentioned we don't have any standard functionality which will allow bulk approvals. We had same kind of requirement in performance management where the business was asking for a bulk approval feature which should be available to Skip level manager for approving the rating suggested by line manager. We had created a custom page which will list all the notifications and user can select the ones which S/He wants to bulk approve and click submit button. Internally we had called the workflow with item key and other required parameter and do the approval.
    You can have a work with your technical guy and can work on the same lines.
    Thanks,
    Sanjay

  • Set more than one InputVerifier for a JComponent

    Is it possible to set more than one InputVerfier for a JComponent. For example, there is one InputVerfier which checks for null values, and another which checks for date format. Can I have both these InputVerfiers attached to a single JComponent ?
    regards,
    nirvan.

    The problem is not the InputVerifier, the problem is you want to use multiple different classes to do the validation. Even if you use another approach you would still have the problem of invoking two different validation classes.
    The other approach for validating input fields is to do the validation in the actionPerformed of your "Process/Submit" (or whatever you want to call it) button.
    If you want to validate data as it is entered you would use a DocumentFilter.

  • CAN ANDROID SEND MORE THAN ONE PICTURE IN A SINGLE TEXT

    Hello,
    Can anyone tell me if Android Razr M is capable of sending more than one picture in a single email and how to do it?  Example:  I have several pictures to send to one person and do not want to send them one at a time if I don't have to.  Thank you

    Some devices if you long press on the text screen have the ability to send more than one photo. However your owners manual usually has this information.
    You also may not be able to send these multiples due to size constraints. Email is much better for these photos. Which of course is also limited by your ISP to around 10 megabytes per send.
    Good Luck

  • More than one portal on a single instance of EP

    Hi,
    I would like to know what is approach that is generally followed for hosting more than one portal on a single instance of enterprise portal server. We have a similar requirement. What about database considerations? Can we use the same database for both the portals?
    Thanks & Regards,
    Suresh

    Hi suresh,
    you can find information about this on:
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/69f45201356248830f1e70fdd7178e/frameset.htm
    Hope it helps You.
    Award points if it helps you

Maybe you are looking for

  • Is it possible to suppress the print dialog in Forms

    Hello, I would like to know if anybody here has some experience with printing from Forms. In my case, I want to give a Forms user opportunity to make a hardcopy e.g. to document Forms errors, to have a feedback for further development. I have a butto

  • Store table data in a tab separated file in oracle apex

    How to store table data in a tab separated file in oracle apex ? Suppose i have a table 'Table1' as shown below. id name 1 x 2 y I want to get the result 'select * from table1;' into a tab separated file in oracle apex.

  • Illustrator CS6 now needs legacy Java SE 6 runtime?

    Help. I tried to open my Illustrator CS6 today and got the following error message, "To open Adobe Illustrator CS6 you need to install the legacy Java SE runtime". The window then states, "Click More info...to visit the legacy Java SE 6 download webs

  • Unable to run the form in another Widow

    Hi Form, I have configured the Oracle 10gDS on WindowsXP Professional to work with Oracle 9i Database. When I am executing a form instead of opening in a seperate Browser window, it is opening in the same browser windows. What are all the requisite c

  • Move-corresponding itab1 to itab2

    Hi guys, is it possible for a move-corresponding to transfer all entries of itab1 to itab2 by just using this code: move-corresponding itab1 to itab2???? or move-corresponding is only for one entry? thanks a lot! always, mark