I am new to Sharepoint. I have an application created in C# Visual Studio 2010(web application).I have to show the contents and the solution inside of SharePoint so that the C# application could be used by its users without the need of Visual Studio having to be installed in each user's desktop.
I have to upload the C# solution to sharepoint portal server and then create a link in documents tab which will open this application. If that's the case,i am not sure how to do that any assistance will be appreciated.
Just open the SharePoint Document library in Windows explorer mode copy your Solution. Please check the below link.
http://techtrainingnotes.blogspot.in/2010/05/sharepoint-2010-windows-explorer-view.html
Be aware that any .NET app can run underneath SharePoint if the directory is excluded as a managed path.
Access to that app is easily done - either a simple redirect there or use the Page Viewer Web Part (an IFrame) to display the app "inside" SharePoint.
Easy - no code required.
Best Regards,
David M. Sterling
Sterling International Consulting Group
Related
I'm working on a Visual Studio 2012 web application, and need to allow colleagues to view the current website by my IP address (while I would access it my localhost). It appears that hosting the site locally through IIS7 and allowing others to access it by my local IP the simplest method. After troubleshooting and experimenting for a day though, I still don't understand the relationship between an IIS7 site/website/application and Visual Studio web application, and the MSDN explanations are really hard to follow.
Basically, I'm trying to understand:
1) How to set up a IIS website and application (should the 'physical path' be the VS solution folder or deployment package .zip folder?, for example)
2) How to most simply deploy the web application (e.g. File System/ Web Deploy/ Web Package, etc.) and
3) The order to do all of this.
I'm running VS as administrator, my port 80 is open, and have IIS7 set to use .NET v4, yet when I publish the selection using File System in VS2012 to my C drive, the resulting site gets a HTTP:500 error, with no source code underneath. (Also, before even publishing, setting the solution to use my Local IIS instead of IIS Express and previewing results in a blank page). If there is a better way to do this please let me know.
Thanks in advance.
If you don't want to learn (or bother) with the details of setting it up, you can use a small utility like 'ngrok' that will allow others to view your website at 'localhost'.
Takes about 5 minutes to learn and get up and running (and its free).
https://ngrok.com/
Even though C# and others are listed as a possible language, all of the samples I have found show how to create a task pane AddIn using HTML5/JavaScript only.
I've already gone through all of these:
How to: Create your first task pane app by using "Napa" Office 365 Development Tools
How to: Create a basic app for SharePoint by using "Napa" Office 365 Development Tools
How to: Create your first mail app for Outlook by using "Napa" Office 365 Development Tools
How to: Create your first content app for Excel by using "Napa" Office 365 Development Tools
and others, and they are all HTML5/JavaScript! Even the MSDN samples are HTML5/JavaScript only!
How can I have an ASP.NET Web Application talk to Office 365 so it can provide a task pane control and edit the selected text?
Finally, I've made it! It is not difficult. Firstly you have to use Visual Studio. When you develop directly from browser, download and open that project in Visual Studio. You can follow this way to make very easy example
Create HTML5/JavaScript application like in the 'How to' (first link)
Add new ASPX page into the Home folder
Open your App xml in the Solution folder
Here you can change Source location to new ASPX web page
Start application
So I'm kinda new to SharePoint Development. I developed a Worfklow on VS2010 an this one worked on the localSharePoint Server. Now When I'm trying to add this Workflow to my extern SharePoint Server it just wont work to assign this workflow to a list.
How i Deploy:
I take the "*.wsp" file from \bin\debug and upload it via the Gallery->Solution. then I acitvate the solution, bute then i cant find this workflow to assign it to a List.
Thank you
Markus
You need to deploy your .wsp.
This link can help you for that;
http://technet.microsoft.com/en-us/library/cc262995(v=office.14).aspx
I have created a web application using Visualstudio 2008 using C# on my computer.
I am using windows server 2003.
I have now published the webapplication and put those contents in the server.. with a field called inetpub\wwwroot.
i have created a root directory for it in the IIS with the name "super".
Now i need to see this in internetexplorer how do i do this...
I am new to this so please help me..
Thanks
Is there a Procedure on how to do all this from the start...
If you have created a .net website or .net web application, you can follow these instructions on Deploying ASP.NET Applications in IIS 6.0. In overview, when you do a publish from visual studio, you're compiling the application down to it's assemblies, you're stripping out the code behind files, and only moving over what is needed to run the site/application. Your webserver should be setup with a virtual directory pointing to the published folder, and it would be a good idea to have a Default.aspx page in the folder since the webserver looks for this page as it's starting point. Usually the default website is the site used inside of IIS for websites (at least when you've only got one). You should be able to right click on a file and browse the file if you have followed all of the setup instructions found in the referenced link.
Good luck, and hope this helps.
Within IIS, you could right click on default.asp and select browse.
I've spent a great long while googling this problem without any luck and I've always found great answers here, so here it goes:
[BACKGROUND]
I have a web application which was developed in C# with Visual Studio 2008. It was a part of a solution with another project which contained a web service. This was not created "IN" IIS (I was using the Cassini ASP.NET Development Server at first, but have encountered numerous issues). I finally got approval to install IIS 5.1 (Government Network - using Windows XP) so I wanted to host my apps there for development.
I moved my projects to another folder created my IIS virtual directories, pointed them at the right location, updated my security settings, ensured that .NET 2.0 was selected and tested the site and web service. They function perfectly in IIS.
[ACTUAL PROBLEM]
I open Visual Studio, click File > Open > Web Site > Local IIS > [Application Name] and it opens up, but my .design files aren't nested under the ASPX / ASCX objects, and when I right click on it and select "View Code" it takes me to the markup instead of the code behind. Once I reach the code behind, I don't have access to any of the members of the design, as though there was a problem with the wire up.
I have tried creating a web site from IIS through Visual Studio, and it works perfectly. I closed it and opened it up again to see if that functionality would persist and it did.
I've encountered this before and have had to re-create a new site through Visual Studio, and manually re-populate it with all of my classes from a "broken" solution. I would love to solve this the correct way.
Please help!
Adam
The best thing I could suggest would be to go through the Project files with a fine toothcomb (as Filburt suggested) and make sure the references are pointing to a virutal directory (or via the inetpub folder, if thats how your IIS settings are configured), rather than a file system directory.
You might also want to check your IIS settings. Is your virutal directory set up to point to a file directory?
Good luck!
All dependencies between markup, .design and code-behind files are laid out in the project file.
You could use a sample project to discover how to correct your existing project.