its urgent, conversion of html page into excel file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gopiinamadar
    New Member
    • Apr 2007
    • 9

    its urgent, conversion of html page into excel file

    hi,

    please any one send me the JSP code to convert a html page into excel(xls) file

    its very urgent...

    thank you
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    As far as your (web)server side is concerned .html and .xls format files are just
    two different views on the same model. If you have generated .html already
    you're too late, i.e. given the model data you should have *two* view generators:
    one for .html and one for .xls views.

    kind regards,

    Jos

    Comment

    • dmjpro
      Top Contributor
      • Jan 2007
      • 2476

      #3
      try add a response header ... in ur page ....

      content-type as application/download

      and content-disposition as inline;file_nam e.xls

      best of luck.
      kind regards.

      Comment

      Working...