行易软件

少谈技术,多谈应用

博客园 首页 新随笔 联系 订阅 管理

2022年3月24日 #

该文被密码保护。 阅读全文
posted @ 2022-03-24 19:14 行易软件技术团队 阅读(11) 评论(0) 推荐(0) 编辑

摘要: 核心代码: create proc p_tempT as SELECT Name,[Math] as 'MathRank',[Chinese] 'ChineseRank',[SqlServer] 'SqlServerRank' into #r1 FROM (select Name,CouName,M 阅读全文
posted @ 2022-03-24 11:15 行易软件技术团队 阅读(21) 评论(0) 推荐(0) 编辑

摘要: 1.强制xml输出格式转换成Json: protected void Application_Start() { AreaRegistration.RegisterAllAreas(); GlobalConfiguration.Configure(WebApiConfig.Register); Fi 阅读全文
posted @ 2022-03-24 08:33 行易软件技术团队 阅读(11) 评论(0) 推荐(0) 编辑

摘要: 前端核心代码: @{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Vue Add Test</title> <script sr 阅读全文
posted @ 2022-03-24 08:28 行易软件技术团队 阅读(64) 评论(0) 推荐(0) 编辑

摘要: 后台核心代码: public JObject Get(int a, int b) { var jo = new JObject(); jo.Add("sum", a + b); return jo; } 前台核心代码: @{ Layout = null; } <!DOCTYPE html> <htm 阅读全文
posted @ 2022-03-24 08:23 行易软件技术团队 阅读(18) 评论(0) 推荐(0) 编辑