Can I view Report developed in Access 2007 in Asp.net web page? - ms-access-2007

I developer a report in Access 2007 and i want to know if there is any way that allow me to view this report in Asp.net web page ?

Not an ASP.Net page but one possible option would be to export the report as a snapshot (*.snp) file. Then you can embed the file into a HTML web page.
You would have to re-export the report each time to update it though. Also the user would have to install the snapshot viewer on their PC Download Link
I think it still works with Access 2007 see MS kb article
The HTML code would be something like:
For more information see Automate publishing a report snapshot to the Web

You should be able to connect to Access just like any other DB, and display the data using a ASP.Net DataGrid.

Related

OData REST API for integrating MS Office

I need to open office documents from my Sensenet client application. My client application is in ReactJs and I need to invoke the document to open in MS office. Is there any OData REST API available for doing the same. Kindly help.
You have two options:
1. open a file in a desktop MS Office application
There is an action in sensenet that gives you the url for that. First, get the actions for a document, using a request like this:
https://example.com/odata.svc/Root/Content/myworkspace/Document_Library('abcdef.docx')/Actions
You'll get the list of available actions, which is a JSON array containing action properties, for example a url. Look for the action named EditInMicrosoftOffice. If you display the URL of that action and the users clicks on that link, the browser should open the appropriate desktop office app (e.g. Word). You may notice that the format of the url is special (something like ms-word:ofe|u|https://example.com/Root/...). Please do not try to assemble this url manually, use the one that sensenet generated for you.
2. open and edit a file in the browser
This requires Office Online Server to be installed and configured in your environment, and you also need to display an html containing an iFrame that'll display the editor.
A simple host page:
https://wopi.readthedocs.io/en/latest/hostpage.html#host-page
Geting data to display the host page:
https://example.com/odata.svc/Root/Content/myworkspace/Document_Library('abcdef.docx')/GetWopiData

People picker not working in classic mode web application in SharePoint 2013

I have a SharePoint 2010 web application migrated to SharePoint 2013. this is a classic mode web application, we are not using claims, my client doesn't wants it ( Don't ask why?).
I had other web application migrated as same process but i can add users in them.
but in this i am not able to.
I can add users and find users in the web application in central administration. But not in the web application itself.
I am not sure what changes i have to make so that it starts picking or finding users from the people picker. any ideas.
it was because of the asp.netvalidation=2.0 not present in the httprequest line in webconfig. there was no validation for the input provided in any input box.
once we added the asp.net validation it worked fine.
It is a browser compatible issue as well whereas in new browser like IE 10 and other latest browsers it doesn't play well.
we updated the
In short the fix is to edit the pickerdialog.master file in notepad and add a meta data tag, , to the header section.
well keep in mind always save a local copy of your original master page.
it is recommended not to update any original files, we can run the site in compatible mode too.

Document Uploading

I am working on Document upload feature present in MS CRM 2011. However while uploading a document we have to provide share point URL.
Could you please help me out how to get share point URL?
I don't have no idea about share point
Microsoft Dynamics CRM and Sharepoint are different products. You need to have installed Sharepoint in order to use it. The URL required to configure CRM will be the address of the document library where you wish CRM to start storing your documents.
In any case, I think that this question best belongs on Super User so I have flagged it to be moved.
When you install SharePoint and create your first web application you can choose what the majority of the URL looks like. it will also be the URL you use to navigate to the site.

Sharepoint 2010 silverlight web part not available

I have developed a silverlight application with WCF-RIA services and is working fine. I have to deploy this application on a Sharepoint 2010 site.
I am new to Sharepoint 2010. I am having "Full Control" on the site. But when I am in edit mode, not able to see "Media and Content" category which is having "Silverlight" web part.
New web page -> edit page -> Insert -> Web part.
This may be a simple setting issue. Can someone please help.
Thanks.
Along with whatever Thorsten has mentioned, I had to make another setting. Providing access to the web parts which was preventing users from viewing all the web parts
you've to activate the "SharePoint Server Publishing Infrastructure" Site Collection Feature. After activating all the Silverlight WebParts are available.
Thorsten

Integrating my php web application with sharepoint

I've created a php platform that allows users to upload videos and that shows them in categories and so on. It's written in php with a mysql database.
Now i'd like to integrate the system with sharepoint 2010. The main objective is to show the list of videos the way it's shown on my current site, the secondary is to allow the user to add a video from sharepoint to my system, so it can be seen in the sharepoint list too. Third objective, which would be nice to have, is to be able to search the video (on title) from the sharepoint search functionality.
I'm new to sharepoint, but i'm fluent in asp.net and php, so programming would be no issue. I've tried to hack it by trying to show my current site in sharepoint using an iframe on a new page, but sharepoint removes the iframe tag upon save, because it's insecure.
Should i be looking in creating a new Content Type? Or is that an invalid path for my quest?
Sharepoint 2010 includes support for Silverlight applications. Since you're already fluent in .NET, perhaps you could create a Silverlight app to display your videos.
Some links to get you started:
Silverlight and SharePoint 2010: Better together
Getting Started With Silverlight and SharePoint 2010
Silverlight and Sharepoint 2010: Getting Started
SharePoint 2010 Silverlight Client Object Model - How to use