5,699,997 members and growing! (22,622 online)
Email Password   helpLost your password?
Web Development » ASP.NET » Samples     Advanced License: The GNU General Public License (GPL)

Office Web Component v11.0 Spreadsheet And AJAX Interoperatibility Part 1

By Gautam Sharma

This article demonstrate, how OWC and AJAX can be used to store spreadsheet content as XML data into database.This XML in turns rendered as spreadsheet in OWC control from database source.
VB, Office, WebForms, Ajax, ASP.NET, Visual Studio (VS2005, Visual Studio), Dev, Design

Posted: 19 May 2008
Updated: 19 May 2008
Views: 7,515
Bookmarked: 15 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
5 votes for this Article.
Popularity: 2.86 Rating: 4.09 out of 5
1 vote, 20.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 20.0%
4
3 votes, 60.0%
5
Note: This is an unedited contribution. If this article is inappropriate, needs attention or copies someone else's work without reference then please Report This Article

Introduction

Office Web Component (OWC) are a group of OLE classes implemented as ActiveX controls in Microsoft Office 2000, Office XP and Office 2003. This ActiveX controls can be plugged into web pages, Visual Basic and VBA forms, Windows forms or programmed in-memory. The OWC can be used by any COM-compliant Component Object Model programming language. Sometimes in our Application we may require a feature of Excel Spreadsheet with minimum level of functionality in such cases OWC is the solution to our problem.

Note: OWC is not available for Design Time toolbox in Visual studio .Net.

UpdateTemplate

System Requirement

http://www.microsoft.com/downloads/details.aspx?FamilyId=7287252C-402E-4F72-97A5-E0FD290D4B76&displaylang=en

Or just search for “Office Web Component v11.0 Download” , yeah I trust ‘Google’ that it would provide us with the exact result if Microsoft does not change the location of the download. The important point to note here is, that the server does not require to install microsoft Excel. Neither the client.

Implementation

Once you have installed the office web component, use the tag to insert component control on to your aspx page.

Blocks of code should be set as style "Formatted" like this:

<object classid="clsid:0002E559-0000-0000-C000-000000000046" id="sp" width="100%" style="height: 300px">
<param name="XMLData" value="<a></a>" />
</object>

        

Note: OWC version 10 and 11 appear disabled in Visual Studio 2005. For more information click

http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=114448

Using OWC Activex Control with AJAX:

This is helpful when one wants to save spreadsheet content of OWC into server side database. This requires exposing client side OWC to server side which is best achieve using Ajax implementation. The OWC renders spreadsheet data into XML data. This xml data is stored in database table. When this xml data is retrieved back to front-end it gets rendered as spreadsheet data.

Step 1

.ASPX

<object classid="clsid:0002E559-0000-0000-C000-000000000046" id="sp" width="100%" style="height: 300px">
<param name="XMLData" value="<a></a>" />
</object>

<input type="button" value="Save" onclick="SaveTemplate()" class="ButtonStyle" />

The above code will insert and OWC control in the page. The control displays the spreadsheet. For storing the data in the database I have used AJAX. The javascript function does the post back to the server. At the same time it saves the XMLData in the server side hidden variable and this data is stored into database.

 
function LoadTemplate()
    {  
  
    try
    {
            XMLHttpRequestObject = new ActiveXObject("Microsoft.XMLHTTP");
            var spreadsheet = document.getElementById("sp");
            
            if(XMLHttpRequestObject) 
            {                         
                var documenttype = document.getElementById("Select1")
                XMLHttpRequestObject.open("POST", "UpdateTemplate.aspx?operation=loadTemplate");      
                XMLHttpRequestObject.onreadystatechange = function ()
                {
                    if (XMLHttpRequestObject.readyState == 4 && XMLHttpRequestObject.status == 200) 
                    {
                           spreadsheet.XMLData = XMLHttpRequestObject.responseText;                      
                           //alert(XMLHttpRequestObject.readyState );
                    }
                }            
                XMLHttpRequestObject.send(null);
                document.getElementById('<%= lblMessage.ClientID %>').innerText=XMLHttpRequestObject.responseText;
            }                  
          }
          catch(err)
          {}
            
    }
  
 

Step 2

CODE BEHIND

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Try

            Dim strOperation As String = String.Empty
            strOperation = Request("operation")


            If strOperation = "save" Then
                Dim streamReader As New System.IO.StreamReader(Request.InputStream)
                Dim spreadsheetdata = streamReader.ReadToEnd() '' this this needs to be updated in teh database
                SaveTemplate(spreadsheetdata)

                Response.Write("DataSaved")
                Response.End()
            End If

        Catch ex As Exception
            'Response.Write("error occured")
            'Response.End()
        End Try
    End Sub

Wrapping up

Office web component is a good tool to get excel type spreadsheet feature onto your web page rather than using the excel object and creating spreadsheet at runtime. The later approach is tedious and not user friendly. This involves creating new component altogether. OWC really saves significant amount of development time and simulate real time excel worksheet on web.

Any Idea, Suggestion or References on similar topics will surely add values to our learning.

For more information you can contact me on gautams.mail@gmail.com

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPL)

About the Author

Gautam Sharma


Im is a Senior Software Developer working with a software company in Mumbai(India). He has overall 5.5 years of experience in .net technology. He has knowledge in C# 3.0, SQL Server 2005, SQL Reporting service, Enterprise Library 3.0, WCSF & Windows Workflow Foundation.

He has a hands on cutting edge tool like MS Visio, Rational Rose, Borland together 2006 & CruiseControl.Net


Currently his area of interest is on LINQ and Sharepoint.

He is MCPD-EA Certified.

Occupation: Software Developer (Senior)
Location: India India

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 7 of 7 (Total in Forum: 7) (Refresh)FirstPrevNext
GeneralXML Root NodememberMember 41068854:41 7 Nov '08  
QuestionSaving Cell Data into Database TablememberMarco LO0:11 20 Jul '08  
GeneralLicensing IssuesmemberbinaryDigit@@5:33 23 May '08  
GeneralRe: Licensing IssuesmemberGautam Sharma20:43 27 May '08  
GeneralRe: Licensing Issuesmembercdebel3:25 5 Jun '08  
AnswerNice one !!!memberashu fouzdar5:06 21 May '08  
GeneralOWC -Good Article And helpful [modified]membersantosh poojari1:15 19 May '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 May 2008
Editor:
Copyright 2008 by Gautam Sharma
Everything else Copyright © CodeProject, 1999-2008
Web17 | Advertise on the Code Project