摘要:
public static class DialogCloser { public static readonly DependencyProperty DialogResultProperty = DependencyProperty.RegisterAttached( "DialogResult 阅读全文
摘要:
我定义个 List<Student> stuList = new List<Student>(); 然后绑定 this.combobox1.ItemsSource =stuList; 我更新了一下stuList,然后再次绑定,这里就有异常了。 我想第二次更新了stuList后,让Combobox也更 阅读全文
摘要:
<connectionStrings> <clear /> <add name="Sql" connectionString="User ID=sa;Data Source=1.;Password=123456;Initial Catalog=TestDB;Pooling=true;Max Pool 阅读全文
摘要:
在同步方法中,由于没有await ,直接调用Task.Result()或Task.Wait()时,会导致死锁 如: DoAsync().Wait(); async Task DoAsync() { await Task.Run(() => { }); } 必定会造成死锁,WCF,Webservice 阅读全文
摘要:
在执行delete之前,执行一下下面语句 SET QUOTED_IDENTIFIER ON 不执行的话,会报一下错误: SET 选项的设置不正确: 'QUOTED_IDENTIFIER'。请确保 SET 选项正确无误。 阅读全文
摘要:
报错:HTTP错误404.3-Not Found 由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加MIME映射。 解决步骤如下: 1.控制面板-》打开或关闭windows功能-》Internet信息服务-》万维网服务-》应用程序开发功能。 勾选上“.n 阅读全文
摘要:
在非多态状态下才会调用被new修饰的和父类相同的方法。 如: public class Person1 : ReaderBusiness { public override IReaderDTO ReadMessage(string message) { return new model1() { 阅读全文
摘要:
写了一个存储过程在.NET程序中调用发现catch到一个错误 ORA-06502: PL/SQL: 数字或值错误 : character string buffer too small ORA-06512: 在 "BIS.PRO_FIELDSHOW_INSERT", line 61 ORA-0650 阅读全文
摘要:
2021-02-21 学习参考 https://www.cnblogs.com/selene/p/4480328.html 阅读全文
摘要:
InternalServerError时 HttpWebRequest 的 GetResponse 方法处理策略 3 现象 我们编码实现请求一个页面时,请求的代码类似如下代码:HttpWebRequest req = (HttpWebRequest)WebRequest.Create(strUrl) 阅读全文