08 2021 档案
VS 调试 无法进入到应用的本地的类库
摘要:web.config中配置: <system.web> <compilation debug="true" targetFramework="4.6.1"> <assemblies> <add assembly="Training.API,Version=1.0.0.0" /> </assembli 阅读全文
posted @ 2021-08-20 10:36 FL0528
C#如何求出两个字符串最大的公共部分
摘要:/// <summary>获取两个字符串的最大公共部分</summary> /// <param name="str1">字符串1</param> /// <param name="str2">字符串2</param> /// <returns>两个字符串的最大公共部分集合,可能有多个</retur 阅读全文
posted @ 2021-08-06 13:51 FL0528
js弹出一个子窗口
摘要:var newwin; if (newwin != undefined) { newwin.close(); } newwin = window.open( url, "onlywin", "toolbar=no, location=no, directories=no, status=no, me 阅读全文
posted @ 2021-08-04 14:36 FL0528