I'm generating a .pdf file with my asp.net web application using itextsharp. At the same time, i need to create .pcl file with the same content. Is there any way ?
Related
I just setup an IIS 7.5 webserver on Windows 2008 R2 server whose inetpub/wwwroot folder acts as a file (jpg, wav, pdf etc) repository for LAN users who can search for a particular file on the server. inetpub/wwwroot folder doesn't have even a single html file or any other webpage. All it has is thousands of jpg, wav, pdf, xlsx, docx files in hundreds of folders.
I have enabled directory listing on the server so a user can browse through all the files but I want a search box where a user can enter partial or full file name to search for a given file.
All I have tried is to find a solution on the web for seemingly a simple problem but couldn't find any solution.
I'm afraid it is impossible to achieve this with native IIS feature. You may need to hard code this function into a .net application or a HTML/javascript page with URL rewrite.
I have uploaded my files in folder name uploads using the ng-file-upload with node.js and angularjs. Now I want to download those files whichever is clicked.
Now i have two Queries
How to show those files at client side
how to get the response i.e URL of the stored location of files so i can try to download.
Or is there any other process to show and download the files using the angularjs and nodejs.
Any hint will great help.
I am developing a windows phone application, which is a version of 8.0. I have uploaded an excel document on Google drive. How do I extract data from the document that I have uploaded on Google drive using Google APIs?
Did you try using PedroLamas/GDrive where you could try out these functions:
Multiple accounts support
OAuth 2 account login
List files and folders with their metadata
Navigate the folder tree
Create new folders
Upload files (just pictures, that's what Windows Phone SDK allows
us to do!)
Star/Unstar files
Rename files
Trash files
Or else another option could be the, Drive API Client Library for .NET.
How to save a excel file in the datastore(not content of file) in google apps using java?
You need to use the bulkloader which enables you to download the data as a csv file which Excel can handle.
I would like to make an Azure Blob Storage browser using Silverlight, like CloudBerry Explorer does. I have an Azure Storage account and the keys, but I am still picking which Control I should use to display file list (DataGrid?).
For the coding, how can I fetch the file list from a blob container ?
p.s. I'm using C# , Visual Studio 2010 , Azure Project Web Role + Silverlight Project
I have developed a silverlight upload control that does exactly that. It uploads a file by splitting it into chunks and retries upload of chunks in case of failed upload. Download it from http://blobupload.codeplex.com/ and use it as you want it to.