How to open open office spread sheet document in browser using asp .net c#
Below is my code which opens a word or spread sheet document when user clicks the image in browser.But i need to open that word/spread sheet document in the browser itself.How can i do this can anyone help me out<asp:ImageButton ID="imagebutton1" runat="server"
AlternateText="ImageButton 1"
ImageAlign="left"
ImageUrl="Images/Img.jpg"
OnClick="imagebutton1_Click" />
protected void imagebutton1_Click(object sender, ImageClickEventArgs e)
{
System.Diagnostics.Process objDocProcess = new System.Diagnostics.Process();
objDocProcess.EnableRaisingEvents = false;
objDocProcess.StartInfo.FileName = Server.MapPath(@"OpenOfficeDoc\Test1.odt");
objDocProcess.Start();
}