Infosüsteemide arendamine 2 lühikonspekt
MVC
ASP.Net Web Forms
o
o
, ASP.Net Web Forms
, MVC
System.Web.UI.Page
MVC, ASP.Net Web Forms:
WebForm1 obj = new WebForm1();
obj.Button_Click();
ASP.Net WebForms
. ,
ASP.Net
HTML
o View HTML
o (CS) (
.Net)
:
1:
o 2: (, )
(DAL),
o 3:
(View)
ASP.Net Web Forms,
HTML, MVC, «string»,
, HTML
ToString()
«NameSpace.ClassName»
namespace WebApplication1.Controllers
{
public class Customer
{
public string CustomerName { get; set; }
public string Address { get; set; }
}
public class TestController : Controller
{
public Customer GetCustomer()
{
Customer c = new Customer();
c.CustomerName = "Customer 1";
c.Address = "Address1";
...