Server Application Unavailable解决方法 错误信息:Server Application Unavailable The web application you are attempting to access on this web server is currently unavailable. Pleasehit the "Refresh" button in your web browser to re
ASP.NET is not authorized to access the requested resource. error: 80070005. ASP.NET is not authorized to access the requested resource. Quote:Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following e
[Err] 1267 - Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) [Err] 1267 - Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '=' 在查询mysql数据库的时候遇到这个问题,要想查询成功,可以在运行查询语句前,先运行set names 'latin1'.如:set names 'la
mysql创建和删除索引 摘自:longkm的博客 http://longkm.blog.163.com/blog/static/1166626402011040722851/创建和删除索引索引的创建可以在CREATE TABLE语句中进行,也可以单独用CREATE INDEX或ALTER TABLE来给表增加索引。删除索引可以利用ALTER TABLE或DROP INDEX语句来实现。(1)使用ALTER T
System.UnauthorizedAccessException: Access to the path 'D:/web/WebMicaps/TempImages/msc_cntr_0.txt' MSChart控件在第一次访问'D:/web/WebMicaps/TempImages/msc_cntr_0.txt’时会报错 网上找到的办法是修改web.config ,修改或增加下面的项:
C#中抽象类和接口的区别与使用 抽象类是特殊的类,只是不能被实例化;除此以外,具有类的其他特性;重要的是抽象类可以包括抽象方法,这是普通类所不能的。抽象方法只能声明于抽象类中,且不包含任何实现,派生类必须覆盖它们。 一、抽象类: 抽象类是特殊的类,只是不能被实例化;除此以外,具有类的其他特性;重要的是抽象类可以包括抽象方法,这是普通类所不能的。抽象方法只能声明于抽象类中,且不包含任何实现,派生类必须覆盖它们。另外,抽象类可以派生自一个抽象类,可以覆盖基类的抽象方法也可以不覆盖,如果不