04 2019 档案

摘要:///*******去除重复的数据//////******* var list = db.View_threeShopList.Where(x => x.OInt1 == BusinessID); List<View_threeShopList> Li = new List<View_threeSh 阅读全文
posted @ 2019-04-24 16:19 自不量力 阅读(121) 评论(0) 推荐(0)
摘要:***********************//前台/************************ <asp:Button ID="Button2" runat="server" Text="省市图片抓取" OnClick="Button2_Click" /> **************** 阅读全文
posted @ 2019-04-22 15:15 自不量力 阅读(519) 评论(0) 推荐(0)
摘要:************** 反射和泛型写的增删改查****************************** using System;using System.Collections.Generic;using System.Linq;using System.Text;using Syste 阅读全文
posted @ 2019-04-18 08:04 自不量力 阅读(165) 评论(0) 推荐(0)
摘要:***********后台代码********* using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using ConsoleA 阅读全文
posted @ 2019-04-17 09:33 自不量力 阅读(149) 评论(0) 推荐(0)
摘要:官网参考:http://json.codeplex.com/ 在程序包管理控制台,键入NuGet命令 install-package Newtonsoft.Json 安装Newtonsoft.Json PM> install-package Newtonsoft.Json正在安装“Newtonsof 阅读全文
posted @ 2019-04-15 09:38 自不量力 阅读(1080) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Reflection;using System.Da 阅读全文
posted @ 2019-04-15 09:30 自不量力 阅读(181) 评论(0) 推荐(0)
摘要:*********前台显示框**************** <input type="text" id="WIDout_trade_no" name="WIDout_trade_no" /> **************js代码***************** <script language= 阅读全文
posted @ 2019-04-12 09:08 自不量力 阅读(2970) 评论(1) 推荐(0)
摘要:MVC 向页面传值方式总结 总结发现ASP.NET MVC中Controller向View传值的方式共有6种,分别是: ViewBag ViewData TempData 向普通View页面传一个Model对象 向强类型页面传传一个Model对象 用一个ViewModel对象解决所有问题 首先我们需 阅读全文
posted @ 2019-04-10 19:40 自不量力 阅读(738) 评论(0) 推荐(1)
摘要:ViewData传值. HomeController.cs Co de: public ActionResult Index() { ViewData["Title" ] = "Home Page" ; ViewData["Message" ] = "Welcome to ASP.NET MVC!" 阅读全文
posted @ 2019-04-10 19:34 自不量力 阅读(228) 评论(0) 推荐(0)
摘要:********************************C#后台********************* using System;using System.Collections.Generic;using System.Linq;using System.Web;using Syste 阅读全文
posted @ 2019-04-10 14:59 自不量力 阅读(156) 评论(0) 推荐(0)