随笔分类 -  小点

摘要:新建的视图更新不过来 》视图创建错误 没有 ID 阅读全文
posted @ 2019-06-24 00:18 敲代码带 阅读(311) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-05-27 09:55 敲代码带 阅读(638) 评论(0) 推荐(0)
摘要:1.<asp:DropDownList 2.Winform :dataGridView 阅读全文
posted @ 2019-01-03 16:02 敲代码带 阅读(1294) 评论(0) 推荐(0)
摘要:设置一个全局变量 阅读全文
posted @ 2018-05-16 13:36 敲代码带 阅读(322) 评论(0) 推荐(0)
摘要:1.转化字符串 string partnerid = TempData["partnerid"] + ""; 阅读全文
posted @ 2018-05-15 21:52 敲代码带 阅读(153) 评论(0) 推荐(0)
摘要:var CheckData = function () { var accountname = $("#AccountName").val(); var accounttype = $("#AccountType").val(); var mobile = $("#ContactPersonMobile").val(); var ... 阅读全文
posted @ 2018-05-15 13:26 敲代码带 阅读(288) 评论(0) 推荐(0)
摘要:@Ajax.ActionLink(@shared.Delete, "DeleteServicetag", new { id = item.ID }, new AjaxOptions { Confirm = "确认要删除此Servicetag ?", HttpMethod = "Post", ... 阅读全文
posted @ 2018-05-15 09:44 敲代码带 阅读(323) 评论(0) 推荐(0)
摘要:1.客户->审批拒绝->编辑->变为待编辑状态(拒绝原因=“”清空) 2.显示列表的判断条件(角色判断),在导出数据判断中再重新判断 3.改了代码界面,用户手册也要跟着修改 阅读全文
posted @ 2018-05-14 21:44 敲代码带 阅读(146) 评论(0) 推荐(0)
摘要:for (int t = 0; t < serviceTag.Length; t++)//2 12 12 { for (int j = t+1; j < serviceTag.Length; j++)//2 12 12 { if (serviceTag[t] == ... 阅读全文
posted @ 2018-05-14 21:37 敲代码带 阅读(368) 评论(0) 推荐(0)
摘要:1.视图修改 USE [D] GO Alter View [dbo].[vUsers_Address] as SELECT a.*,b.City,b.Township, b.Street,c.RoleName from CCD_Users as aLeft join TW_Address as b 阅读全文
posted @ 2018-05-14 21:34 敲代码带 阅读(251) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; namespace Cons 阅读全文
posted @ 2018-03-28 17:02 敲代码带 阅读(249) 评论(0) 推荐(0)
摘要:“+代码+” 阅读全文
posted @ 2018-02-07 11:05 敲代码带 阅读(161) 评论(0) 推荐(0)
摘要:1 private string GetAccountNo() 2 { 3 try 4 { 5 string shortName="B"; 6 string latestAccountNO = shortName + "000001"; ... 阅读全文
posted @ 2018-01-09 16:41 敲代码带 阅读(1657) 评论(3) 推荐(0)
摘要:int sNum = 0; string s = "100"; int Result = 0; int.TryParse(s, out Result) //转换失败Result为0 转换成功Result为结果值 if(Result!=0) { sNum=Result; } 阅读全文
posted @ 2018-01-09 16:20 敲代码带 阅读(592) 评论(1) 推荐(0)