Integrate OneDrive and office online into a MVC application - c#

How can integrate One Drive into an MVC application to allow users to upload documents and edit them online. I don't know if just consuming One Drive API will give me the chance to edit the documents with office online. Does anybody know what would be the right approach to meet this requirement. Where can I find examples showing how to edit documents online. Any ideas How can I approach this implementation?

If you want the users able to edit the (Office)document online, we can get the the link form webUrl property of item. Then you can navigate the user to that link so the users able to edit the document.

Related

Accessing Google Sheet data with ASP.NET Project

In our company, there is a Google form for collecting Feedback from customers and it's linked to a Google Sheet.
So I want to get those data and show the summary in my ASP.NET MVC project.
I want to know is this possible to do? Do I need to pay an additional amount to get access to those data (like API)?
If there is a way of doing this FOC please tell me how.
Thanks.

Get app's data from Play Store, knowing app's ID

I know that this question has beeing asked beforeā€¦ but somehow all the answers are incomplete, not applyable or (mostly) outdated.
So, I'm asking now, in 2018:
Is there a way to access app's details, knowing its ID (e.g. com.companyName.appName), on the Play Store, the largest mobile Marketplace?
Is there an official API?
Browsing the GoogleApis, I didn't find any.
Is there a way to obtain theese data in another way (e.g. some nuget package)?
Or do we still need to analyze the app's HTML web page, searching for the correct nodes?
I need to access this data using C#.
Best regards.
There is no official API for getting app info from playstore, the only way is to scrape the website which is not legal but a lot of websites are doing it so i guess google is cool about it

Xamarin.Forms Spreadsheet Manipulation

So far I have a Xamarin.Forms application working for Android and IOS. What I have right now is getting spreadsheets from Google Drive for user after he login with his Google Account.
What I am trying to achieve is provide an option for user to edit spreadsheet that he select. So I'm displaying a list of spreadsheets to which this account have access (from Google Drive) and then I want to load it and allow user to manipulate it (rows/cells) and save it, so to the end I have an object which represent sheet with updated values.
Some extra information, after customer choose which spreadsheet he want to use, in code I am able to read it and what I receive is an object from type List<List<object>>, which represent collection with data from rows and columns.
I am not sure what framework I can use for Xamarin.Forms and loading this type of data, also to provide different functionalities similar to "mail merge".
One from the frameworks I went through was DevExpress, but this wouldn't work in my case, because of the data types I have. I prefer if framework that you suggest is free.
I was researching if it's possible to load Google Sheets on phone and allow customer to edit data, but still no information so far.
So generally what I need is a suggestion what tool/framework I can use or is it there any other approach for having same result.
Thanks in advance
What I found is that when I get elements from Google Drive, they have property WebViewLink, which value is link for spreadsheet, where you can edit it. It will redirect you to online Google Spreadsheets or locally installed app (Sheets).
So now, instead of looking for framework or building my own logic, I am reusing Google Spreadsheets, which I find for much better option, for my case.

How to display user submitted data in Back Office of Umbraco 7?

I want to Display the User submitted Data in Umbraco 7 Back office.
I have created a page to fetch some data from User. And now I want to display the submitted items in the admin panel. So that Admin can approve or Delete from the submitted list.
I want to display the submitted data in a Back Office with an Approve or Delete option for each entry.
Can anyone recommend a proper way to do this.
Any Help would be appreciated.
Thank You Chris For the sudden help.
The following links also helped me.
http://our.umbraco.org/forum/developers/extending-umbraco/49324-How-can-I-create-Form-in-Admin(Back-office)-to-take-input-by-admin-and-store-it-to-data-base?p=0#comment176152
http://our.umbraco.org/wiki/reference/files-and-folders/dashboardconfig
If you need to list your contents simply using a plugin Content Search Tool is a perfect option for Umbraco 7
http://our.umbraco.org/projects/backoffice-extensions/content-search-tool
For Umbraco 6.* or lower(based on the documentation) you may use(not tested) Content Maintenance Dashboard Package
link: http://our.umbraco.org/projects/developer-tools/content-maintenance-dashboard-package
Hopes this may help someone
Use the dashboard under /config/dashboard.config
It basically just points to a standard .net user control which allows you to manage data in whichever way you find easy.

Get logged in user details in sharepoint c# webpart

After much wrangling I have a development environment for building sharepoint webparts in c#.
I'm completely new to SP development, so I haven't quite found the various API docs, so I'm hoping someone can help get me started.
Eventually, I want to write a simple web part that allows its user to display different content depending on who the current user is.
What I'd like to do first though is just build a dead simple webpart that will simply print out the current user's details - username, full name and any permissions groups that they have.
Thanks
SPContext.Current.Web.CurrentUser

Categories