|
We have a requirement to export different pages of our I.E. only web application to Excel/pdf documents. The pages have graphics/grids/text, etc...They should also be printable as well. I heard weSuperGoo mentioned, but have no experience with it. I am...
Answer Snippets (Read the full thread at stackoverflow):
I've been using that trick is provide a suitably formatted version of the... .
Excel will automatically convert the HTML table to a spreadsheet.
To export to Excel, you can simply just export a HTML table as HTML and name the file whatever.xls.
|
|
Can I get some help interpreting / implementing the answers at: http://stackoverflow.com/questions/2006468/copy-paste-from-excel-to-a-web-page/2006789 please?
This was the most useful answer Google found for "Paste Excel to Web Page/Form" -- seems perfect...
Started by KingsKid360 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Hard to tell without seeing any of your code, but does your html have an element with id=excel_table?
example:
<div id='excel_table'> Data table will go here </div>
Given that you're;/script> <script type="text/javascript....
|
|
Hi All,
Is there a standard way or library to copy and paste from a spreasheet to a web form? When I select more than one cell from Excel I (obviously) lose the delimiter and all is pasted into one cell of the web form. Does it have to be done in VB? ...
Started by His dudeness on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Try it yourself....
Here an in-dept tutorial on how to read and write Excel data with PHP not be visible in the form.
Maybe it would be better if you would read your excel file from PHP, and then either save it to a DB or do some processing on it.
|
Ask your Facebook Friends
|
Good afternoon,
I have a web query in Excel 2002 going against a web page that returns a date column. The dates are returned as DD/MM/YYYY, as I would like to show them in my spreadsheet. My machine running Excel has its regional settings set to en-GB...
Started by AlanR on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Universal....
I don't see how any of what you suggested would of trouble .
Still, Excel's Web Query returns data in en-US.
The alternative.
OTOH - if you had control over the web page, you could change the date format.
A difference.
|
|
I have an Excel spreadsheet template with data and a chart. I want to be able to publish (repeatably) the raw data to a web server using using a web service interface. I would like to do this with vanilla Excel--no add-ons or required ActiveX controls...
Started by Peter Stephens on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Microsoft provides the ability....
(This would not read the chart.
That would interface directly with the Excel template, read the Excel data and push the data to a webYes, use the OLEDB driver and read the data from Excel directly.
|
|
I'm looking for a way to present excel documents on the web either by :
converting Excel documents to html, css and javascript or by, using silverlight control
I'm not looking for a way to program the conversion by my self. What I'm after is a control...
Started by Nikola Stjelja on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You could try ....
You can do things like convert a datatable to a spreadsheet, execute macros it in a datagrid .
Development platform that allows you to manipulate and generate Excel files with managed code, no install of Excel required.
|
|
I am looking for a web datagrid control to integrate in ASP.NET app. The most important feature required is the ability to copy-paste from and to excel spreadsheet right from the grid on the web page.
Other than Google spreadsheets I found this product...
Started by dotnetcoder on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Nitobi's answer looks sweet and is now GPL V3 licensed. .
Try taking a look at the extjs extensions on codeplex
I need something similar .
|
|
I'm using the code below to go to a web page, copy all of the data and paste to clipboard. The web page, when first opened, has its focus set on a field that is expecting user input. So, when I paste what's in the clipboard into Excel, I get "Enter a ...
Started by doasidont on
, 14 posts
by 4 people.
Answer Snippets (Read the full thread at com):
@ROB: AH!!! Look who is here Long time
@doasidont...an-9-2012.html
On the web page that's retrieved, I'm trying to capture the urls that go with 'Balance is: http://investing....
Thanks.
To the hyperlinks that are on the web page.
|
|
We have a brand new SharePoint 2007 Intranet farm running on new 64-bit hardware with lots of processor and memory. We are using Kerberos for security and have carefully followed all the written guidance from Microsoft and blogs to configuring Kerberos...
Started by Ryan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Http://support.microsoft.com/kb/969083
sorry have no idea ....
The hotfix completely resolved all my issues.
Microsoft has just released a hotfix for this (see link below) .
It turns out this is a bug with Kerberos in Windows 2008 .
|
|
As per my application I need to generate Excel files.
I am able to generate excel files with:
Response.ContentType = "application/vnd.ms-excel" in header and populating data by creating HTML Table.
But while trying to create a file fetching it from server...
Started by Suman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You wouldn't need to have excel installed or use it....
You would be bestI would be tempted to build up the Excel file in XML formal (.xlsx).
Such that making callouts to the excel COM API is very difficult from a web context.
|