Html - Programmatically Generating Editable Word Docs?

Jun 25, 2010

The purpose is to generate proposal documents that can manually be edited in Word after the fact, but before sending them out to the customers.

Much proposal content would be drawn from existing HTML website content (backing CMS) and also some custom (non-HTML) injection for certain scenarios. Of course the conditional logic could go into server-side ASP.NET to vary the content appropriately.

I'm open to 3rd-party tools if raw manipulation of the Word API is arduous. In fact a good 3rd party tool might be the answer.

View 3 Replies


Similar Messages:

Force Normal View When Generating Word Doc Via HTML?

Apr 26, 2010

I am creating an HTML document which we are then pushing out to MS Word using a "application/msword" content type. This works so far except that the files open in Word with Web View. Once Normal View is selected all works fine. Is there any way to force Word to open with Normal View instead of Web View?

View 1 Replies

C# - Retrieve And Zip Up Word Docs From SQL Server

Apr 4, 2011

I have an asp.net app that uses a SQL Server 2005 database to store word documents. One of the application requirements is that when a user clicks a button, the system retrieves some number of word documents from the db, zips them up in memory and allows the user to save the zip file to disk.

Is there a zip library that provides the ability to zip up files in memory? The few that I've seen read from the file system.

View 3 Replies

C# - How To Display Size And Icon For Pdf And Word Docs

Oct 13, 2010

I have webpages that contain links to word documents and pdf files. For each link I want to display the file size and an icon showing what the file type is.

I'm thinking the best way to do this would be with CSS? Can anybody give me an example of how to do this?

View 1 Replies

Web Forms :: How To Open Word / Excel Docs In New Window

Oct 13, 2010

I'm trying to open Word & Excel docs in a new browser window. The windows opens and then closes straight away. I think I may need browser plugins. Can someone provide some advice on how I can achieve this?

Here's my code:

From calling page:

[Code]....

From new page:

[Code]....

View 1 Replies

Security :: Forms Authenication Prevent Word Docs Being Rendered

Nov 23, 2010

I have a .Net 4 web application which has a folder called "docs" which is full of Word docs on the root of the website. The words docs are linked with a gridview in my "admin" section

I only want Autheicated users to be able to renders the word docs in the doc folder. I am finding if the user logs out and they manually type in the url to the Word document it renders the file eg.

www.mydomain.com/docs/something.doc

i have tried putting this in my web.config but did not work for the Word docs. It stops the rendering of .aspx files but not .doc's

<location path="docs">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
</location>

Is this because the .doc extension is not hadled by the .Net framework and that I need to do something to Handler Mapping in IIS7? I would prefer to put all my security setting in the web.config ideally

View 5 Replies

Msword - Convert Word 2007 Document To Word 2003 Programmatically ?

Apr 15, 2010

any component or library (preferably open source) that would allow me to convert Word 2007 documents to Word 2003 with ASP.NET?

View 3 Replies

Web Forms :: How To Create Printable Web Forms Using Word Or Excel Docs As A Guidline

Mar 21, 2010

I have been presented with numerous word and excel docs. The goal is to put them online and bind to a database for the fields and also to store data for easy searching and reporting.

Has anyone done anything like this before?

I know the easy solution would be to create a database table for each particula form and also an ASP.net page for each form.

But then there are problems like printing and correct formating so it fits on the page, spaning multiple pages and so on.

And also is there any advice on how to write to PDF straight from the page?

View 1 Replies

Convert From Office Docs / PDFS To HTML

Jul 27, 2010

I am currently working on a project where I need to secure access to downloadable files. The solution I want to implement is to have two buttons next to each document. One that says Editable and the other read-only (depending on the users permission they will see one of these or both). The editable will work normally with the browser dialogue opening to say open / save the document. That is the easy part. The read-only button needs to open the document without caching anything (in temporary internet files) on the client's machine for security reasons or give the ability to save it to their local machine.

The best Idea I have for this is to convert the document to HTML on the fly and then redirect the user to this page. We can then turn caching off on the site so the HTML isn't cached (I know they can then right-click and save the HTML or copy the text,etc.. but that is deemed acceptable). Does anyone have an alternative solution than this (or have an easy way this can be achieved)? I don't want to install Office on the web server or pay heavily for a third-party tool like Aspose.

View 2 Replies

Forms Data Controls :: Make A Gridview Editable Programmatically - Per Row

Nov 3, 2010

I have a gridview with bound fields and a templateField that receives data from a submit button which, depending upon the selected object, i.e. dropdown 1, 2, or 3, return a result set. The gridview also has a checkbox column which is used as a marker to determinie the rows to be added to and existing table. If a user selects multiple row, those rows are written to the database. Everything works.

Now, I need to add additional functionality to the gridview:

Upon selecting the checkbox, programmatically the accompanying row must become editable; for each row presented.

Deselected the checkbox, return the gridview row to a read-only state.

There are 14 columns, one of which is a dropdown which needs to maintain its default value.

View 1 Replies

Using Microsoft.Office.Interop.Word To Convert Uploaded Word Documents Into Previewable Html Files?

Feb 3, 2010

I'm hoping this is an easy one...I'm using Microsoft.Office.Interop.Word to convert uploaded word documents into previewable html files. I haven't implemented it fully, but I've played around with it enough that I think I have a plan that will work... My question revolves around

[Code]....

I'm not in love with the idea of opening word and closing it everytime there's an upload (which I hope is a lot of the time) I'd like to make this a shared object that loads at application start. I have 2 questions
that go along with this. 1. I imagine that winword could lock up and that would be a problem, right? 2. to save a document I use wordapp.ActiveDocument, this could have an issue as a shared object, right? I think I'm talking myself right out of this...

View 1 Replies

Forms Data Controls :: Editable Gridviews - Updating Rows Not Editable / Bound

Jun 30, 2010

Note: Code is taken from this tutorial [URL] I currently have an editable gridview with only some columns editable by the user. In the background I want to record the time/date they have saved the data to the grid. This column 'Time' is not bound to the grid. Is there anyway I can still include this update when rebinding the newly edited data?

I'm also having a problem saving the updated data of my column ActivityTotal. I've been debugging that and following the variable, and it holds the correct value, but just doesnt seem to update. I am providing the codes below for both my gridview and the cs behind and would be grateful if someone could take a look, I assume it's a sort of minor sql issue on my part.

code

protected void UpdateButton_Click(object sender, EventArgs e) { originalDataTable = (DataTable)ViewState["originalValuesDataTable"]; foreach (GridViewRow r in GridView_ABC.Rows) if (IsRowModified(r)) { GridView_ABC.UpdateRow(r.RowIndex, false); } // Rebind the Grid to repopulate the original values table. tableCopied = false; GridView_ABC.DataBind(); }

View 4 Replies

Web Forms :: Strip Out MS Word Formatting Programmatically?

Oct 30, 2010

I'm about to start an application that will allow users to upload an amount of text to a SQL database via an ASP.NET webform. I am certain that many users will cut and paste the text from Word, together with all the formatting and other baggage that Word creates. I'm looking for a way of programatically stripping out all of this stuff and leave just plain text.

View 2 Replies

C# - Convert DOCX To PDF Programmatically Without Word Installed?

Jan 15, 2011

I have a web application and I need to convert DOCX files to PDF to generate some reports wtiten in Word 2007. First I used automation and I faced a DCOM problem and finally I discovered that Microsoft doesn't support automation of Word on the server side.Now I'm searching for other free tools as opposed to Word and etc isn't free, iTextSharp doesn't convert DOCX to PDF.

View 6 Replies

C# - Repeater / List Each Entries On A Page That The HTML Text Should Be Displayed Exactly And Editable?

Sep 16, 2010

I have a table similar to:

ID...NAME.....HTMLTEXT
1....Footer....`<b>test</b>`

where each entry has some HTML text and an associated Name and ID.

What I want to do in ASP.net C# is to list each of these entries on a page in such a way that the HTML text should be displayed exactly how it is meant to be (e.g. <b>test</b> should show 'test' in bold) and each entry should be editable. When the Edit button is clicked on an entry, the HTML text should be replaced by a textbox with the text inside it so that you can edit it and save it.

For example:

FOOTER --EditButton--

TEXT
test

Now I am not sure on what is the best way to do this. Should I use a repeater with an ItemTemplate for each entry? If I use a repeater, and an edit button is clicked, how do I know which edit button is clicked and how do I know which textbox to display the text etc?

View 2 Replies

C# - Generating Html From Code Behind?

Apr 4, 2010

In my .aspx.cs I have a code that reads a .xml file and I deserialize the xml into an object called Post. Problem is that in my .aspx page I have a div and I want to fill in the content of this div from code behind using the html generated from the code behind.. How can I do this?

View 3 Replies

C# - Generating Html To Pdf Using Itextsharp?

Feb 18, 2011

public void pdfgenforffd(TextBox TextBox3, HiddenField HiddenField1, HiddenField HiddenField4, AjaxControlToolkit.HTMLEditor.Editor Editor1)
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ContentType = "application/pdf";

[Code]....

i am using the above code for pdf generation from html text in HTMLEditor(ajax control). If i hardcode a table with each column of different width, into HTMLEditor text than while generating pdf the column get devided equally i.e all column have fixed size on pdf even if i specify some custom width for each column.

I want to generate pdf that can convert html to pdf,also divide table column with specified width. How to do it?

View 1 Replies

MVC 3 RC Html.Actionlink Not Generating Link

Dec 6, 2010

I have a route (the first one listed) which looks like this:

routes.MapRoute(
"TopicRoute", // Route name
"forums/{forumSlug}/{topicSlug}", // URL with parameters
new { controller = "Forums", action = "Topic"} // Parameter defaults
);

I can browse to: /forums/my-forum/my-topic and the page loads fine. Yet I have a Html.ActionLink that looks like: @Html.ActionLink(item.Title, "Topic", new { forumSlug ="my-forum", topicSlug = "my-topic" }) And it won't generate the correct link syntax for me? It generates: <a href="">My Topic</a>

View 1 Replies

Web Forms :: Generating Hyperlinks In A HTML Table?

Mar 21, 2011

I've a WebForm with a HTML table and I need to add hyperlinks in a column. The amount of hyperlinks depend on the rows in a table.Can someone tell me how can I do that?

View 2 Replies

C# - Generating Html Files In A Console Application?

Sep 13, 2010

I need to get data from a database and I need to spit out this data in html formatk using my command line app. For this I am planning to use some sort of template-engine. I was wondering if there is anything in .NET that can do this for me?

The best option would be if I could reuse the asp.net mvc template engine (razor) in my app, this way I should not need to reinvent the wheel.

View 1 Replies

AJAX :: ItemTemplate Not Generating The Html Code For Onclientclick

Mar 18, 2010

I have a GridView inside of an UpdatePanel and the buttons for edit and delete into a templatefield

For the delete button, I also have a modalPopup extender and a confirmButtonExtender, due to the problem of the pannels flashing momentarily (and that is very ugly) I have created a css class with display:none

for the delete button I have created a javascript function called changeVisibility(id) to change the visibility

Here ir some code:

[Code]....

The problem is that when I execute the page, imagebutton onclientclick appears like this:

onClick=""

why is asp.net not processing correctly that, and, if you know another way to hide the panels before they flash on startup,

View 2 Replies

Html.CheckBox Generating An Additional Hidden Input?

Jan 4, 2011

Possible Duplicate: asp.net mvc: why is Html.CheckBox generating an additional hidden input

I'm rendering a checkbox in an asp.net mvc app, and the control is also outputting a hidden field like this:

<input id="blah-64" name="blah-64" value="true" type="checkbox">
<input name="blah-64" value="false" type="hidden">

Problem is, when I post the form, the form key "blah-64 returns "on, off".

Why is this?

View 1 Replies

Export From HTML To MS Word?

Jan 16, 2010

How I can save HTML as Microsoft Word Document in ASP.NET with VB.NET? Do I need a special library to perform the conversion?

View 4 Replies

Web Forms :: How To Convert Html To Word

Apr 12, 2010

I have a problem i need to convert my current html Pages which shows some report to word document.how to convert html to word file in vb code.

View 1 Replies

How To Open Varbinary Word Doc As HTML

Jan 25, 2011

I have a problem which I have not been able to find an answer to in months. I store word doc resumes as varbinary(max). I can retrieve the resumes based on a full-text search - no problem. But the resumes are retrieved as word documents in a .ashx file with the following code. I really need to implement hit highlighting on the site so that users can see if the returned resume is a good fit or not. I don't think this can be done from an .ashx file, so I think I need to be able to open the resume as html in an aspx page and maybe use javascript to do the hit highlighting or perhaps return the text only content of the word document somehow and manipulate the text before display with html tags. I cant find anything anywhere which addresses the problem.

[code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved