Do you know how to reload a frame from a JSP page?

          I've build a tree view in java that shows the correct JSP page, it's like a configuration
          page. The problem is that when I want to update the frame, I don't know how to
          do it without press the reload button of the browser.
          Thank you very much in advance. I hope you can help me.
          

          "Ivan Fontanals" <[email protected]> wrote:
          >
          >I've build a tree view in java that shows the correct JSP page, it's
          >like a configuration
          >page. The problem is that when I want to update the frame, I don't know
          >how to
          >do it without press the reload button of the browser.
          >
          >Thank you very much in advance. I hope you can help me.
          Try to use HTML-tag:
          <META HTTP-EQUIV="refresh" CONTENT="60" RL="...">
          Best regards,
          Igor
          

Similar Messages

  • Do you know how to copy a movie from a Panasonic NV-GS70 to an iMovie Project?

    Do you know how to copy a movie from a Panasonic NV-GS70 to an iMovie Project?

    There is a link for an update for the USB driver here:
    http://www.google.com/search?client=safari&rls=en&q=Panasonic+NV-GS70&ie=UTF-8&o e=UTF-8
    Other than that follow the directions for connecting it to a computer and in iMovie select Import
    this should lead to a dialog for selecting clips for import.

  • How to call a report from a jsp page

    Hi
    1) Can anyone please tell me how can i view Discoverer report from a jsp page instead of opening it directly thru plus/viewer.
    2) Please clarify do i need to install Infrastructure and OID for it.
    Please advice.
    Thanks

    You need the AS infrastructure if you want to use connections. If you do not intend using connections, you do not require the infrastructure.
    Note that you cannot pass in passwords in the URL any longer. You do not need to pass passwords if you pass in a Discoverer connection id (but then again - if you don't use connections, then you do need to still pass in the connection information - username, password, database, language, EUL)
    I have a post on my blog that describes how to pass a password using an HTML Form submit - http://oraclebi.blogspot.com/2005/08/passing-password-to-viewer.html
    Thanks
    Abhinav
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    Discoverer: http://www.oracle.com/technology/products/discoverer/
    BI Software: http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples: http://www.oracle.com/technology/products/bi/samples/
    Blog: http://oraclebi.blogspot.com/

  • How to retrieve the data from a jsp page for print?

    i have a dynamic jsp file which will get the data at runtime.I have a print button in the jsp.When i chick the print button it should capture the data from the jsp and print it as LANDSCAPE mode. Now i am using Java Api for this
              Following code is a working sample which prints some data in LANDSCAPE mode..This is working fine....How can i modify this to get the data from a jsp?....I am using weblogic workshop for development
              package Awtjava;
              //working example
              import java.awt.*;
              import java.awt.print.*;
              public class testPrint implements Printable {
              private static String s[];
              private static Font f;
              private static int nLines;
              public static void main (String arg[]){
              s = new String[10];
              f = new Font("Arial", Font.PLAIN, 11);
              int i;
              s[0] = "This is a printer test";
              for (i=1; i<10; i++){
              s[i] = "The next line";
              nLines = 10;
              testPrint.printa();
              public static void printa(){
              System.out.println("public static void printa () ");
              PrinterJob pj=PrinterJob.getPrinterJob();
              Book b = new Book();;
              PageFormat pf = new PageFormat();
              pf = pj.defaultPage(pf);
              b.append(new testPrint(), pf, 2);
              pj.setPageable (b);
              try{
              if (pj.printDialog()){
              pj.print();
              catch (Exception e) { System.out.println ("Error"); }
              public int print (Graphics g1, PageFormat pf, int n){
              System.out.println("public int print");
              int x,y,i,fa,fh;
              FontMetrics fm;
              Graphics2D g = (Graphics2D) g1;
              pf.setOrientation(PageFormat.LANDSCAPE);
              fm = g.getFontMetrics (f);
              fa = fm.getMaxAscent();
              fh = fm.getHeight();
              x = (int)pf.getImageableX();
              y = (int)pf.getImageableY() + fa;
              g.setFont (f);
              g.setColor(Color.black);
              if (n==1){
              for (i=0; i<10; i++){
              g.drawString (s, x, y);
              y += fh;
              return PAGE_EXISTS;
              else {
              for (i=10;i<10; i++){
              g.drawString (s[i], x, y);
              y += fh;
              return PAGE_EXISTS;
              Hope you will reply soon...
              Thanks in advance
              Maria

    Hey, I got a doubt that who will call the print method in the same program and what about the g.drawString() it is showing any output effect. Finally how the variable n will get initializing to 0 and 1 for two times respectively. Can u please elaborate on this...

  • How can I send email from an JSP page  with HTML format either using jsp

    hi,
    I have an jsp page with online application form,after compleating the form if i select submit it will send all the compleated data to the mail id we mentioned in the form tag,for this i am using javascript,but instead of receiving the data in the format of strings,my client want to receive the data in the same format as he's filling in the jsp page(html format) through e-mail.any help would be appreciated.the fallowing is the code right now i am using for email application.
    <code>
    function send()
    if(validatePersonalInfo(document.theform))
         document.theform.submit()
         location.href=location.reload()
    function validatePersonalInfo(form)
         var tmpStr ="";
         if (form.Name.value == "") {
              tmpStr = "Name";
              document.all.dName.style.visibility="visible";
              document.theform.Name.focus();
         else{
              document.all.dName.style.visibility="hidden";
         if (form.SSN.value == "") {
              tmpStr = tmpStr + ", Social Security Number";
         document.all.dSSN.style.visibility="visible";
         if(form.Name.value != "")
              {document.theform.SSN.focus();}
         else{
              document.all.dSSN.style.visibility="hidden";
    if (tmpStr == "") {
              return true;
         } else {
              alert("Please Fill the Following Fields: " + tmpStr);
              return false;
    <FORM NAME="theform" METHOD="post"
    ACTION="mailto:[email protected]?subject=Online Application Form for MinorityDealer." ENCTYPE="text/plain">
    <TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="10" NOF="LY">
    <TH>
    <P>
         <FONT SIZE="3" FACE="Arial,Helvetica,Univers,Zurich BT">Online�Application</font></TH><BR>
    </TABLE>
    <table width="718" border="1" cellspacing="0" cellpadding="3" bgcolor="#CCCCFF" align="center">
         <tr>
    <td colspan="2"><font class="captionText">Name*�</font><br><input type="text" size="25" name="Name" class="bodyText">
    <div id="dName" name="dName" style="position:absolute;visibility:hidden"><font color="red">Name is Mandatory*</font></div>
    </td>
              <td colspan="2"><font class="captionText">Social Security Number*�</font><br><input type="text" size="9" name="SSN" class="bodyText">
              <div id="dSSN" name="dSSN" style="position:absolute;visibility:hidden"><font color="red">SSN is Mandatory*</font></div></td>
    </tr>
    <tr>
    <td colspan="2"><font class="captionText">Total Personal Assets</font><br><input type="text" size="10" name="TotPersAss3" class="bodyText"></td>
              <td colspan="2"><font class="captionText">Total Personal Liabilities & NetWorth</font><br><input type="text" size="10" name="TotPerLiab3" class="bodyText"></td>
    </tr>
         </tr>
    </TABLE>
    <IMG Valign="middle" name="imgSubmit" src="images/buttons/Submit.gif" width="66" height="29" border="0" alt="Submit">
    </code>

    Can any one do some help to solve this problem.
    Regards.

  • Do you know how to download some videos from iCloud shared file to my iPad

    I have shared a file with some pictures and videos in "shared streams" with other iOS users. Everybody put their videos put their photos and videos, and I would like to download some of them to my camera roll to make a video with iMovie, but I cannot find the option. I am only allowed to download photos, no videos. Is there any way of download these videos in my iPad?

    You can buy and download films via the iTunes app on the iPad, they will then download into the Movies app - you will need to download the films over wifi as there is a 20 meg limit per file over 3G. Or you can buy and download them on your computer and then sync them to the iPad via your computer's iTunes - select the iPad 'device' on the left-hand side of your computer's iTunes, and on the right-hand side on the Movies tab select which films to sync to it

  • How can I send email from a JSP page?

    my web site is created using jsp. how can i send my page to e-mail and inside e-mail, i will receive exactly same as my web site. i dont want it look like plain text. i can send my page to e-mail but it look plain because all the color and tables was lost. how can i solve these problem?

    Look in the JavaMail forum on how to create Mime format emails. This allows you to use HTML instead of plain text.
    Anthony

  • You Are Rad If You Know How To Do This...

    Hello My Fellow Flashophiles
    So, I will bow down to you if you know how to help me with
    this one.
    I have a MovieClip in my Flash file which emulates a
    signature being drawn by animating a mask that covers over a bit
    more of the underlying bitmap (of the actual, static signature)
    frame by frame. I'm interested in allowing the color of the static
    signature in the bitmap to be set dynamically. Here's the
    pseudocode I've come up with so far:
    - Access the bitmap in the MovieClip
    - Replace (somehow) every black pixel in the bitmap (the
    signature is black, the background white) with a pixel that is the
    chosen color
    - addChild the MovieClip to the main timeline
    I am also considering separating the bitmap from the
    MovieClip and just setting the MovieClip as its mask
    dynamically....
    Any ideas on any part of this? You're rad!
    Thanks,
    Graham

    Oh! Cbeech is the winner once again... I'm really starting to
    owe you, friend. Thanks once again for your invaluable help...
    So, yes, I decided it would be best to strip the bitmap out
    of the mc. Instead, I load it programmatically, apply the threshold
    method (I
    knew there had to be such a function! -- thanks, Beech!),
    then set the animation as the mask programmatically. Note to
    Cbeech: the colors for both the bground and the signature are
    selected via the sampling method you helped me with before.
    Here's the outcome:
    http://www.catherinemix.com/cmix8.html
    A lot of work for modest results, but I suppose that's the
    name of the game. I'm not complaining, tho. My understanding grows
    geometrically, and it's fun!
    Be Well,
    Graham

  • Does anyone know how to reload Java SE 6 back into Lion until Apple and Oracle get it together?

    Does anyone know how to reload Java SE 6 back into Lion until Apple and Oracle get it together?

    See the following, with all of its caveats:
    http://managingosx.wordpress.com/2013/01/31/disabled-java-plugins-xprotect-updat er/
    For what it's worth, I am not using this method, nor am I re-enabling Java until Oracle comes out with a fix. I also won't be available to advise you on troubleshooting this method.

  • I need to know how to reload  my copy of Adobe Photoshop Elements 11

    i Need to know how to reload my copy of Adobe Photoshop Elements 11

    if you're asking for the pse 11 installation file and if you follow all 7 steps you can directly download a trial here:  http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l
    and activate with your serial number.
    if you have a problem downloading, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com

  • I need to know how to reload Family Base to my daughter's phone... she deleted it...  :-\

    I need to know how to reload Family Base to my daughter's phone... she deleted it....
    Any ideas would be appreciated!!

        We'll make sure to walk you through the steps and get FamilyBase reloaded to her device SStone63! What phone make/model does she have?
    AshleyS_VZW
    Follow us on Twitter @VZWSupport

  • TS1702 I cannot get the keyboard to come up on the ipad mini when in the citrix receiver.  Has anyone ran into this and do you know how to fix it?

    I cannot get the keyboard to come up on the ipad mini when in the citrix receiver.  Has anyone ran into this and do you know how to fix it?

    I am not familiar with Citrix Reciever but is it possible it is open or being used in another open app?
    Try quitting all apps then try again.
    Quit all apps: Double tap the Home button and swipe the app preview page up for each open app

  • TS4124 Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Depends on why it's ineligible.  If it's under 96 Kpbs, try right-clicking on the file and choosing Create AAC Version.  (If you don't see this option, go to iTunes>Preferences, click "Import Settings..." then choose "Import Using: AAC Encoder" and "Setting: iTunes Plus".)  Then rescan your library to see if this version will add to iTunes Match.  Or, after changing your import setting, just re-import the song to your iTunes library.
    If the song is over 200 MB you would have to reduce it's size to make it eligible.

  • I use the same Apple ID on my iPad mini and my iPhone 5. My iPhone 5 was stolen on may 12, 2013. Do you know how to get it back?

    Dear Apple,
    I use the same Apple ID on my iPad mini and my iPhone 5. My iPhone 5 was stolen on may 12, 2013. Do you know how to get it back?

    Click here for information.
    (83340)

  • I would like to know how can I delete emails from my email block have more than 8000? Thank you.

    I would like to know how can I delete emails from my email block have more than 8000? Thank you.

    I want to say, delete the 8000 not one by one, or 50 in 50... Minimum of 200 by
    200

Maybe you are looking for

  • What is the keyboard shortcut to close a floating window?

    Hiya, just upgraded to Logic 9 from 7 and I can't close floating windows with option-w. Is there a way I can close floating windows without using my mouse? Thanks Alistair

  • HP Pavilion Slimline s5503w Desktop PC

    The tip of an audio plug broke off in my speaker port.  Tried to get it out.  what a nightmare.  Does anyone know if I can intall a sound card to this motherboard?

  • Refreshing Adobe Form from Webpage

    Hi. Is there a way to refresh adobe form to initial value after canceling or saving data from interactive form and going to back to the form. I used INVALIDATE( ) and it initialize value from the attribute, but value still displays on adobe form. It

  • I tried to copy too much to desktop and now my MacBook pro is frozen!

    I tried to copy way too many items to my desktop, and now my MacBook is running at a snails pace. It is essentially frozen. It always has the rainbow cursor, sometimes it's spinning sometimes not. I have restarted in safe mode, and has not really hel

  • How can I View the Digital Booklet for my Albums?

    I have a few albums in my library with digital booklets, but have never been able to view them.  I am working on Windows 8 right now, and have the updated version of iTunes. Anyone have a solution?