Note that there are some explanatory texts on larger screens.

plurals
  1. POHow can I implement a site with ASP.NET MVC without using Visual Studio?
    primarykey
    data
    text
    <p>I have seen <a href="https://stackoverflow.com/questions/2154/asp-net-mvc-without-visual-studio">ASP.NET MVC Without Visual Studio</a>, which asks, <em>Is it possible to produce a website based on ASP.NET MVC, without using Visual Studio?</em></p> <p>And the accepted answer is, <em>yes</em>. </p> <p>Ok, next question: <strong>how?</strong></p> <hr> <p>Here's an analogy. If I want to create an ASP.NET Webforms page, I load up <a href="https://stackoverflow.com/questions/tagged/emacs">my favorite text editor</a>, create a file named Something.aspx. Then I insert into that file, some boilerplate: </p> <pre><code>&lt;%@ Page Language="C#" Debug="true" Trace="false" Src="Sourcefile.cs" Inherits="My.Namespace.ContentsPage" %&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;title&gt;Title goes here &lt;/title&gt; &lt;link rel="stylesheet" type="text/css" href="css/style.css"&gt;&lt;/link&gt; &lt;style type="text/css"&gt; #elementid { font-size: 9pt; color: Navy; ... more css ... } &lt;/style&gt; &lt;script type="text/javascript" language='javascript'&gt; // insert javascript here. &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;asp:Literal Id='Holder' runat='server'/&gt; &lt;br/&gt; &lt;div id='msgs'&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Then I also create the Sourcefile.cs file: </p> <pre><code>namespace My.Namespace { using System; using System.Web; using System.Xml; // etc... public class ContentsPage : System.Web.UI.Page { protected System.Web.UI.WebControls.Literal Holder; void Page_Load(Object sender, EventArgs e) { // page load logic here } } } </code></pre> <p>And <em>that</em> is a working ASPNET page, created in a text editor. Drop it into an IIS virtual directory, and it's working. </p> <p>What do I have to do, to make a basic, <strong>hello, World</strong> ASPNET MVC app, in a text editor? (<em>without Visual Studio</em>)</p> <p>Suppose I want a basic MVC app with a controller, one view, and a simple model. What files would I need to create, and what would go into them? </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload