Table display thumbnails

Hello,
I am trying to create what amounts to a table with product
thumbnails. When using the Insert -> Application Data ->
Dynamic Data -> Dynamic Table it fills in a table with just
rows. I need an image placed in a grid of rows and columns. Any
suggestions?
Thanks,
Carol

Why bother with the index.html?
1) There is no reason for it, it can't do anything index.jsp can't do
2) There are a lot of things index.html CAN'T do that index.jsp CAN do (like dynamic includes, scriplet etc...
Delete the index.html file and go to http://localhost8080/WebProject/ and see what you get. Make sure that index.jsp is in the same directory that index.html was in.
I have read:
JSP Tutorial
Java Sun Tutorial
And a few others, and I am just not seeing information on what I am trying to accomplish.Then re-read them, get a book, or take a course. If after you go through the tutorials you still don't understand a forum thread isn't going to help, it just isn't the correct format for the training you need. (This is not meant to be discouraging, it is just important to understand what to expect from what learning media. You will get more specific detail about from tutorials than from forums because the people writing them invest a lot more time in doing it then forum posters can. If those resources aren't enough you need to get something that can be either more detailed like a book, or more tailored to answering questions like a course).
e, but is there a way to just have the page (script) run insideNot actually going to answer that now, just correct some word usage. It is a bad idea to consider a JSP page a 'script'. It isn't. Most 'scripts' will run on the client side, while JSPs run on the server side. 'Scripts' usually aren't compiled, but are direct instructions to an interpretor. JSPs are compiled to Servlets first, then run using a Java Virtual Machine on the Server side. It gets confusing because of the term 'scriptlets' which are little script-like blocks inside JSPs but the difference is significant (and places a part why you can't just include the page inside HTML pages).

Similar Messages

  • Error converting image     get error msg when trying to display thumbnail

    Hi there
    Me again
    I am having some problems displaying thumbnails
    I keep getting the error
    Error converting image (create thumbnail). The "...........public_html/productimages/thumbnails/" folder has no write permissions.
    So I go to my host and change write permissions on the files to 755 and try again and get the same msg
    Then I contacted my host and changed the permissions to 777 and I went to the includes config file and changed the permissions to 777 too and still does not work
    So I go to my cpanel and check all the files are set to 777 I make a new test page with a dynamic table and show thumbnail behavior and get the same error msgs
    So I close DW restart and try again and get the same msg.......
    So then I check the file permissions in the DW split screen window when connected to server..... I right click on some files on my server.... namely the 'thumbnails' file and check its permission and it is only set to 755 but in my host it is set to 777
    So I try to change ppermissions from DW and get the
    "setting access properties failed for: ' error
    So what is the correct permissiion..... 755 or 777?
    I have read two other posts on this forum and I still cant get to work
    Does anyone have any ideas
    I have used up all my options and most of my patience
    I hope I can get this working asap....
    Have a nice day

    Try going through the steps in this document:
    http://support.apple.com/kb/TS1539
    CG

  • Mixing Key Figures and Characteristics in 2004s Table Display

    In a 3.x query definition using table display, I could put a key figure in the middle of the characteristics.  The results would be columns Char1, Char2, KF1, Char3, for example.  The same query upgraded to 2004s insists on displaying the key figure at the end of the characteristics, even with the Query Properties / Data Formatting set to Tabular View (in BEx Analyzer).
    Any ideas on how to keep the key figure in the middle of the characteristics?
    Thanks.

    Hi,
    New QD wont support table display. You need to use Report designer for this.
    Thanks & Best Regards,
    Rajani

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display??
    A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution :
    <i>*  declare column, settings, header object
    DATA: lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    DATA: lr_column_header type ref to CL_SALV_WD_COLUMN_HEADER.
    get column by specifying column name.
    lr_column = lr_column_settings->get_column( 'COLUMN_NAME1' ).
    set Header Text as null
    lr_column_header = lr_column->get_header( ).
    lr_column_header->set_text( ' ' ).</i>
    My specific requirement is i have an input field on the screen and i want reflect that value as the column label for one of the column in the alv table. I have used he above code with slight modification in the MODIFYVIEW method of the view since it is a process after input. The component gets activated without any errors but while run time i get an error stating
    <i>"The following error text was processed in the system CDV : Access via 'NULL' object reference not possible."</i>
    i have checked in debugging and the error occured at the statement :
    <i>lr_column = lr_column_settings->get_column( 'CURRENT_YEAR' ).</i>Please can you provide me an alternative for my requirement or correct me if i have done it wrong.
    Thanks,
    Suri

    I found it myself how to do it. The error says that it is not able to find the reference object i.e  it is asking us to refer to the table. The following piece of code will solve this problem. Have to implement this in WDDOMODIFYVIEW method of the view. This thing works comrades enjoy...
      DATA : lr_cmp_usage TYPE REF TO if_wd_component_usage,
             lr_if_controller  TYPE REF TO iwci_salv_wd_table,
             lr_cmdl   TYPE REF TO cl_salv_wd_config_table,
             lr_col    TYPE REF TO cl_salv_wd_column.
      DATA : node_year  TYPE REF TO if_wd_context_node,
             elem_year  TYPE REF TO if_wd_context_element,
             stru_year  TYPE if_alv_layout=>element_importing,
             item_year  LIKE stru_year-i_current_year,
             lf_string    TYPE char(x),
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      DATA: lr_column_header TYPE REF TO cl_salv_wd_column_header.
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings.
    Get the entered value from the input field of the screen
    node_year  = wd_context->get_child_node( name = 'IMPORTING_NODE' ).
    elem_year  = node_year->get_element( ).
      elem_year->get_attribute(
       EXPORTING
        name = 'IMPORT_NODE-PARAMETER'
       IMPORTING
        value = L_IMPORT_PARAM ).
      WRITE L_IMPORT_PARAM TO lf_string.
    Get the reference of the table
      lr_cmp_usage  =  wd_this->wd_cpuse_alv( ).
      IF lr_cmp_usage->has_active_component( ) IS INITIAL.
        lr_cmp_usage->create_component( ).
      ENDIF.
      lr_if_controller  = wd_this->wd_cpifc_alv( ).
      lr_column_settings = lr_if_controller->get_model( ).
    get column by specifying column name.
      IF lr_column_settings IS BOUND.
        lr_column = lr_column_settings->get_column( 'COLUMN_NAME').
    set Header Text as null
        lr_column_header = lr_column->get_header( ).
        lr_column_header->set_text( lf_string ).
    endif.

  • Under Snow Leopard my web browsers no longer display thumbnails.

    Since installing Snow Leopard neither Safari not Firefox display thumbnails on certain web sites. The most notable being Google picture search. Everything works fine except the thumbnails are empty white rectangles. If I click on an empty thumbnail I will get taken to an image which displays fine. The problem is thumbnails and thumbnails only.
    I downloaded Googles own Chrome and even it can't display thumbnails on a Google picture search. The problem exists also on many other picture sites such as Getty images, but not, for example, on Wikemedia. It happens in all browsers - all of which are completely up to date as is my OS X 10.6.2. My video cards and monitors are all Standard Mac issue from Apple and the drivers supplied by Apple as part of the OS.
    In all this confusion the one thing that is absolutely 100% certain is that the problem started from the moment I first powered up Snow Leopard. Of that there is NO doubt. Before then there was never any problem. I am a graphics professional and constantly need to picture search. For the time being I have had to dust off my old G4 and use it as a picture search machine and then network the downloads across to the Mac Pro. That is hardly satisfactory.
    Has anyone any suggestions for this bizarre problem? I have done a mass of web search and have found no reference to anything similar.
    Getting rather desperate after months of this ...... :o((

    Well lepkitty I can report success. My browser is now thumb-nailing faster than ever before.
    Problem solved!! You get a gold star!!
    In case others with the same problem stumble on this thread here is the solution. I am no techie so It will be simple .......
    Problem:
    Safari, or any other OS X browser doesn't thumbnail Google (and many other) picture searches but hangs forever loading the thumbnails leaving empty white rectangles on the screen. Google maps don't zoom, pan or update. The problem is unique to Snow Leopard.
    Cause:
    When OS X and Safari (or other OS X browsers) perform certain operations, of which picture searching is one, they speed things up my making multiple simultaneous connections to the host. Rather than loading the thumbnail images one by one they will make multiple connections, to say Google image, and pull down multiple thumbnails simultaneously. Leopard makes up to eight simultaneous connections at a time. Snow Leopard, however, can make as many as sixteen.
    This where the trouble starts. Many router's firewalls interpret too many simultaneous requests as a "SYN flood" (This is a form of malicious attack using multiple simultaneous connections. If you really need to know - more here http://en.wikipedia.org/wiki/SYN_flood) It seems quite a lot router's firewalls set the simultaneous connection threshold at 10. My Phillips did and Belkins do too. Any attempt to create more connections than this will be treated as malicious and will be blocked by the router.
    Solution:
    The solution is to change your router's firewall settings. Every router is different so these directions are rather generic. The precise menus, and wording will change from one to another but, trust me, I am no techie, it's really not difficult .... this isn't going to be rocket science ......
    Here is what you do:
    You access your router by entering "http://192.168.1.1" in your browsers address box. You will be asked for a user name and password. You should find the default setting for these in your router's manual. (On most it is "admin","admin")
    Once in your router's menu you need to look for firewall settings. You may need to look for "Advanced" settings first and then look for "Firewall".
    Once you have found the firewall menu you need to look for "SPI and Anti-DOS" (On my router it's inside a menu called "Intrusion Detection")
    On the SPI Anti-Dos page you should find a list of options that you can set.
    Among these should be the option to change the number of simultaneous connections. On my router it is called "Maximum incomplete TCP/UDP sessions number from same host". It will probably be set to 10. Raise this to 20 and then click OK, Save, Confirm or whatever your router's menu asks for, to confirm and save the new setting.
    That's it! Done and dusted. This has not only fixed the problem on my browser but it has given a real and noticeable boost to all my browsing.
    So let's hope the earth moves for you too ..... ;o))
    ... and a huge vote of thanks to lepkitty for pointing me at this.
    If you want to know more about this in greater technical depth then follow the link provided by her earlier in this thread.

  • What is the corresponding option for " Table Display"  in BI 7 Query Design

    Hi Experts,
    In 3.x Query Designer we have an Option  of " Table Display" to arrange the charesterstics in the Coloums .
    Please let me know the corresponding option  in BI 7 Query Designer.
    Thanks
    Bhanuprakash.

    I think there is no Drill down Fesility in Report Designer.  what is the option for a query with Drill down charecterstics.

  • How to display the rows dynamically in the table display in web dynpro abap

    Hi experts,
                   There is a visible row count tab where you can give the no of rows to be displayed in the output table, but i want it to be done dynamically as the row count of my table may change dynamically at runtime.
    And i want to know how to reduce the width of a column as my table display is taking the length as per the binded table specifications.Can anyone please help me out in this issue.
    Thanks in advance,
    Anita.

    Hi Anita
    You can bind the visiblerowcount property to the a context attribute. and at runtime you can set the context attribute to the no of rows you want in your table,
    Regards
    Naresh

  • FLVs created with ADOBE MEDIA ENCODER CS6 do not display thumbnails in ADOBE BRIDGE CS6

    Could you please attempt to shed some light on why FLVs created with ADOBE MEDIA ENCODER CS6 do not display thumbnails in ADOBE BRIDGE CS6, yet apple finder is able to display thumbnails for these same FLVs without issue?
    I'm running CS6 Production Premium with ALL updates installed on 10.6.8
    I appreciate any input and help provided the input is provided by someone who either
    A) knows the answer because they actually work for adobe
    B) actually tried this themselves before attempting to provide a solution
    If the conclusion is that it is a codec issue or a header issue with the FLVs You'd have to present a very strong case to back that claim up as it makes no sense whatsoever that CS6 is unable to generate thumbnails for media encoded using CS6, yet Apple finder can without issue. NOT to mention the FLVs in question are CREATED on the same machine with the same codecs installed that is trying to generate previews in Bridge.
    Apologies if my frustration is showing, I've gotten and seen several... incompetent replies on this forum regarding this issue and it has never been actually addressed properly as far as I can tell by Adobe support.

    We are all just incompetent users here.  As pointed out before this is just a user to user forum, Adobe rarely checks in.
    I was hoping by now you would have gotten to the bottom of this problem and were offering a solution.

  • .NRW files not displaying thumbnails in Bridge

    .NRW RAW files from Nikon P7800 do not display thumbnails or metadata in Bridge. PsCC, Bridge and CR 8.3 are all showing as up to date on CC Desktop App. Files display correctly in Lr 5.3. Any suggestions ?

    I have:
    PhotoshopCC>Edit>Preferences>CameraRaw>8.3.0.141
    BridgeCC>Edit>CameraRawPreferences>8.2.0.94
    The computer found  6 files  named Camera Raw.8bi.  They are in pairs , two in the CS5 folder and two in the CS6 folder, two in the CC folder. One of each pair has >Program Files(x86)> The other one has  >Program Files>.
    When I go to C:\ Program Files\Common Files\Adobe\Plug-Ins\CC\File Formats\ only one (Camera Raw.8bi) file shows. This was created on 18 March 2013 and modified on 3 December 2013.
    If I go to C:\Program Files(x86)\Common Files\Adobe\Plug-Ins\CC\File Formats\ another (Camera Raw.8bi) file appears, created and modified same date and time as the first one.
    Is this making any sense ? Thanks for your help.
    It appears Bridge is using CR 8.2, the question is why and how do I persuade it to preference CR 8.3
    By the way, I failed to mention it previously CR is converting and editing the NRW files normally, I just can't see their thumbnails in Bridge.

  • Bridge CS3 won't display thumbnails and locks up

    Running a Mac G5 Dual 2gHz processors with OS 10.4.11 and 4GB ram...
    I started today working with images on an internal drive and all was well until I selected an older external drive. Bridge vers. 2.0.0.975 would not display thumbnails on the older drives and stopped functioning altogether when selecting a different folder or any menu item.
    Reinstalled Photoshop and Bridge and folders/thumbs from internal drive still displayed just fine, but still would not display on external drives. Ever since I tried holding down the option key when restarting Bridge, the the problem has spread to the internal drive and now those images will not display.
    And yes, I did try upgrading to Bridge 2.1.1.9, but that update never worked at all for me.
    I gotta vent here. Bridge CS3 has been a consistent headache from the first day of purchase. Since Bridge CS3 has never worked properly, how can I justify the purchase of Photoshop CS4 upgrade?

    Hey Jim
    Good it worked, seem to remember that there have been problems with some users and the auto update feature from Adobe?
    Whenever I used Bridge CS3 for a week or 6 to 8 (I also work with it a lot and and also large amount of files) trouble was coming up and I just delete the plist and cache file and restarted with option to refresh prefs. I don't use the cache for archive purpose and usual work with one main folder. After finished I move the files to specific folders without caching those so after deleting cache I only need to recache a few folders and was able to work flawlessly for a certain period.
    I must say that Bridge CS4 is more stable and is working also very nice and again better compared to the prior version.
    For system maintenance I use Disk Warrior every now and then but Cocktail on a daily basis, scheduled automatically after an also time scheduled auto start up of system and some apps. Cocktail is cheap and easy, :-)
    see also: http://www.maintain.se/cocktail/index.php

  • Display thumbnails for MOV files in Windows XP?

    How do I get MOV files to display thumbnails for each clip in Windows XP pro?

    One other thing to explore - do these particular files begin with Black Video?
    Good luck,
    Hunt

  • Insert new rows based on user selection on a table display on the screen

    Hi..
    In my requirement i need to display the line items of a PO# to the user on the screen for specific fields. Each row should also include an additonal checkbox when displayed for the user. When the user checks this check box or clicks on it a new row should be inserted below to that row with the existing data of that row being copied to newly inserted row and allowing the user to make any changes.
    The newly inserted row should also include a check box , so that when the user checks it again a new row should get inserted. Finally what ever data user enters on the screen, i should be able to update my internal table with those new values and records.
    Appreciate if anyone can guide me on how to proceed on this or any alternative approaches.
    Will reward helpful answers.
    Thanks.

    Hi ..
    Can you please be more detailed. First I need to know how to create the initial table display for the existing line items and then the techniques for inserting the new rows based on the check marks and finally add those news rows to my existing internal table..
    Appreciate ur help.
    Thanks.

  • My Mac Air iphoto will display thumbnails but will not display photos in any way - single photo / slideshow etc - any ideas

    My Mac Air iphoto will display thumbnails but will not display photos in any way - single photo / slideshow etc - any ideas?

    Are you seeing this
    when you double click on a thumbnail file?  If so it's an indication that the file path/link between the thrumbnail and original, full sized file has been broken.  Therefore, and assuming you're running iPhoto 9 or later, try the following:
    1 - launch iPhoto with the Command+Option keys held down to open the First Aid window.
    2 - Run Option #4, Rebuild Database.
    OT

  • Sending email  with message body contain data  in table   displayed in one

    Hi,
    I have one jsp page where I am dispalying the table data retrieved fron database.
    Now i am trying to send this table as message body of the mail to the user.I am doing same stuff last from six days but unable to send such data.
    Please help me Sir,as i am newbie here.
    Here is an jsp page.
        Document   : evaluationeventtable
        Created on : Jul 24, 2008, 6:52:37 PM
        Author     : user1
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@ page language ="java" %>
    <%@ page import="java.sql.*, javax.sql.*, javax.naming.*,java.io.*,java.util.*" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>IGIDR</title>
            <link rel="stylesheet" href="../styles/styles.css" type="text/css">
        </head>
        <body>
             <table width="100%" cellspacing="0" cellpadding="0" border="0">
    <tr>
    <td><%@ include file="/includes/logohead.jsp" %></td>
    </tr>
    <tr><td><%@ include file="/toplinks.jsp"%></td></tr>
    <tr>
    <td width="100%" valign="top">
    <table width="100%" cellspacing="0" cellpadding="0" border="1" borderColor=#000066>
        <tr>
    <td width="80%"> 
        <%  int QNO;
             String message=null;
             //String message1=null;
             //String message2=null;
             String noA,noB,noC,noD;                
            String ID=request.getParameter("id");       
            String EVENTID=request.getParameter("event");       
            Connection connection = null;
            Statement st = null;
            Statement st1 = null;
            Statement st2 = null;
            Statement st3 = null;
            Statement st4 = null;
            Statement st5 = null;
            ResultSet rs= null;
            ResultSet rs1= null;
            ResultSet rs2= null;
            ResultSet rs3= null;
            ResultSet rs4= null;
            ResultSet rs5= null;
            Class.forName("com.mysql.jdbc.Driver");
            Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/mynewdatabase","root", "root123");
                           st=con.createStatement();
                    try  {              
                      rs = st.executeQuery("SELECT * FROM Questionbank where Questionid='"+ID+"'");
                   %>
                <table border="1" cellpadding="2" cellspacing="3" bgcolor="#E6E6FA" align="center"><tr><th>Questions</th><th>A</th><th>B</th><th>C</th><th>D</th></tr>
                 <%  message="<table border=1 cellpadding=2 cellspacing=3 bgcolor=#E6E6FA align=center><tr><th>Questions</th><th>A</th><th>B</th><th>C</th><th>D</th></tr>";%>
                   <%
                  while ( rs.next() )
                            //String NO=rs.getString("Qserialno");
                            //session.setAttribute("no",NO);
                            //String NAME=rs.getString("questionname");
                            //session.setAttribute("name",NAME);                                    
                       %>
                       <tr><td><%=rs.getString("Qserialno") + "." + rs.getString("questionname")%></td>
                       <%
                        message=message+"<tr><td>"+rs.getString("Qserialno") + "." + rs.getString("questionname")+"</td>";
                       st1=con.createStatement(); 
                       try
                          rs1=st1.executeQuery("select count(*) as total  from final where questionid='"+ID+"'and Eventid='"+EVENTID+"'and Qserialno='"+rs.getString("Qserialno")+"'and Answer='A'");
                         rs1.next();
                         noA=rs1.getString("total");
                         session.setAttribute("NOA",noA);
                          rs1=st1.executeQuery("select count(*)  as total from final where questionid='"+ID+"'and Eventid='"+EVENTID+"'and Qserialno='"+rs.getString("Qserialno")+"'and Answer='B'");
                       rs1.next();
                         noB=rs1.getString("total");
                         session.setAttribute("NOB",noB);
                          rs1=st1.executeQuery("select count(*) as total  from final where questionid='"+ID+"'and Eventid='"+EVENTID+"'and Qserialno='"+rs.getString("Qserialno")+"'and Answer='C'");
                        rs1.next();
                         noC=rs1.getString("total");
                         session.setAttribute("NOC",noC);
                          rs1=st1.executeQuery("select count(*) as total  from final where questionid='"+ID+"'and Eventid='"+EVENTID+"'and Qserialno='"+rs.getString("Qserialno")+"'and Answer='D'");
                          rs1.next();
                         noD=rs1.getString("total");                   
                         session.setAttribute("NOD",noD);
                         message=message+"<td>"+noA+"</td><td>"+noB+"</td><td>"+noC+"</td><td>"+noD+"</td></tr></table>";
                         %>                     
                     <td><%=noA%></td><td><%=noB%></td><td><%=noC%></td><td><%=noD%></td></tr>
                   <%        
                         } finally
                               if (rs1 != null)
                                   rs1.close();
                                   rs1 = null;
                               } if (st1 != null)
                                   st1.close();
                                   st1 = null;
                                       finally
                               if (rs != null)
                                   rs.close();
                                   rs = null;
                               if (st != null)
                                   st.close();
                                   st = null;
                                   con.close();
                      %></table>   
                      <table align="center" width="50%" cellspacing="0" cellpadding="0" border="1" borderColor=#D2691E>
                      <form name="sendmail" action="/student/servletmail" method="POST">
                       <tr class="CellColor">
              <td>To</td>
              <td class="CellColor" width="1%">
              </td>
              <td class="CellColor">
                   <input type="text" name="to" size="25" value="">
              </td>
                    <td>From</td>
              <td class="CellColor" width="1%">
              </td>
              <td class="CellColor">
                   <input type="text" name="from" size="25" value="">
              </td>
         </tr>
            <input type="hidden" name="message" value="<%=message%>">
            <tr class="CellColor">
              <td class="CellColor" colspan="9" align="center">
                   <input type="submit" name="tn1" value="Send" >
              </td>
         </tr>   
      </form></table></td></tr></table>
                  </table>
                         </body></html>    And here is an servlet where i am trying to send the mail
    package com.student.igidr.test;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * @author user1
    public class servletmail extends HttpServlet
            public  void doPost(HttpServletRequest request,HttpServletResponse response)
                                      throws ServletException, IOException
            PrintWriter out=response.getWriter();
            response.setContentType("text/html");
            try
               Properties props=new Properties();
               props.put("mail.smtp.host","webmail.igidr.ac.in");   //  'localhost' for testing
       Session   session1  =  Session.getDefaultInstance(props,null);
               String s1 = request.getParameter("to");
               String s2 = request.getParameter("from");
               //String s3 = request.getParameter("sub");
               String s4 = request.getParameter("message");
              // out.println(s4);
         Message message =new MimeMessage(session1);
         message.setFrom(new InternetAddress(s2));
          message.setRecipients
                 (Message.RecipientType.TO,InternetAddress.parse(s1,false));
              // message.setSubject(s3);
               message.setText(s4);       
              message.setContent(s4,"text/html");
               Transport.send(message);
               out.println("mail has been sent");
            catch(Exception ex)
               System.out.println("ERROR....."+ex);
    }I am using the message variable to send the message also as input variable in servlet.
    Whether it is write Way to represent hole table body into message variable in jsp page.
    Please help me.
    Thanks and Regards
    haresh
    Edited by: HARSHAL_GURAV on Aug 13, 2008 11:15 PM
    Edited by: HARSHAL_GURAV on Aug 13, 2008 11:56 PM

    Hi bshannon ,
    Thanks you very much for your reply.
    I am trying to send html formated mail to the user.
    The message body contains the table that is displayed in above jsp page as:
    <table border="1" cellpadding="2" cellspacing="3" bgcolor="#E6E6FA" align="center"><tr><th>Questions</th><th>A</th><th>B</th><th>C</th><th>D</th></tr>
    <tr><td><%=rs.getString("Qserialno") + "." + rs.getString("questionname")%></td>
    <td><%=noA%></td><td><%=noB%></td><td><%=noC%></td><td><%=noD%></td></tr>In above code I am displaying the data from table i jsp page in table format. The data is related to analysis of particular event and i am trying to send this data as message body of the email.
    As table displayed in html form can you assist me in how to send html data?
    I am using variable message to store all this table data .
    <%  message="<table border=1 cellpadding=2 cellspacing=3 bgcolor=#E6E6FA align=center><tr><th>Questions</th><th>A</th><th>B</th><th>C</th><th>D</th></tr>";%>
    message=message+"<tr><td>"+rs.getString("Qserialno") + "." + rs.getString("questionname")+"</td>";
      message=message+"<td>"+noA+"</td><td>"+noB+"</td><td>"+noC+"</td><td>"+noD+"</td></tr></table>";i am sending this variable through form.At servlet I am retrieving it like:
    String s1 = request.getParameter("to");
               String s2 = request.getParameter("from");
               //String s3 = request.getParameter("sub");
               *String s4 = request.getParameter("message");*Will this possible ?
    Please help meas i am troubling same with last from 7-8 days.
    I had gone through Faqs but unable to collect required information.
    Thanks and Regards
    Haresh
    Edited by: HARSHAL_GURAV on Aug 15, 2008 9:22 PM

  • IPhoto won't display thumbnails

    I performed a clean install of OS X, and when I copied over the pictures I had backed up iPhoto wouldn't display thumbnails. Old photos have no thumbnails at all, new photos will show thumbnails if I scroll around quickly, but return to blanks if I stop. If I edit a picture, the thumbnail will show until I quit iPhoto. I've tried rebuilding the library and thumbnails.
    I have have a MacBook Pro from late 2009, iPhoto '09 version 8.1.2 (424).

    How did you bring back the pictures after the clean install?  Did you use Migration Assistant in the restoring of your files?  If so know that MA has a history of not handling iPhoto library very well.  So if you did use MA see if you can do a manual copy of the backup library to the Pictures folder on your Mac.  Then launch iPhoto and go from there.
    If you didn't use MA then try the following: make a temporary, duplicate copy of your library and apply the three fixes in order as necessary.
    Fix #1
    1 - delete  the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder. 
    2 - delete iPhoto's cache file,, Cache.dbt, that is located in your Home/Library/Caches/com.apple.iPhoto folder. 
    3 - reboot, launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    If that doesn't help try the following: make a temporary, duplicate copy of the library and try the two fixes below in order as needed:
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library.
    Select the options identified in the screenshot. 
    Fix #3
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

Maybe you are looking for

  • My mac book pro runs very slow, can I make it run faster?

    I have a 4 month old Mac book pro. granted, its just an i5 2.4  It seemed to be pretty quick when I first bought it.  but it started slowing down. So I put 8 gigs of ram into it. but it still runs painfully slow.  I spent the day putting files in the

  • Lightroom VS Camera Raw 5.5 (color correction)

    Hi, does somebody know if discarding the advantage of making layers of Photoshop, is the Adobe Lightroom color correction controls superiors to the CameraRaw PS Interface correction controls ??? I mean for color correction purposes is Adobe Lightroom

  • Problems Exporting HTML from Fireworks (new to Fireworks)

    Forgive me if this is a rudimentary question, but I've searched the help files as well as online and I'm not finding anything on it.  I have a bunch of PNG image maps I need to update (someone else created the PNGs in Fireworks several years ago).  I

  • Cannot update to version 5

    Dear sir/madam, I use firefox Version 3.0.8 on both my iMac aswel on my Macbook. On both machines i want to upgrade to the newest version but when i download it and want to install it i get the mesage that the installation can't be completed becouse

  • Add Plugin to Strobe Media Playback

    Hi,     I want to allow advertisement in my player. For that i planned to implement ad plug-in to stobe media playback..I tried to follow the guide from link http://osmf.org/dev/latest/advertisement-demo.html     But I couldn't open the page(page can