Reading .ofx,.qif file in asp.net - asp.net

i want to read the .ofx and .qif files using asp.net.
Can any one please help me in this.
Thank you

http://qif.codeplex.com/ contains an open-source API for reading QIF files from .NET.
There are several others if you search for QIF or OFX on CodePlex.
OFX is XML with a quirky header. Examples and specs can be found at http://www.ofx.net.

If you are looking for a program (and not code) then try iCreateOFX Basic.
It reads QIF, OFX and CSV files into a grid.

Related

Converting Docx to PDF using .Net Core [Open Source]

I'm looking for a plugin which can convert word (docx / doc) to pdf Without Microsoft.Office.Interop and Open Source one. There are questions asked on it but no solution is provided or I didnt found any.
Any suggestion or references will be much appreciated!.
You could do this using Aspose.Words project, however this library is not an opensource (license is required and cost some money): https://blog.aspose.com/2020/01/02/convert-word-doc-docx-to-pdf-in-csharp-net-core/
On our project we needed to keep formating as close as the original. But every plugin we tried never came close to the original.
We opted for I Love Pdf utilities.
Word to PDF
They have a well documented API for some language (including .Net) and it works great.
You can process 250 files freely every month and if you need more, it's not that expensive.
Hope this helps

Human Readable ydn-db Sources

Where I can Found the last sources with human readable format javascript code? I'm trying to solve one problem but I can't understand some code. I download the code here but I don't know what file is for me.
Have you look at source in the project repo?

Merging PPT files in ASP.NET

I have a tricky requirement to be able to merge PPT files on-the-fly in ASP.NET.
I'd like to avoid interop as I know it's not a good idea from ASP.NET.
I came across Aspose.Slides which looks like it would do the job - quite pricey though.
http://www.aspose.com/categories/.net-components/aspose.slides-for-.net/default.aspx
Cheaper / simpler suggestions much appreciated!
If you're certain that you'll only need to work with the newer XML format files (PPTX/PPSX/etc), you may be able to do what you need to by working with the file contents directly. They're actually zips that contain XML and other related resource files. Possibly relevant example:
http://msdn.microsoft.com/en-us/library/cc850834.aspx
#Robert Morgan,
I suggest you to please consider using cloud based version of Aspose.Slides for .NET SDK API in pay as you go mode. This will allow performing some number of operations completely free including merging presentations. I suggest you to please visit Aspose.Slides for Cloud pricing options for your convenience.

PDF to HTML or similar

I'm building an application to view pdf's through a browser without the need of a plugin on mobile devices. I tried ImageMagick and ghostscript to covert the pages to images but they are far too large and text becomes unclear. I see website offering a service of converting pdf's into html and do a descent job but I can't find an example of how this is accomplished. Any help is much appreciated. Thanks!
EDIT: I seem to have read the question backwards. In this case it might be best to parse through the PDF and then format some HTML based on what you find. I believe the javapdf option is capable of this, but I haven't used any of these so I am not sure. If worse comes to worst and you can't find software to disassemble a PDF, you might be able to write your own disassembler in Java or PHP by reading the PDF specification. Best of luck!
http://www.adobe.com/devnet/pdf/pdf_reference.html - PDF Specification (Adobe Modified Version, because they are most popular you may want to support their extensions)
-- OLD -- These websites probably write their own proprietary software to do the trick. If you are truly interested in this undertaking, I would suggest parsing the HTML to get the data and style information and using it to format some sort of PDF writer APIs. A quick Google search yields the following: -- END OLD --
http://www.cutepdf.com/Solutions/
http://ruby-pdf.rubyforge.org/pdf-writer/doc/index.html
http://asprise.com/product/javapdf/
If you are looking at converting PDF to HTML and planning to run the conversion on a server, then you can try pdf2html. It is a program packaged as part of poppler-utils. I do not know how the program accomplishes it.
I was googling and came across the below link explaining how scridb.com implements conversion.
http://coding.scribd.com/2010/06/01/the-perils-of-stacking/

How to use XML file as a data storage to Add, Retrieve, Update, Delete

I want to use XML file as a data source for my application.
What approach should I take any example??
Thanx
This tutorial will show you how to use LINQ to XML to read and also add data to an external XML file, in C#, LINQ to XML C# Tutorial.
Another tutorial regarding LINQ to XML which explains LINQ a bit more can be found here
Also why are you opting for an XML file as data storage? Hope some of this will help though!
P.S. These tutorials are not mine thus credit goes out to the authors.
XML is very inefficient at the operations you mention. Manipulating XML files without reading the whole file into memory, changing it, and writing it back out again is very likely not worth the effort.
The better bet would be to use a real database, perhaps SQLite if you need something simple and file-based. Then you can write a simple routine to dump this data to XML whenever you require.

Resources