How To Integrate An External Web Control Into A SharePoint Application's Page
Feb 15, 2010How to integrate an external web ASP.NET control into a SharePoint application's page?
View 2 RepliesHow to integrate an external web ASP.NET control into a SharePoint application's page?
View 2 RepliesBeing new to integrating sharepoint documents into web applications I am struggling with the following task, so anyI have a page in my web application that needs to display a document from sharepoint.I use the appropiate sharepoint web service to get a list of all the documents in the sharepoint list, I then pick out the one I would like to retrieve and get the path to the document so i would end up with something like:
Company%20Hire/Hire%20Site%20Price%20Lists/0.pdf
Within our network I can do following:
iframePdf.Attributes[
"src"] = ConfigurationManager.AppSettings["SharepointUrl"] + _filePath;
This would display the document in iframe... problem I have is coming from outside the network the sharepoint site can't be accessed (due to firewalls etc). We do have a vpn back to our network on the external server our web application sits on. If i was to use the document url in a browser on the server I am prompted for credentials and then get to view the document.Is there a way for the web application to use the vpn, use credentials i give (e.g through impersonation) to access the document and display it to exernal clients?
how to integrate my asp.net application to sharepoint 2010?
View 3 RepliesWe have to integrate an SSRS report in sharepoint.When we will click on the report it should open in a custom aspx page and not under Report viewer.
View 1 RepliesI am working on a Custom WebPart, for which I need an application page to render a PDF file.
I am currently using following link [URL]
It works fine in ASP.NET, but gives a blank page in SharePoint.
Here's the code:
(PDF file is in same directory)
Response.ClearContent();
Response.ClearHeaders();
//Set the appropriate ContentType.
Response.ContentType = "Application/pdf";
//Get the physical path to the file.
string FilePath = MapPath("Test.pdf");
//Write the file directly to the HTTP content output stream.
Response.WriteFile(FilePath);
Response.Flush();
Response.End();
I have a default.aspx in a folder _layouts/sandbox on the sharepoint server.
It has the following code:
using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
[Code]....
I want to integrate a ActiveX control into asp.net page, I wonder if Firfox can support ActiveX control or not?
View 1 RepliesIs it possible to inherit a sharepoint master page(as a parent) in another application's master page which will be treated as child (i.e. after integrating that standalone application with the sharepoint application)? I am totally new to Sharepoint..
View 2 RepliesI used to implement this above title by using iframe but now I don't want to use it any more I have some plans in my mind I need to implement them by opening an external page inside our asp.net page without using any iframe I have only simple aspx page with div tag and panel and some other serverside components, I just want to know how I can do it without iframe? I don't want to design new complex control but I am looking for some methods can do that for me.
I have to mention that I need to control area which is loaded by external site as the same as iframe but the difference is that iframe can not handled by ajax even you put iframe inside the update panel your page has refresh and postback while you are changing the src value programmatically (in c# code) so we have to design some others methods what is the solution? I thought I can make request an get some html and show into div but I couldn't to implement it.
is it possible to call or integrate the windows application into asp.net web application? is it yes then tell me how to do it.
View 1 RepliesI've been building an ASP.NET MVC 3 web application for about 11 months now, and I have some content based components that I'd like to separate from the actual HTML views and move to more of a CMS system. This will allow the communications people in my company handle that portion of the content without requiring the web app to be redeployed.I'm not looking for a full CMS system. I have specific places in the web app where I want to be able to include CMS based content, and I'd like to be able to host a blog on the CMS as well.
View 2 RepliesI have a web application written in ASP.Net. When a user clicks a button in my application I want to open a MS Word file. How could I do this?
View 1 RepliesOne of my client wants to track his cars/cabs from his own house... So i thought of getting help from our fellow users of SO... Is it possible to integrate GPS system in an asp.net web application? If so,How to get started... Any webservice that does it for me? Should i use google maps api?
View 2 RepliesI am working on ASP.NET MVC-2 web application. i want to update new changes in the existing running application.
View 1 Repliesi want to implement an asp.net MVC web application where a user enter the required address in the mvc application and then click on submit button where the related address will be displayed using Google maps inside the MVC application.
i have good knowledge of developing MVC web application but i lake the required knowledge to develop such and integration.
I want to add blog into my existing ASP.Net MVS 2 application. dotnetblogeengine.net is an option to a blog into Web Forms application. Can it be added into MVC 2 applocation.
View 3 RepliesI have 4 APIs from StubHub, TicketsNow, TicketNetwork and RazorGator that need to be integrated into my MVC3 event ticketing site. This site has a database that lists the events for which the site owner wishes to sell tickets. Once an event is selected on site, the 4 APIs need to be queried for ticket availability.
Should I add these 4 APIs as web references in the MVC3 application? Or, should I utilize SQL Server Integration Services to load ticket data into the database from each API and then have site users query both event and ticket data from the site, rather than querying for event onsite and then making API call for availability?
My university has a PHP website and I am going to develop a .Net project for the university. My question is:
How to integrate my .Net application and .Net forms with PHP website?
the process of integrating barcode scanner with the asp.net application in brief,where i need to generate barcode images and read the barcode and store im my database.....
I am not getting how to start and how to integrate that barcode scanner with asp.net appliaction
How can I develop a chat application using asp.net or How to integrate any chat api with asp.net application.
View 5 RepliesHow to integrate barcode scanner into an ASP.NET Web application?Any open source library for doing it?
View 3 RepliesI am using asp.net 3.5 with C#.I want to integrate gmail into my site, just like any widget so that, people can login there and can access their gmail account. Actually gmail is blocked in my organisation & I want to access it via proxy that I can integrate in my website.
View 2 RepliesI am in need of making a web application that has the ability to load word documents from sql server(onto the web page), edit them, then save them back to the database. I've read a couple of articles that show that you can integrate MS Word into .NET, so it looks like it is possible. My question is whether or not there are major security holes in doing so. Since I want to be able to save my changes back into the database, I am a little hesitant on what certain people might try to exploit if I do this.
View 3 Repliesi am developed windows based application as well as web based application,but now what i want is after logging into my web application only,the windows application will open and run.first how to create single setup for both application .
View 2 RepliesI need to use google accounts in my ASP.NET application. Did somebody do it?
View 3 Replies