JSP data tranfer

Hi,
Please look at following code:
<html>
<head>
<title>
BaseJsp
</title>
</head>
<body>
<FORM ACTION ="http://localhost:8080/confirm1.jsp">
<INPUT TYPE = "SUBMIT" NAME = "ACTION1" VALUE ="ACTION1">
<INPUT TYPE ="TEXT" NAME = "ACT1" VALUE = "10">
</FORM>
<BR><BR>
<FORM ACTION ="http://localhost:8080/confirm2.jsp">
<INPUT TYPE = "SUBMIT" NAME = "ACTION2" VALUE = "ACTION 2">
<INPUT TYPE ="TEXT" NAME = "ACT2" VALUE = "20">
</FORM>
</body>
</html>
My question is: when I click the ACTION1 button, how can the confirm1.jsp page get the data from both of the text area ACT1 and ACT2 ?
Thanks
Leo

Hi Leo,
Put both the fields and buttons in one form.
Change the input type of the buttons to just 'button' instead of 'submit'.
Add a javascript function for 'onClick' and set the value of the action variable accordingly.
rgds
Mani

Similar Messages

  • Nesting a BC4J JSP data tag within a Struts tag?

    Has anybody tried nesting a BC4J JSP data tag within a Struts JSP tag? I can't get it to work. For example,
    <logic:equal name="sort" value="<jbo:ShowDefinition datasource='ds' dataitem='CustomerName' definition='ColumnName' />">
    blah blah blah
    </logic:equal>

    Try using single quotes in the value=' ' and double quotes in the jbo tag usage.

  • JSP, Data Web Bean, BC4J: Setting the where clause of a View Object at run time

    Hi,
    I am trying to develop a data web bean in which the where clause of a View Object will be set at run time and the results of the query then displayed.
    My BC4J components are located in one project while the coding for the data web bean is in another project. I used the following code bu t it does not work. Could you please let me know what I am doing wrong?
    public void populateOSTable(int P_EmpId)
    String m_whereString = "EmpView.EMP_ID = " + P_EmpId;
    String m_OrderBy = "EmpView.EMP_NAME";
    oracle.jbo.ApplicationModule appModule = null;
    ViewObject vo = appModule.findApplicationModule("EMPBC.EMPAppModule").findViewObject("EMPBC.EMPView");
    vo.setWhereClause(m_whereString);
    vo.setOrderByClause(m_OrderBy);
    vo.executeQuery();
    vo.next();
    String empName numAttrs = vo.getAttribute(EmpName);
    System.out.println(empName);
    Thanks.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDev Team (Laura):
    Here is how I have usually done mine:
    1. In the JSP, use a RowsetNavigator bean to set the where clause and execute the query.
    2. Use a custom web bean to process the results of the query (print to HTML).
    for example:
    <jsp:useBean class="oracle.jbo.html.databeans.RowsetNavigator" id="rsn" scope="request" >
    <%
    // get the parameter from the find form
    String p = request.getParameter("p");
    String s = request.getParameter("s");
    // store the information for reference later
    session.putValue("p", p);
    session.putValue("s", s);
    // initialize the app module and view object
    rsn.initialize(application,session, request,response,out,"wt_bc_WT_bcModule.wtjoinView");
    // set the where clause string
    String theclause = "presname = '" + p + "' AND slideno=" + s;
    // set the where clause for the VO
    rsn.getRowSet().getViewObject().setWhereClause(theclause);
    rsn.getRowSet().getViewObject().executeQuery();
    rsn.getRowSet().first();
    %>
    </jsp:useBean>
    <jsp:useBean class="wt_bc.walkthruBean" id="wtb" scope="request" >
    <%
    // initialize the app module and VO
    wtb.initialize(application,session, request,response,out,"wt_bc_WT_bcModule.wtjoinView");
    wtb.render();
    %>
    In this case, the render method of my custom web bean mostly gets some session variables, and prints various content depending on the session variable values.
    Hope this helps.
    </jsp:useBean><HR></BLOCKQUOTE>
    Laura can you give the code of your walkthru bean? i wna't to initialize a viewobject, set the where clause and give that viewobject back to initialize my navigatorbar.
    Nathalie
    null

  • JSP, Data tags, How to build a form edit with multiple records

    Hi, I'm using Jdev 9i.
    I would like to have a JSP form where I can update, delete, insert records displayed in the same page.
    I know that I can use the data tag jbo:DataEdit to do it, but it only works with a single record, I want to have several records in the same page, displayed horizontally.
    The best example is a form to add items in an invoice:
    Productid description quantity price
    1001 xxx 10 20.00
    1002 yyy 15 30.00
    1003 zzz 7 10.00
    Could you give some help please?
    Thanks in advance.

    The form display is dictated by how you process the submit. I would build the form by using standard html tags. Here is another pseudo example:
    <FORM ACTION="target.jsp" >
    <TABLE>
    <TR>
    <TD>
    DeptNo
    </TD>
    <TD>
    DName
    </TD>
    <TR>
    <%
    int nRow = 0;
    %>
    <jbo:RowsetIterate datasource="ds">
    <%
    // increment the row number
    nRow++;
    String sDeptno = "Deptno" + nRow;
    String sDname = "Dname" + nRow;
    String sRowKey = "RowKey" + nRow;
    %>
    <jbo:Row id="myrow" action="current">
    <TR>
    <TD>
    <input type="text" name="<%=sDeptno%>" value='<jbo:ShowValue dataitem="Deptno" />' />
    </TD>
    <TD>
    <input type="text" name="<%=sDname%>" value='<jbo:ShowValue dataitem="Dname" />' />
    <input type="text" name="<%=sRowKey%>" value='<jbo:ShowValue dataitem="RowKey" />' />
    </TD>
    <TR>
    </jbo:Row>
    </jbo:RowsetIterate>
    <input type="submit" />
    </TABLE>
    </FORM>
    NOTE: This should get you started!!!

  • Form jsp data are not going to servlet

    Hi guys
    i got a problem doing my uni assignment. this is an assignment about taking data from a html webpage. then storing the data in a xml document through java servlet. the problem is when i try to pass tha data through servlet it doesnt work. the error message it give is following:
    Error: 500
    Location: /BookingApp/servlet/BookingProcessServlet
    Internal Servlet Error:
    java.lang.NullPointerException
         at BookingProcessServlet.generateDOM(BookingProcessServlet.java:119)
         at BookingProcessServlet.doPost(BookingProcessServlet.java:294)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
         at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
         at org.apache.tomcat.core.Handler.service(Handler.java:235)
         at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
         at java.lang.Thread.run(Thread.java:479)
    the coding in the corresponding linnes mentioned in the error message i have givan below:
    for at BookingProcessServlet.generateDOM(BookingProcessServlet.java:119)
              BookingBean [] bookinglist = (BookingBean []) bookings;
         >>>>     for(int i=0; i<bookinglist.length; i++) >>>> this the line where the error is shown
                   if (bookinglist[i] != null)
                        bookingcount++;
                   else
                        continue;
    for at BookingProcessServlet.doPost(BookingProcessServlet.java:294)
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
         String action = request.getParameter("action");
         if (action != null && action.equals("Back"))
              if(insertBookingToSession(request))
                   response.sendRedirect("../jsp/deafault.html");
              else
              response.sendRedirect("../jsp/ListFullError.html");
         else if (action != null && action.equals("Confirm"))
              Document newDOMTree = generateDOM(request);
              generateXMLDocument(newDOMTree);
              HttpSession session = request.getSession(true);
              session.removeAttribute("BookingList ");
              response.sendRedirect("../jsp/confirm.html");
    Please this is is urgent. the problem is I am new in JSP and Java Servlet programming. So I dont have any idea what is this problem.
    please reply as soon as possible. thank u guys.
    waiting for the replies.

    hei chk d ff code : this code works i tried dis before i gave it to u
    <HTML>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    <%
    if(request.getParameter("submit")!=null){
         String filename="C:/Program Files/Apache Group/Tomcat 4.1/webapps/lbc/xml/test.xml";
         String xmlString = "<xml>";
         Enumeration enums = request.getParameterNames();
         while(enums.hasMoreElements()){
         String tagname= (String) enums.nextElement();
         xmlString = xmlString +"<"+tagname+">";
         xmlString = xmlString +request.getParameter(tagname);
         xmlString = xmlString +"</"+tagname+">";
         System.out.println(xmlString);
         try {
         BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(new File(filename)));
         bos.write(xmlString.getBytes());
         bos.flush();
         bos.close();
         catch (IOException ioe) {
         System.out.println(ioe.toString());
    response.sendRedirect("Confirmation.jsp");     
    %>
    <TABLE CELLSPACING="1" CELLPADDING="0" BORDER="0" WIDTH="50%">
    <FORM method="post" NAME="test">     
         <TR>
         <TD BGCOLOR="#94976E">First Name:</TD>
         <TD><input type="text" name="fname"/></TD>
         </TR>
         <TR>
         <TD BGCOLOR="#94976E">Last Name</TD>
         <TD><input type="text" name="lname"/></TD>
         </TR>
         <TR>
         <TD BGCOLOR="#94976E">Middle Initial</TD>
         <TD><input type="text" name="iname"/></TD>
         </TR>
         <tr>
         <td colspan="2" align="center"><INPUT TYPE="SUBMIT" NAME="submit" VALUE="Send"/></td>
         </tr>
    </FORM>
    </TABLE>
    </HTML>

  • Jsp data display as a result of a button click

    i have a textfield in a jsp along with a SEARCH button. the search button searches the database for the existence of the value entered in the textfield.
    how should i code so that at the click of search button the dbase is searched (for the entered value in textfield).
    the dbase should be searchedonly after the click of search button.
    i wud also like to display the searched value as a table data next to the button. how shud i code it. i coded search logic using a function which is in a javascript. but the function is executing before the press of the search button.
    i'm new to JSPs. please help.. thanks.

    It's covered by every decent JSP/Servlet book/tutorial. With other words, this is too trivial and it proves that you really know nothing about it at all. I then highly recommend to take time first to go through a decent book/tutorial. This forum is to help others with technical coding problems, not to spoonfeed others who cannot write code.
    To start with HTML: [http://www.w3schools.com/html/].
    A nice HTML book: [http://www.amazon.com/HTML-Dummies-Ed-Tittel/dp/076450214X].
    To start with JSP/Servlet: [http://java.sun.com/javaee/5/docs/tutorial/doc/ (part II chapters 1-8)].
    A nice JSP/Servlet book: [http://www.amazon.com/Head-First-Servlets-JSP-Certified/dp/0596516681].
    It boils down to having a HTML <form>, <input type="text"> and <input type="submit"> in the JSP page and havinig a Servlet with necessary code in the doPost() method which obtains the request parameter, queries the database, stores the result in the request scope and forwards the request to a JSP for display -which on its turn uses JSTL c:forEach to iterate over the list of results.
    Good luck. If you ever have a technical JSP/JSTL question/problem, you're welcome to ask here.

  • Weirdness involving IE, JSP, data scraping and server-side redirecting

    I have a JSP script that validates inputted data. Upon successful input, it will
    1) set a cookie
    2) Do a data scrape to a URL that points to a servlet that performs server-side actions based upon query string data that is formed from your input
    3) Redirect back to itself to ensure cookie availablity and further actions.
    If you run this script on Netscape or Firefox, all is well.
    If you run this script on IE, while [2] works, it seems to be performing [2] twice, because the actions are duplicated (the actions in [2] consist of placing info into flat files so you can see what is going on).
    Does IE have a problem with data scraping + server-side redirection (I am using response.sendRedirect()) that I don't know about?
    Thanx
    Phil

    Agoston_Bejo wrote:
    The problem is that right after having logged in, while you're still in the filter, the beans managed by JSF haven't been put into any scope yet. (The faces servlet hasn't been called yet, so it hasn't had the chance to instantiate the managed beans, put them into the appropriate scopes etc.) So it is request scoped? Just create one yourself. I however don't see any benefit/reason for having the logged in user in the request scope ..

  • JSP Data Query tag and case sensistivity

    Hello,
    When using BC4J Data Query tag in JSP apps how to make queries case INSENSITIVE? I undestand that string comparison in Oracle is case sensiteve and hence my dynamic query will be also. However, I would like to do something like
    select * from bla
    where upper(attribute) = upper(string) where the string is from the JSP query form entered by user.
    rade

    Use a standard INPUT tag combined with the DataValue tag. This will allow you to control the input tag while still getting the data from a BC4J attribute.

  • JSP Data table - Rendering for command buttons.

    Hi All,
    We are designing a JSP page where results from table have to be thrown on a data table. (h:dataTable)
    Based on one column value on the data table, we need to render a command button for each row of data table.
    For example, I select the employees from a table and throw it on data table.
    Only for those employees where address is not present, I need to enable an "Update address" command button.
    (Command button "Update address" is also part of data table.)
    Is it possible to accomplish this on a data table?
    If so how should we code the "rendered" tag of the command button in data table.
    Any help would be greatly appreciated.
    Thanks.

    Sounds like the JSF forum would be a closer alignment, but in general
    - retrieve your information from the database into a list of Employee beans.
    - Have your h:dataTable use the list of Employee beans as a datasource
    - have the rendered attribute of your update button depend on the value of employee.address maybe #{empty employee.address}
    cheers,
    evnafets

  • Audigy 2 makes "scritches" when making heavy data tranf

    Hi everyone.
    I've have a weird problem with my Audigy 2: When I'm making heavy data transfers between my dri'ves (I've seven of them...), the soundcard starts making very agrressi've noise "scritches" through the speakers, regardless of the player. It does that with MediaPlayer, iTunes, MusicMatcjh and PovwerDVD, so I'm pretty sure it's not player-related. It is also prone to make such noises when I go over the internet.
    Now, in the normal course of my doings, I don't make huge transfers, so it's fairly managable. But when I tranfer big chucks of data (500+ Gb), it starts. It's particulary loud when I'm tranfering to another computer, either FiWi, USB or RJ45. And it occurs from any dri've to any dri've.
    When I game, play movies, do PhotoShop, ANY usage, even highly demanding CPU processes, no problem. But if I simply move chunks of data from a dri've to the other (no problem in searches or seeking), it happens.
    Any idea why so? My setup in a nutshell:
    WinXP SP2, firewalled, antivirused and antispied
    Various demanding games and applications
    ASUS P4C800 Deluxe
    ,5 Gb DDRAM, 400 FSB
    480 watt power supply
    4 fans
    x 60 Gb IDE
    x 80 Gb IDE
    x 80 Gb IDE, on Promise channel
    x 20 Gb IDE
    x 200 Gb IDE, on Promise channel
    x 200 Gb SATA
    x 300 Gb SATA
    Audigy 2 Platinum
    nVidia GeForce FX 5200
    ATI RADEON 9250
    I'm a but fuzzy on the brand of the HDDs, I haven't opened my case in a while, but I know I have Maxtor and WD dri'ves.
    Any help would be glady appreciated.
    Thanks!
    Vaixe

    - check if Audigy is sharing IRQ with IDE/SATA, NIC, FireWire, USB controller?
    - check if DMA transfers for IDE channels are set correctly for best performance (if you transfer from IDE disks).
    - check how antivirus program is set (if it is set to scan files when transferred).
    - decrease graphic card(s) PCI latencies to 28 (you can do this with PCI Latency tool (if you do use your PC otherwise acti'vely (not just listening music) while transfering files).
    - check if you have autoupdete(s) running/acti've on OS/other programs
    these came into mind now ...
    .jtpMessage Edited by jutapa on 09-4-2005 06:33 PM

  • Jsp date

    Hi
              Fairly new to jsp - adding the date to my jsp page using the below
              code.
              <%= new java.util.Date() %>
              This works fine but the format is not as I would like. I would like
              the format to be 21/11/2001
              Can anyone point me in the right direction please as to how to change
              the format of my date?
              Thanks
              Martin
              

    Many thanks Nils - that worked first time!!
              Nils Winkler <[email protected]> wrote in message news:<[email protected]>...
              > Have a look at the java.text.DateFormat class. Something like this
              > (depending on your LOCALE) should do the trick:
              >
              > <%
              > DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
              > String d = df.format(new Date());
              > %>
              >
              > <%= d %>
              >
              > Hope that helps,
              >
              > Nils
              >
              >
              > Martin wrote:
              > >
              > > Hi
              > >
              > > Fairly new to jsp - adding the date to my jsp page using the below
              > > code.
              > >
              > > <%= new java.util.Date() %>
              > >
              > > This works fine but the format is not as I would like. I would like
              > > the format to be 21/11/2001
              > >
              > > Can anyone point me in the right direction please as to how to change
              > > the format of my date?
              > >
              > > Thanks
              > >
              > > Martin
              

  • JSP: Date and Time Count down

    Hi All,
    Sorry if i come to the wrong place.
    I am thinking to write a code by using JSP to count down Date and Time. I have one field in my microsoft access format as Date/Time. I want to get the remain time by using the time in my microsoft access minus the current time in the machine and then count down the remain time.
    Could you please advise??
    Thanks for any advise you may give me,
    Kimsan

    Hi All,
    Sorry if i come to the wrong place.
    I am thinking to write a code by using JSP to count down Date and Time. I have one field in my microsoft access format as Date/Time. I want to get the remain time by using the time in my microsoft access minus the current time in the machine and then count down the remain time.
    Could you please advise??
    Thanks for any advise you may give me,
    Kimsan

  • Null pointer exception in jsp ,data missing in chat application

    Hi all....
    I have a chat application in jsp using ajax.I have opened a d/b connection in a jsp which is called each time I sent a message.But sometimes I get null pointer exception in this page when msgs are sent so fast...also I miss some of the msgs I sent....I can't avoid that connection ther..When I commented all those d/b connection statements...everything is working fine..Please suggest me any solution...
    Thanks in advance.

    Hi,
    Am not getting exception now.In the jsp wer I ve written connection,am taking some values using request.getParameter("msg") . I had opened the connection statement before getting these parameter values.Think I ws getting null pointer exception due to this.Now I have opened connection after getting these parameter values...anyway am not getting the exception now...
    Thanks.

  • Usgent: using jsp date in sql select statement

    i have something like this:
    String day;
    String month;
    String year;
    select * from event where date = xxx
    where xxx is supposed to be obtained from the strings (day, month, year) and changed into a format that can be compared to in the select statement.
    what should xxx be?
    thks as lot cos i ahe been figuring out for very long.

    Use PreparedStatement and SimpleDateFormat:
    String year = "2002";
    String month = "9";
    String day = "12";
    String sDate = day + "/" + month + "/" + year;
    SimpleDateFormat df = new SimpleDateFormat("M/d/yyyy");
    Date dDate = df.parse(sDate);
    Connection con = DriverManager.getConnection(user, pw);
    PreparedStatement ps = con.prepareStatement("SELECT * FROM event WHERE date = ?");
    ps.setDate(1, dDate);
    ResultSet rs = ps.executeQuery();
    while (rs.next()) {
    rs.close();
    ps.close();
    con.close();

  • Data tranfer using bapi(lsmw)

    please explain the steps that are used to upload legacy data into sap using lsmw (bapi method)
    Message was edited by:
            neela renganathan

    Hi,
      is step by step process .
    Step-by-Step Guide for using BAPI in LSMW
    Note! The screen prints in this article are from ECC 5.0. They may differ slightly in other versions.
    Introduction:
    This document details the usage of BAPI in LSMW. We have used the example of migration of the purchase order data into SAP.
    Pre-requisites:
    It is assumed that the reader of this article has the minimum knowledge required on the Business Object, BAPI, Message Types and IDoc Types.
    Step-by-Step Procedure:
    Details of the BAPI used in this scenario:
    Business Object: BUS2012
    Method: CreateFromData
    Details of Message Type and Basic IDoc Type:
    Message Type: PORDCR
    Basic IDoc Type: PORDCR02
    Let’s have a look at the BAPI first, before proceeding to the LSMW:
    1. Go to Transaction BAPI
    2. Click on Search Button
    3. Enter the value “BUS2012” and select “Obj.type(Technical Object Name”
    4. Press ENTER
    5. Following screen appears:
    6. On the left side of the screen, Expand the “PurchaseOrder”.
    7. Select “PurchaseOrder” and double-click on the same for details.
    Building LSMW using BAPI:
    1. Go to Transaction LSMW.
    2. Enter the Project, Subproject and Object information and click on CREATE.
    3. Enter the descriptions for Project, Subproject and Object as prompted.
    4. Now select Settings à IDoc Inbound Processing
    5. “IDoc Inbound Processing” screen appears. Enter the required details as shown below:
    6. Click on “Activate IDoc Inbound Processing”.
    7. Click on “Yes” when prompted for “Activate IDoc Inbound?”
    8. Hit on “Back” to return to the main screen.
    9. Click on Continue (F8). Following Screen appears:
    10. Select the Step 1 “Maintain Object Attributes” and select “Execute”.
    11. Select the radio button “Business Object Method” and enter the following details:
    Business Object: BUS2012
    Method: CreateFromData
    Hit ENTER
    12. Save and click on BACK button. Following information message is displayed.
    13. Now select step 2 “Maintain Source Structures” and click “Execute”.
    14. In this step, we need to maintain the source structure. In our example, lets consider the example of a file with 2 structures Head and Item data as shown below:
    Click on Create and name the source structure as HEADERDATA. Now select HEADERDATA and click on “Create” again to create the child structure. Following popup appears:
    Select “Lower Level” and click on Continue. Enter the Item data structure name.
    Click Save and hit BACK button to go to the main screen.
    15. Select step 3 “Maintain Source Fields” and hit execute.
    16. Enter the fields as shown below:
    17. Click SAVE and return to main screen.
    18. Select step 4 “Maintain Structure Relations” and click Execute.
    Select E1PORDCR and click on CREATE RelationShip. Following screen appears:
    Select HEADERDATA and hit ENTER
    Similarly do the same for the structure E1BPEKKOA, E1BPEKPOC and E1BPPEKET.
    Click Save and return to main screen.
    19. Select the step “Maintain Field Mapping and Conversion Rules” and click on execute. Maintain the Field Mapping as seen below:
    20. Select step 7 “Maintain Source Files” and provide the link for the test file created. (Create a test file with the same structure as defined earlier).
    Save and return to main screen.
    21. Select the step “Assign Files” and click on Execute.
    Assign the file provided to the source structure. Here the same file is provided for both the structures.
    Save and return to the main screen.
    22. Select the step “Read Data” and click on Execute.
    Click on Execute.
    Return to the main screen.
    23. Select the step “Display read data” and click on execute.
    Click on the structure name to get the field level values.
    24. Return to main screen and now select “Convert Data”.
    25. Return to the main screen and select “Display Converted data”.
    26. Return to main screen and select “Start IDoc generation”.
    27. Now select the step “Start IDoc Processing” on the main screen.
    28. Return to main screen and click on “Create IDoc overview”. Here the data record and status records of the IDoc could be viewed:
    Please Go through these Links ,
    BAPI with LSMW
    http://esnips.com/doc/ef04c89f-f3a2-473c-beee-6db5bb3dbb0e/LSMW-with-BAPI
    For document on using BAPI with LSMW, I suggest you to visit:
    http://www.****************/Tutorials/LSMW/BAPIinLSMW/BL1.htm
    http://myweb.dal.ca/hchinni/sap/lsmw_home.htm
    http://sapabap.iespana.es/sapabap/manuales/pdf/lsmw.pdf
    Regards

Maybe you are looking for

  • Bt you need to get your customer service and billi...

    HI all just to let you know I have been with bt ( all 3 packages vision, broadband option 3 and telephone + the £5 each month free calls ) Until they tried to put all of the bills together all was fine I got all bills and went online to pay instant w

  • Navigating from Edge comp in iframe within parent html

    I've been killing myself over this for the last week. With an Edge comp contained in an iframe of a separate html doc, is it possible to connect a button within the Edge comp to go to, or scroll to, an anchor or div on the parent html document below

  • Vol_init failed (can't communicate with kernel)

    Hi, I'm running Sol 2.8 on a sparc SUNW, Sun blade 1000 and having problem mounting the CDROM. I tried to start vold but I'm seeing that /var/adm/messages is logging "vol_init failed" and "Can't communicate with kernel". I've seen similar error in th

  • Not enough memory to complete this operation windows 8

    Hi All, I have a problem whith a built executable where at random intervals I get a windows dialogue saying "Not enough Memory to complete this operation" I have searched through the forums and although there are similar posts I have not been able to

  • An error has occurred when connecting to the AppStore

    Hi I am being told that iTunes has an update, but when I go onto the AppStore I get the error 'A server with the specified hostname could not be found' I have gone through the forums and can't find a solution. I have found a few forums that link to A