Error when opening exported Excel document

hi,
i'm using the following to let the user export JSP to Excel file:
response.setContentType("application/download ");
response.setHeader("Content-Disposition","attachment; filename=test.xls");
problem happens only for the first when i try to open the file in excel.
Excel gives me " 'test.xls[1]' could not be found. Check the spelling of the file name, and verify that the file location is correct. ...."
Subsequent tries work fine with no problem.
i noticed that Excel is trying to open a file with a different name, appending [1], which obviosuly doesn't find in its first try.
i would appreciate any kind of clue.
thank you.

I got this from a different post on this forum.
Basically, on your JSP page which you want to export to Excel, set the content type and header as below. Then the browser(Internet Explorer) will try to open the excel document in itself.
<%
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition","attachment; filename=" + "test.xls" );
%>
<HTML>
<head>
<title>Excel Compatible HTML</title>
<style type="text/css">
td.currencyCustom { mso-number-format:"$#,##0.00_);[Red]($#,##0.00)"; text-align: right; }
td.currencyDefault { mso-number-format:"Currency"; text-align: right; }
td.integer { mso-number-format:"#,##0_);[Red](#,##0)"; text-align: right; }
td.percent { mso-number-format:"%0.00"; text-align: right; }
</style>
</head>
<body>
<table summary="Excel formats supported" width="500">
<tr><td colspan="2"><h1>Excel Compatible HTML</h1></td></tr>
<tr><td colspan="2"><p>This is a simple demo of how HTML tables can be extended
by using CSS styles recognized by Excel 2000. I haven't yet
been able to find any documentation on these styles. Most of this was
derived by saving a simple spreadsheet using the <i>Save as Web Page ...</i>
option then experimenting with formats using the <code>mso-number-format</code>
CSS attribute.</p>
<p>Excel will convert unformatted numbers to the specified style so formatting
them isn't required if the output is only to be used by Excel. Otherwise, they
should be formatted to display correctly in browsers.</p>
<!--[if !excel]>  <![endif]-->
</td></tr>
<tr><td>12,345.60 with class="currencyCustom":</td><td class="currencyCustom">12,345.60</td></tr>
<tr><td>12345.6 with class="currencyCustom":</td><td class="currencyCustom">12345.6</td></tr>
<tr><td>-12,345.60 with class="currencyCustom":</td><td class="currencyCustom">-12,345.60</td></tr>
<tr><td>-12345.6 with class="currencyDefault":</td><td halign="right" class="currencyDefault" x:num="-12345.6">($12,345.60)</td></tr>
<tr><td colspan="2"> </td></tr>
<tr><td>123456789 with class="integer":</td><td class="integer">123456789</td></tr>
<tr><td>-123456789 with class="integer":</td><td class="integer">-123456789</td></tr>
<tr><td>123,456,789 with class="integer"</td><td class="integer">123,456,789</td></tr>
<tr><td>-123,456,789 with class="integer"</td><td class="integer">-123,456,789</td></tr>
<tr><td colspan="2"> </td></tr>
<tr><td>%100.00 with class="percent":</td><td class="percent">%100.00</td></tr>
<tr><td>%43.21 with class="percent":</td><td class="percent">%43.21</td></tr>
<tr><td>1.0 with class="percent":</td><td class="percent">1.0</td></tr>
<tr><td>0.4321 with class="percent":</td><td class="percent">0.4321</td></tr>
</table>
</body>
</html>
Currently, i'm trying a different approach.
I'm using POI from jakarta site to create Excel file manually.
here's a snippet of my code in my web request handler that creates an Excel file.
String exportType =(String) request.getParameter("export_type");
if(exportType!=null && exportType.equals(WebConstants.EXPORT_TYPE_MS_EXCEL))
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet("Test Sheet");
HSSFCell cell = null;
HSSFCellStyle cellStyle = workbook.createCellStyle();
HSSFFont font = workbook.createFont();
font.setColor((short)0xc);
font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
cellStyle.setFont(font);
HSSFRow titleRow = sheet.createRow((short)0);
cell = titleRow.createCell((short)0);
cell.setCellValue("Order ID");
cell.setCellStyle(cellStyle);
cell = titleRow.createCell((short)1);
cell.setCellValue("Order Time");
cell.setCellStyle(cellStyle);
for(short i=0; i<blotterModelList.size(); i++)
BlotterModel model = (BlotterModel)blotterModelList.get(i);
HSSFRow row = sheet.createRow((short)(i+1));
row.createCell((short)0).setCellValue(model.getOrderId());
row.createCell((short)1).setCellValue(model.getOrderTime());
ServletOutputStream stream = response.getOutputStream();
response.setContentType("application/vnd.ms-excel");
workbook.write(stream);
stream.flush();
stream.close();
Sir: I am having touble with my excel exporting.
Could you show me what you are doing and I can go to
school on it? Thanks!

Similar Messages

  • Bug : Invalid file extension error when opening exported excel

    Hi All,
    In one of my jsff page, i have implemented 'exportToExcel' functionality through a exportcollectionactionlistener on a table to export its data to excel. When i try opening the generated excel, i get the following warning in excel 2007 :
    "The file you are trying to open, 'Export.xls,' is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?" - When I clicked YES to the message, the exported excel opened and data is present.
    How can i get rid of this warning message, because it is annoying for any user to click YES every time the excel is opened ? I am using jdev version 11.1.1.6.0 This is my code :
    <af:commandToolbarButton text="Export to Excel" id="cb1">
    <af:exportCollectionActionListener exportedId="t1"
                               type="excelHTML"
                               filename="Export.xls"
                               title="Excel export"/>
    </af:commandToolbarButton>I found a similar forum post here File format of exportCollectionActionListener ADF 11g But they are suggesting a registry fix which is not possible in production environment.
    Any possible workaround or suggestions to resolve this issue is much appreciated.
    Thanks

    You can save the data on the client and the check the data.
    Have you considered using POI to generate real xsl workbook files?
    Timo

  • "Last modified" attribute changes when opening a Excel-document

    Hi
    We are running Server 2008 R2 as terminal servers and fileserver. 
    When opening an Excel document stored on the fileserver so changes "date modified" at the opening regardless if you save the document or not. This is a problem for users who want to keep track of when the document has been changed "for real".
    Now, "last modified" changes when the document was last read instead, this confuse the users...
    If we test the same procedure on our older terminal server environment, Server 2003 or on our clients (Windows 7) it works how we wanted. The "last modified" only changes when you save the document, and not when you are opening it. Office
    2007 is installed on both our new terminal server environment (Server 2008 R2) and the old one (Server 2003). 
    Can someone explain to me why it behaves like this? And if anyone got a solution? It's only occur on Excel-documents and not the others Office documents...
    Thanks in advance

    Hi tomburken,
    It seems that this is not a server issue .
    This issue may due to the " automatically save " executed by some office scripts .
    To get the accurate assistance please post this issue to Microsoft office forum :
    http://social.technet.microsoft.com/Forums/zh-CN/home?category=officeitpro&filter=alllanguages
    Best Regards
    Elton JI
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • WIS 30902 Error when opening a webi document from Rich client

    Hi ,
    When I try to open a webi document from local folder or import from CMS in Webi Rich client, I get the following error message.
    "An error occured while checking the document security. (WIS 30902)"
    Has any one come across this issue?
    Thanks,
    KartheeK

    In our case, we could initialize Webi Rich Client (Webi RC) successfully , but later we found that any disruption in Webi RC client connection will corrupt the client ..\LocData files used by client to dock to the CMS, causing WIS 30902 error.
    At first we thought just deleting the ..\LocData Client .lsi files fixed it. Unfortunately, there are a collection of files and folders in ..\Loc Data involved in the authentication. We already found that complete deinstall of Webi RC didn't work. Now we know the problem is in the \My Business Objects Documents\LocData values.  Deinstall of Webi RC does not delete them.
    It sounds scary, but isn't. The Webi RC will download the refreshed files it needs automatically from the CMS. However, it won't overwrite the old bad ones, and you have to do that manually.
    Solution.
    1. Logout of Webi RC. Make sure it is not running in taskmgr.
    2. Go to the client ..\My Business Objects Documents\LocData folder.
    3. Delete all the files and folders, or rename by adding .bak extension.
    4. Logon with Webi RC
    5. Corrupt files will now be resynchronized to CMS
    -Doug Grant, Haworth BI / Business Objects Architect

  • Error when opening/editing a document/excel file in sharepoint

    I have a sharepoint site that has Office Web Apps enabled. I am also using MS Office 2010. Can you please help me solve this problem?
    Here are my steps when I encounter this error:
    1. Click ok the document - this will open the document in the browser
    2. In the document (opened in browser) click 'Open in Word' - this will open Microsoft Office Word and will ask for credentials
    3. I will enter my valid credentialls - Upon entering my credentials for the first time, it will load the document however, after it loads the document, another login window appears again,
    the error here is that it keeps on asking me for credentials, the login window keeps on popping out upon clicking on the OK button, if I click on Cancel it will close the login window.
    4. In the office document, click Edit Document - an error will appear saying 'A problem occured while connecting to server'
    ----------------------- Sharepoint Newbie

    Hi,
    Add you site in trusted zone of your IE and
    Open Tools/Internet Options/Connections/LAN Settings and uncheck "Automatically Detect Settings"
    See this thread for more info:
    http://social.technet.microsoft.com/Forums/en-US/sharepointadminlegacy/thread/4667a58c-a42e-44d2-8bb3-75db0aff5ba4
    Also try with another browser or in different machine.
    Let us know your result
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Getting Adobe Lifecycle Error when opening the pdf document to provide comments

    Hi All,
    I am getting AdobeLifeCycle Error message when I am trying to give comments in the pdf document.
    I have a workaround in place for the same but I want a permanent fix.
    PFB the workaround for the same:
    1.Delete the Adobe folder from the users local profile, under the following folders:
    C:\Users\”login”\AppData\local
    C:\Users\”login”\AppData\locallow
    C:\Users\”login”\AppData\Roaming
    2.Delete the contents of the temp file on the C Drive
    Please let me know if some one has faced this issue and have been successful in finding a permanent fix.
    Thanks & Regards,
    Aniket Deshmukh

    PFB the error message:
    Adobe LiveCycle Review Connector - File Not Found’

  • Excel service and OWA - getting ERROR while trying to open/edit Excel documents

    Hi All,
    We have configured SharePoint 2013 with Excel Service and OWA (Office Web Apps).
    After configuring, we are able to view/edit Word or PowerPoint documents from the browser (as OWA is configured). But we are getting errors while trying to open/edit Excel documents.
    We are not able to view/edit the excel workbook from the browser (through OWA).
    To open the excel in the browser, decision has to be taken at the farm level on what to be used – Excel Service or OWA Server? Is it possible to do setting at site collection level?
    Error details are given below:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 3/25/2013 1:29:08 PM
    Event time (UTC): 3/25/2013 7:59:08 AM
    Event ID: fc2e0530f493493896e6c8b6297a0423
    Event sequence: 10
    Event occurrence: 3
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/2/ROOT/x-1-130086717598089315
        Trust level: Full
        Application Virtual Path: /x
        Application Path: C:\Program Files\Microsoft Office Web Apps\ExcelServicesWfe\
        Machine name: VHYDMANTHSTP-02
    Process information:
        Process ID: 1252
        Process name: w3wp.exe
        Account name: NT AUTHORITY\NETWORK SERVICE
    Exception information:
        Exception type: ArgumentException
        Exception message: An entry with the same key already exists.
       at System.Collections.Generic.TreeSet`1.AddIfNotPresent(T item)
       at System.Collections.Generic.SortedDictionary`2..ctor(IDictionary`2 dictionary, IComparer`1 comparer)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.GetInstalledUICultures()
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.IsUICultureSupported(String cultureTag, CultureInfo& cultureInfo)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICulture(String cultureTag, Boolean useOleo, Boolean allowCustomFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICultureFromFrontEnd(String uiCultureTag, Boolean allowFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentCulturesFromFrontEnd(String uiCultureTag, String dataCultureTag)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.SetCurrentCulturesFromContext(HttpContext context)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.PreProcessRequest(HttpContext context)
       at Microsoft.Office.Excel.WebUI.XlPreview.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Request information:
        Request URL:
    http://mysrevr/x/_layouts/xlpreview.aspx?ui=en-US&rs=en-US&WOPISrc=http://myservernames1/_vti_bin/wopi.ashx/files/f36d669ceb814d67bdad0e1e1f98e466&wdSmallView=1
        Request path: /x/_layouts/xlpreview.aspx
        User host address: 10.81.138.92
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: NT AUTHORITY\NETWORK SERVICE
    Thread information:
        Thread ID: 13
        Thread account name: NT AUTHORITY\NETWORK SERVICE
        Is impersonating: False
        Stack trace:    at System.Collections.Generic.TreeSet`1.AddIfNotPresent(T item)
       at System.Collections.Generic.SortedDictionary`2..ctor(IDictionary`2 dictionary, IComparer`1 comparer)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.GetInstalledUICultures()
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.IsUICultureSupported(String cultureTag, CultureInfo& cultureInfo)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICulture(String cultureTag, Boolean useOleo, Boolean allowCustomFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICultureFromFrontEnd(String uiCultureTag, Boolean allowFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentCulturesFromFrontEnd(String uiCultureTag, String dataCultureTag)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.SetCurrentCulturesFromContext(HttpContext context)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.PreProcessRequest(HttpContext context)
       at Microsoft.Office.Excel.WebUI.XlPreview.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    I have the same issue while opening the file , i have checked every thing twice. but unable to fix this thing . can any one help.
    One more thing which is i am wondering none of the MS representative replied on this post which is originally posted on March 27-2013.
    is microsoft alive??
    Imran Bashir Network Administrator MCP, JNCIA-EX,ER,JNIOUS +92-333-4330176

  • Error when opening document with ECL control: INVALID_DATA

    Hi Gurus,
    I've tried to search the net for this problem but could not find anything and I'm stuck now.
    Description:
    we're using ECL to view attached documents (to POs etc.) which are stored through ArchiveLink on the content repository.
    when we try to open this document, time-to-time we get following error:
    Error when opening document with ECL control: INVALID_DATA
    Message no. SDV004
    by time-to-time I mean that when we try to open same attachment again it opens successfully (sometimes we need to re-open it 3-4 times to get it)
    what we've tried is to enlarge timeout for HTTP protocol (tx SMICM, from former 30 to actual 60) but only effect we got is that we're waiting for the error longer time
    It will be really great if anybody of you guys can give me an advice where the problem can be or where should I look and what to check
    Thanks,
    David

    Hi Christoph,
    thanks for tip, unfortunately this was already flagged, currently settings are:
    for Display Settings:
    yes - include ECL control
    use HTML control
    empty - maximum viewer wait time
    (do you think that setting some value for this could help)
    yes - deactivate generic object services in viewer
    no - doc display as dialog box
    yes - deactivate data provider cache
    Storage Settings:
    yes - always copy document class from document type
    yes - permit multiple assignment
    Thanks,
    David

  • Error When Opening Document

    I receive the following error when opening a Web Intelligence Document, no matter the user.
    C​a​n​n​o​t​ ​i​n​i​t​i​a​l​i​z​e​ ​R​e​p​o​r​t​ ​E​n​g​i​n​e​ ​s​e​r​v​e​r​.​ ​(​E​r​r​o​r​:​ ​R​W​I​ ​0​0​2​2​6​)​ ​(​E​r​r​o​r​:​ ​I​N​F​ ​)
    I also cannot run any reports. Anyone have an idea? I cannot seem to find any information in the knowledgebase on that error.

    Phasenjager,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • CF 8 CFPDF "Merged" document throws 131 Error when opened in Acrobat

    We are using CF 8 on Windows Server 2003 platform.
    Any CFPDF "Merged" documents are throwing 131 Errors when opened in Acrobat
    Tried re-saving the documents on local machine and still same problem. Tried opening in multiple versions of Acrobat, same problem.
    Individual documents created are opening without issue. It is Only when these documents are merged that this error occurs.
    We do not experience this behavior in our CF 10 environment.
    We are a Big, Slow moving enterprise here so not much chance of getting our CF 10 environments promoted to meaningful production use soon.
    Found virtually nothing in HelpX and nothing online of any value regarding this issue.
    Has anyone else experienced the issue noted in the title of this discussion?
    Has anyone a work around or solution?

    I am getting the same error even in Acrobat version 8.1.3.
    Additionally, I noticed that if we click on menu ‘Advanced->Sign&Certify->Preview Document’, then we get a notification as “This document is not PDF/SigQ compliant and may display inconsistently”. On clicking  ‘View report’ on that notification, the below dialog pops up. It has errors listed as:-
    Code 4000 : Unrecognized PDF content. The document contains PDF content or custom content not supported by the current version of Acrobat.
    Code 4002: PDF content contains erros.
    However, if we sign the PDF using default adobe signature functionality and reopen that PDF, the error does NOT come and the notification also says ‘This document is PDF/SigQ compliant’.
    Can anybody please suggest what could be missing in the custom sign that we apply? Is it because of any of the missing fonts or any other resources?
    Awaiting reply!
    Regards.

  • It concerns adobe export pdf program. When we open  this program, it appears on the right of the screen." recognize the text in english"but. we would like to change it for french language. Because when we export the document under word program , it uses

    It concerns adobe export pdf program. When we open  this program, it appearsq on the right of the screen." recognize the text in english"but. we would like to change it for french language. Because when we export the document under word program , it uses english dictonnary to correct the text. thanks for your answer..

    [topic moved from Developers to Acrobat.com forum]

  • SAP DMS : Error when opening document with ECL control: INVALID_DATA

    We are receiving following error while try to view .FAX file through SAP Document viewer
    "2D viewer - Unable to opend Document"
    "Error when opening document with ECL control: INVALID_DATA"
    Appreciate your quick effort.
    Thanks,
    Sam.

    Yes, We have checked in both ways, I have also followed other threads on the same issue
    But not able to find the solution for the issue. We are facing the issue when we are using files scannned by Kodak Scanner i1420 in tiff format.
    But If I will attach any other tiff files from directory then It can viewed through SAP Document Viewer.
    I appreaciate your help in this regards.
    Thanks,
    Sam,

  • I'm getting an error message "There was an error when opening this document. Access denied" on some PDF's that I was able to open in past. Uninstalled XI and installed X but same problem. Any thoughts?

    I'm getting an error message "There was an error when opening this document. Access denied" on some PDF's that I was able to open in past. Uninstalled XI and installed X but same problem. How can I access these files?

    I have exactly the same problem. The interesting thing is that the file opens when I attach it to an email and open it out of the email. I already saw the advice you provided in  similar post from Aug last year and checked the security settings of the file and the folder. But according to that I have all rights.
    My OS is Windows 7 Enterprise.

  • Error when open fdf document from Safari

    Reproduced on
    * Adobe reader 9.1.0
    * Acrobat Pro 8.1.3
    NOT reproduced with Acrobat Pro 8.0.0( withou updates )
    have simple fdf document for example in root of disk c:
    =============
    %FDF-1.2
    1 0 obj
    <<
    /FDF
    <<
    /F (1.pdf)
    /JavaScript
    <<
    /After 2 0 R
    >>
    >>
    >>
    endobj
    2 0 obj
    <<
    >>
    stream
    endstream
    endobj
    trailer
    <<
    /Root 1 0 R
    >>
    %%EOF
    ================
    when open it with IE or FF, al works fine. but when try to open in safari  messagebox shown
    "There was an error when open this document. This file cannot be found."

    minified version of not worked fdf
    %FDF-1.2
    1 0 obj
    <<
    /FDF <</F (pdf.pdf) >>
    >>
    endobj
    trailer
    <<
    /Root 1 0 R
    >>
    %%EOF

  • Outlook 2010 gives error when opening a PowerPoint attachment.

    Outlook 2010 gives error when opening a PowerPoint attachment. 
    Hi All,
    We have several VIP employees that are getting the following error on all PowerPoint documents that come as attachments from Outlook.
    I have researched and tried the following steps and verified these settings are already applied.
    I did find a work around but not a fix and our security team will NOT allow me to change this setting however if I uncheck the setting all employees can open the outlook attachment.
    Any other ideas on a fix for this if I am unable to uncheck Enable Protected View.

    Hi Matthew,
    This is a perennial problem, here is a thread which has a deep discussion about this issue:
    http://social.technet.microsoft.com/Forums/office/en-US/07f710a5-a6ca-4256-8f27-6aac41a6b37e/outlook-2010-unable-to-open-word-excel-and-power-point-attachments-from-an-email?forum=outlook
    It looks like nobady really find a solution there, the only workaround is what you have found - change the protected view setting in Trust Center. You will lose some security by doing this but it seems to be the only solid solution currently.

Maybe you are looking for

  • How can I disable backup password from I tune?

    how can Idisable backup password from Itune ?

  • Saving Pages document iCloud Mac at the same time?

    I recently bought Pages, Numbers, and Keynote. I like them a lot, but am running into some logistical issues. The biggest one is that I love saving to the Cloud - all my stuff is safe, especially since my harddrive has been replaced once and is alrea

  • EJB does not connect to IP through WebLogic

              Hi All--           Here is the problem. My servlet makes calls to EJB's in the hopes of connecting           to an IP address outside of my firewall through WebLogic. It doesn't attempt           a connection. I know my code is correct beca

  • Mac :: Firefox :: CSS border issue

    Can someone with Firefox on a Mac check this page and see if you can tell why in the "products" boxes ( there are 3 ) .. the bottom border is missing on only 2 of them. I believe the 3rd box down renders the border. If I delete a paragraph from the 1

  • How do I recover my Qosmio G20-118 without loosing data?

    Hi there, I need to recover my system but have quite a lot of data in my D: HDD I would very much like to keep. In this forum, Gipsyman said that I should be able to use the dvd recovery disc selecting the advanced recovery mode, however there are a