调用代码

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MvcApplication1.Models.IndexModel>" %>
<%@ Import Namespace="MvcApplication1.Widia.DataControl.GridView" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
	Index
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

    <form id="form1" runat="server">

    <h2>我自定的GridView</h2>
    <%=Html.GridView(Model.listSQL,Model.currpage)%>
    </form>


</asp:Content>

 

执行后效果图

1.使用静态方法创建HTML辅助类

using System;

namespace MvcApplication1.Helpers

{

           public class LabelHelper

           {

                public static string Label(string target, string text)

                {

                     return String.Format("<label for='{0}'>{1}</label>", target, text);

                }

           }

}

 

2.使用扩展方法创建HTML辅助类

using System;

using System.Web.Mvc;

 

namespace MvcApplication1.Helpers

{

      public static class LabelExtensions

      {

           public static string Label(this HtmlHelper helper, string target, string text)

           {

                return String.Format("<label for='{0}'>{1}</label>", target, text);

           }

      }

s}

posted on 2010-04-16 17:14  widia  阅读(533)  评论(0编辑  收藏  举报