Click here to Skip to main content
15,915,019 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi,

i want to intigrate excelsheet on to the webpage ..i dont want to open an excel file and use it...i just want to integrate an excelsheet application on the webpage..
Posted
Updated 24-Oct-11 2:13am
v2
Comments
kiran dangar 21-Oct-11 7:36am    
Question is not Clear...Please explain properly..
[no name] 24-Oct-11 8:12am    
hi ..
i want to intigrate excelsheet on to the webpage ..i dont want to open an excel file and use it...i just want to integrate an excelsheet application on the webpage..

hope u Understand...

Are you looking to embed an excel file in your webpage ?

http://stackoverflow.com/questions/168280/how-do-i-show-an-embedded-excel-file-in-a-webpage[^]

or try doing this

XML
<html><head>

<script language=vbscript>

Dim objExcel

Sub chartsheet_onclick()
call OpenWorkbook("c:\test\testfile.xls")
End Sub

Sub OpenWorkbook(strLocation)

Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = true
objExcel.Workbooks.Open strLocation
objExcel.UserControl = true
objExcel.Sheets("chart").Visible = True
objExcel.Sheets("sheet1").Visible = False
objExcel.Sheets("sheet2").Visible = False
objExcel.Sheets("sheet3").Visible = False

End Sub

</script>

<title></title></head><body><br>

this is a test page for displaying an excel chart...
<br><br>

<input type=button name=chartsheet value="display excel chart">

</body></html>


or you can take advantage of Excel Web App and storage is all free from Microsoft.

Embed an Excel workbook on a web page[^]
 
Share this answer
 
v3
Comments
[no name] 25-Oct-11 1:23am    
Thanx....my problem is not that simple as u gave..
i need to show excel on running webpage...and i can use its applications as we use on desktop...

hope u understand
AswinKrishnan 25-Oct-11 3:03am    
Check the last link I have provided, We can do that by Embedding Excel in Webpage so you can use it as u are using it in desktop, with Web Interface.
[no name] 25-Oct-11 9:22am    
thanx for fast reply.....
AswinKrishnan 25-Oct-11 9:53am    
If you find it useful, Please mark Solution as accepted.
[no name] 28-Oct-11 0:24am    
m checking on it...i think i got my solution...
can u tell me how to install microsoft webapp into my visualstudio 2005 and use through it....
Using visual studio 2008..Which contains excel addins & excel templates)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900