vs2015 dynamicweb3-3 枚举类型

webform1.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="dynamicweb3_3.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    </div>
    </form>
</body>
</html>

webform1.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace dynamicweb3_3
{
    public enum WeekDay1
    { 
        Monday,Tuesday,Wednesday,Thursday,Friday,Staturday,Sunday
    };

    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            WeekDay1 day = new WeekDay1();
            day = WeekDay1.Sunday;
            Label1.Text = "day value:" + day;
        }
    }
}

猜你喜欢

转载自blog.csdn.net/modern358/article/details/115056491