Reputation: 33
Let me share the following scenario:
I have a ASP.NET intranet Web-based application that generates Excel reports on server. I want to drop this reports on a Share point portal where this report can be viewed by all users. What all do I need to achieve this through ASP.NET? The SharePoint portal is obviously hosted on another server.
Thanx in advance and a million apologies if this is a dumb question.
Upvotes: 1
Views: 202
Reputation: 10638
Use the Out-of the box Webservice, _vti_bin/Lists.asmx
in SharePoint. Add a web reference to that webservice in your asp.net web site project and use that to add list items (files) to a list.
P.S. There are no "dumb" questions. There is a lot of information to be found on this subject on the web though...
Upvotes: 3
Reputation: 2490
How about putting all these reports on a shared folder and setting respective sharing permissions on the folder in sharepoint?
Does this work?
Upvotes: 0