摘要:
原文 https://www.cnblogs.com/essenroc/p/8630730.html // 随着版本更迭,新版本可能无法完全适用,请参考仓库内的示例。 这篇文章将介绍ASP.NET Core中使用 开源项目 Payment(https://github.com/Essensoft/P 阅读全文
摘要:
1 Entities data=new Entities(); var list = from p in data.Record where p.CreateTime >= d && p.CreateTime < DateTime.Today select new { ID = p.ID, Name 阅读全文
摘要:
tatic void Main(string[] args) { //先反序列化看看 string json = "{\"name\": true,\"age\": \"success\",\"hobby\": [{\"obj1\": \"6\",\"obj2\": \"7\",\"obj3\": 阅读全文
摘要:
public static string StortJson(string json) { var dic = JsonConvert.DeserializeObject<SortedDictionary<string, object>>(json); SortedDictionary<string 阅读全文
摘要:
前台页面提交文件 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>文件操作</title> </head> <body> <form id="upFileForm"> 阅读全文
摘要:
有几个0 string t = "0001203"; int tLen = t.Length - t.TrimStart('0').Length; charAt方法 using System; namespace Company{ public class TestMain{ static void 阅读全文
摘要:
/// <summary> /// 生成唯一数 /// </summary> public class UniqueData { private static object obj = new object(); private static int GuidInt { get { return G 阅读全文
摘要:
转自:http://www.cnblogs.com/weixing/p/5674078.html References required: HttpContextWrapper - System.Web.dll RemoteEndpointMessageProperty - System.Servi 阅读全文
摘要:
Select 'Insert into Auth_Key Values('''+convert(nvarchar(50),NEWID())+''','''+AuthKey+''',''' +ModuleName+''', '''+MenuName+''','''+FunctionName+''',' 阅读全文
摘要:
1:配置 接口注释。 (1)配置生成xml的路径。我们在项目上面点右键→属性→生成标签页配置xml的路径。 (2)在xml的读取路径:在Areas\HelpPage\App_Start\HelpPageConfig.cs里面配置xml的读取路径。 config.SetDocumentationPro 阅读全文
摘要:
一开始的解决办法就是把bin下的文件都删除了,但是roslyn文件夹下的部分文件一直被占用,必须进程中把vbcscompiler进程干掉,才能删除,再重新编译,就没问题了。 阅读全文
摘要:
打开vs2017开发者命令提示符 切换至安装下的指定目录 执行下面的命令就可以了 需要注意的是一定要用vs2017的开发人员命令提示符 别用cmd gacutil -i Microsoft.VisualStudio.Shell.Interop.11.0.dll 阅读全文