资源简介

ASP.NET+Bootstrap 实现短信验证的功能,有详细注释,推荐大家试试

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace 短信demo
{
    // 注意: 有关启用 IIS6 或 IIS7 经典模式的说明,
    // 请访问 http://go.microsoft.com/?linkId=9394801

    public class MvcApplication : System.Web.HttpApplication
    {
        public static void RegisterGlobalFilters(GlobalFilterCollection filters)
        {
            filters.Add(new HandleErrorAttribute());
        }

        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute(“{resource}.axd/{*pathInfo}“);

            routes.MapRoute(
                “Default“ // 路由名称
                “{controller}/{action}/{id}“ // 带有参数的 URL
                new { controller = “Home“ action = “Index“ id = UrlParameter.Optional } // 参数默认值
            );

        }

        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();

            // 默认情况下对 Entity framework 使用 LocalDB
            Database.DefaultConnectionFactory = new SqlConnectionFactory(@“Data Source=(localdb)\v11.0; Integrated Security=True; MultipleActiveResultSets=True“);

            RegisterGlobalFilters(GlobalFilters.Filters);
            RegisterRoutes(RouteTable.Routes);
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-08-08 08:42  Bootstrap+MVC+短信验证\
     文件         920  2015-08-08 08:44  Bootstrap+MVC+短信验证\Bootstrap+MVC+短信验证.sln
     文件       47616  2015-08-11 18:43  Bootstrap+MVC+短信验证\Bootstrap+MVC+短信验证.v11.suo
     目录           0  2015-08-08 09:26  Bootstrap+MVC+短信验证\packages\
     目录           0  2015-08-08 09:26  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\
     目录           0  2015-08-08 09:26  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\
     目录           0  2015-08-08 09:26  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\
     文件       21740  2014-10-29 12:11  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\bootstrap-theme.css
     文件       41933  2014-10-29 11:55  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\bootstrap-theme.css.map
     文件       19199  2014-10-29 12:11  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\bootstrap-theme.min.css
     文件      137590  2014-10-29 12:11  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\bootstrap.css
     文件      366866  2014-10-29 11:55  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\bootstrap.css.map
     文件      132616  2015-02-16 14:35  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\css\bootstrap.min.css
     目录           0  2015-08-08 09:26  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\fonts\
     文件       20335  2014-10-27 15:59  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\fonts\glyphicons-halflings-regular.eot
     文件       62926  2014-10-27 15:59  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\fonts\glyphicons-halflings-regular.svg
     文件       41280  2014-10-27 15:59  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\fonts\glyphicons-halflings-regular.ttf
     文件       23320  2014-10-27 15:59  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\fonts\glyphicons-halflings-regular.woff
     目录           0  2015-08-08 09:26  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\
     文件        2963  2015-01-18 20:29  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\bootstrap-popover.js
     文件       65813  2014-10-29 12:11  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\bootstrap.js
     文件       34653  2014-10-29 12:11  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\bootstrap.min.js
     文件       25748  2015-01-18 20:47  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\bootstrap.min2.js
     文件      147267  2015-01-18 20:46  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\bootstrap2.css
     文件        1622  2015-01-18 20:31  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\javascript.html
     文件       95931  2015-01-10 14:51  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\jquery-1.11.2.min.js
     文件       94843  2015-01-18 20:47  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\jquery-1.7.2.min.js
     文件         484  2014-10-29 11:55  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\npm.js
     文件         846  2015-01-18 20:32  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\prettify.css
     文件       13660  2015-01-18 20:32  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\js\prettify.js
     文件      114011  2015-01-17 17:18  Bootstrap+MVC+短信验证\packages\bootstrap-3.3.0-dist\dist\原装bootstrap.min.css
............此处省略375个文件信息

评论

共有 条评论