edit-task
Home
Up
Delete
Task Name:
Task Description:
MVC vs PAGES
TaskGroup ID:
Start Date:
Start Time:
Duration:
Priority:
Status:
To Do
Completed
In Process
Add Photo:
Owner ID:
Content:
use HTML
Edit Content
<h1 style="text-align: center;">title</h1> <h2>[previously]</h2> <ol> <li>]</li> </ol> <h2>[currently]</h2> <ol> <li>] </li> </ol> <h2>[next]</h2> <ol> <li>]</li> </ol> <p> </p> <p> </p> <p><br />!] mvc learn - compare PAGES - MVC</p> <p>/ REQUEST = <a href="http://mysite.com/">http://mysite.com/</a> <br />\ router routing magic <br />/ web config<br />\ <br />/ app start<br />\ <br />/ page start<br />\ <br />/ layout<br />\ <br />/ PAGE @{<br />| your server side code <br />| server side POST <br />\ }<br />/ PAGE<br />| VIEW template <br />\</p> <p>- database is the model <br />- object layer to interact with the database</p> <p> </p> <hr /> <p> </p> <p>/ REQUEST = <a href="http://mysite.com/">http://mysite.com/</a> <br />\ router routing<br />/ web config<br />\ <br />/ app start<br />\</p> <p>/ page start<br />\ <br />/ layout<br />\</p> <p>/ CS CONTROLLER<br />\ recieves the request from routing, parses the data(args) passed into, builds</p> <p>/ CS MODEL gets the data from the db, saves the data to the db, returns data to the controller</p> <p>\ <br />/ VIEW(model) @{<br />| template - model is the data that the view will display, model is built by controller and passed into view <br />\ }</p> <p> </p>