How to host ASP.NET MVC4 application on microsoft IIS server [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 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.

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.

ASP.NET publish issues [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm guessing I'm doing this totally wrong but I couldn't find how else to do it.
I'm trying to publish my website to a "Test server" online (hosted by One), but everything I try I end up with raw ASPX text on my screen whenever I go to the default webpage.
Using it with the ISS thingy was no problem.
Thanks in advance.
Make sure:
the hosting provider supports ASP.NET hosting
the .NET Framework is installed
ASP.NET is registered in the web server

Website For Web Service (Beginner Help) [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 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.

Edit a MSSQL table from web [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 trying find out what is the best solution for making a single table in a MSSQL database available for insert and update for a few users from a html interface.
I've got IIS server, reporting services, C#, visual studio and most microsoft tools of the 2008 version.
In php/mysql I would deploy a framework for editing tables. Whats the easiest MS solution?
Thank you
If you just want to perform edit, delete operation on front end, you can use grid view tool from asp.net.
you can find details at the following link,
http://www.aspdotnet-suresh.com/2011/02/how-to-inserteditupdate-and-delete-data.html
Hope this will help you.

Suitable web framework in ASP.NET for real time web application? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I have a Windows real time application. Now I want to convert this application into a web application in ASP.NET. I want suggestions about the web framework that I can use. Which is suitable? I have ideas of ASP web form , MVC. And also open source JavaScript library. Thanks.
SignalR supports real time communication between client and sever
http://www.asp.net/signalr

Categories