摘要:
上部分是脚本方式输出Html,下部分是控件方式输出Html<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ScriptOrNot.aspx.cs" Inherits="MvcApp2.Views.Home.ScriptOrNot" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR 阅读全文
摘要:
弱类型是通过dictionary作为ViewData,它使用的是KeyValue来使用,我们一般在codeBehind来编写辅助方法来做。对于强类型的来说,我们就需要编写一个强类型的类型或者用框架中已有的类型。这样在页面中可以得到更加好的IDE的支持,因为它可以有Intelligent的提示。它可以做到View和CodeBehind的协作。View和Controller之间的协作就更强了,因为我们不必指定每一个数值的类型。 阅读全文
摘要:
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="MvcApp2.Views.Home.Index" %><asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" 阅读全文