实验四购物车

所属分类:.net编程
开发工具:ASP
文件大小:44497KB
下载次数:0
上传日期:2021-03-01 11:50:45
上 传 者wyl的男朋友
说明:  可以实现购物车的添加,跳转页面。可以在购物车的清单页面继续添加
(You can add shopping cart and jump to the page. You can continue to add in the list page of the shopping cart.)

文件列表:
实验四购物车 (0, 2020-12-10)
实验四购物车\.vs (0, 2020-12-10)
实验四购物车\.vs\实验四购物车 (0, 2020-12-10)
实验四购物车\.vs\实验四购物车\config (0, 2020-12-10)
实验四购物车\.vs\实验四购物车\config\applicationhost.config (84161, 2020-12-10)
实验四购物车\.vs\实验四购物车\v16 (0, 2020-12-10)
实验四购物车\.vs\实验四购物车\v16\.suo (34304, 2020-12-10)
实验四购物车\packages (0, 2020-12-10)
实验四购物车\packages\Antlr.3.5.0.2 (0, 2020-12-10)
实验四购物车\packages\Antlr.3.5.0.2\.signature.p7s (9472, 2018-10-14)
实验四购物车\packages\Antlr.3.5.0.2\Antlr.3.5.0.2.nupkg (156224, 2020-12-10)
实验四购物车\packages\Antlr.3.5.0.2\lib (0, 2020-12-10)
实验四购物车\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll (103424, 2013-09-10)
实验四购物车\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.pdb (435712, 2013-09-10)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1 (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\.signature.p7s (9467, 2019-03-15)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\AspNet.ScriptManager.bootstrap.3.4.1.nupkg (16695, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\lib (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\lib\net40 (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\lib\net40\AspNet.ScriptManager.bootstrap.dll (5632, 2019-03-15)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\lib\net45 (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.bootstrap.3.4.1\lib\net45\AspNet.ScriptManager.bootstrap.dll (5632, 2019-03-15)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1 (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\.signature.p7s (9467, 2019-05-20)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\AspNet.ScriptManager.jQuery.3.4.1.nupkg (16662, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\lib (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\lib\net40 (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\lib\net40\AspNet.ScriptManager.jQuery.dll (5632, 2019-05-16)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\lib\net45 (0, 2020-12-10)
实验四购物车\packages\AspNet.ScriptManager.jQuery.3.4.1\lib\net45\AspNet.ScriptManager.jQuery.dll (5632, 2019-05-16)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2 (0, 2020-12-10)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\.signature.p7s (9473, 2018-10-07)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content (0, 2020-12-10)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\App_Start (0, 2020-12-10)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\App_Start\RouteConfig.cs.pp (482, 2013-07-30)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\Site.Mobile.Master.cs.pp (346, 2013-07-30)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\Site.Mobile.Master.designer.cs.pp (1825, 2013-07-30)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\Site.Mobile.Master.pp (881, 2013-07-30)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\ViewSwitcher.ascx.cs.pp (1634, 2013-07-30)
实验四购物车\packages\Microsoft.AspNet.FriendlyUrls.1.0.2\Content\ViewSwitcher.ascx.designer.cs.pp (463, 2013-07-30)
... ...

========================================================== ASP.NET Friendly URLs v1.0.1 ========================================================== ---------------------------------------------------------- Overview ---------------------------------------------------------- ASP.NET Friendly URLs provides a simple way to remove the need for file extensions on URLs for registered file handler types, e.g. .aspx. For more information see http://go.microsoft.com/fwlink/?LinkID=2***514&clcid=0x409 ---------------------------------------------------------- Setup ---------------------------------------------------------- If your app didn't have a RouteConfig class before installing ASP.NET Friendly URLs package: ---------------------------------------------------------- The package includes a RouteConfig class that contains the call required to enable Friendly URLs. This call must be made from the Application_Start handler in your app's Global.asax file. Add the following to your Global.asax.cs file: using System.Web.Routing; ... protected void Application_Start(object sender, EventArgs e) { RouteConfig.RegisterRoutes(RouteTable.Routes); } If your app had a RouteConfig class before installing ASP.NET Friendly URLs package: ---------------------------------------------------------- You'll need to update your RouteConfig class to enable Friendly URLs. Call EnableFriendlyUrls() in your RegisterRoutes method *before* any existing route registrations: public static void RegisterRoutes(RouteCollection routes) { routes.EnableFriendlyUrls(); // Put any additional route registrations here. }

近期下载者

相关文件


收藏者