Website For Web Service (Beginner Help) [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
If I have an API of a WebService and i were asked to make a website for this WebService how can I do it using c#(Visual Studio) ?
Open a project like : visual c# -> ASP.NET Web Application? like programming a standard website ? or do I need to open a different type of project or configure other things ?
If any one got a nice tutorial or something similar i appreciate it...a lot!
A journey of a thousand miles begins with a single step.

Here's a great tutorial that will teach you how to build an MVC website that uses a WebAPI:
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api

Did you heard about Webmatrix? http://www.microsoft.com/web/webmatrix/. Its a great tool to create websites within minutes. And they have also a lot of tutorials for beginners: http://pluralsight.com/training/courses/tableofcontents?courseName=webmatrix-introduction.

Related

How do i put a Windows Form link to download my form onto a HTML webpage [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I was just wondering how I would put a download link of my windows form onto a webpage(I made in Visual Studio). I dont understand how I cant display it in a webpage in the first place, can someone explain?
Thanks
Using windows forms inside the bowser is not possible, the browser will not understand it, few years ago Silverlight was a promising solution which was not html based but can use some of your desktop skills, but it is not there anymore.
Currently there is a promising project https://blazor.net/ which is:
Build a Web UI with C# Blazor is an experimental .NET web framework
using C# and HTML that runs in the browser.

How to integrate Wordpress Website into ASP.Net? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am a .Net Developer. I don't know anything about WordPress.
I got a website project. The some parts of project are created in WordPress.
I have to add some new functionality in existing project.
My question is that can I integrate existing WordPress website into ASP.Net(VS2010)?
I want to run both WordPress website and My Asp.Net Website together.
If it is possible then How can I do this?
Peachpie has been recently released. WordPress can be compiled to and executed on .NET (asp.net and .net core) with Peachpie. You can also write WordPress plugins in c#, so it can be a good choice for your problem.
The best way to go with integrating Wordpress and ASP.NET is by using one of the supported XML-RPC protocols. You can see more about it here: http://codex.wordpress.org/XML-RPC_Support
or
use Orchard http://www.orchardproject.net/ is the must close System to wordpress at ASP.net and it's actually very good one! it's the best open source CMS in ASP.net the architecture of the system is very like wordpress.

How to host ASP.NET MVC4 application on microsoft IIS server [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
i am able to host the asp application using visual studio but does anyone know how to host the application without using visual studio.
Many thanks
Microsoft has you covered on this one: http://www.asp.net/mvc/tutorials/deployment/visual-studio-web-deployment/deploying-to-iis
You may not need to follow all the steps such as the SQL one, but the tutorial should get you where you want to go.
You need to install MVC on the server.
Then you can simply create a website on IIS and deploy your website on it.

Starting Web APIs [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am asked to create a web api for a desktop application that is already developed.
I don t have any background in web development in general and I am somehow stuck in doing it in a very short amount of time
I found several books and guides out there but non of them is to the point and require alot of time ... which I don t have at all .
Can someone guide me to a good how to start tutorial page ? I have basic C# .NET experience and using Visual studio 2012
Try this:
Your First ASP.NET Web API

Remote desktop via web browser using C#/ASP.NET [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm planning to create a VNC that can be view in browser. The inspiration for this code is Thinvnc but i would like to implement it using C# .NET . Is it possible to create such an application? what are the components that are going to use? thank you in advance ^_^
It is possible, at least for VNC. Well, I'd say it would be better to go with the java on this one. You could take one of the open source projects and extend it's functionality so it is served from the web page.
if you really want to go with C# you'll need to use silverlight.
One thing is having a page and the other component that knows how to handle vnc. Using asp/html/... won't get you far - you need to use java/silverligh - C#/flash...
Best regards,
P.

Categories