摘要:
最近升级一个旧的系统的文档转换,老系统采用.NET5.0开发,Aspose.Slides的版本是18.9,需要升级到25.4。直接替换到dll后,出现了如下两个问题。 问题一:System.ArgumentException:“'IBM437' is not a supported encoding 阅读全文
摘要:
利用asp.net core 3.1 开发了一个webapi,部署在IIS时,出现如下错误: Access to fetch at 'XXXXX' from origin 'http://xxxxxxx:xxxx' has been blocked by CORS policy: Response 阅读全文
摘要:
首先通过如下SQL语句找到执行删除的LAST_ACTIVE_TIME。即找到具体的删除时间。 select SQL_TEXT,LAST_ACTIVE_TIME from v$sqlarea where LAST_ACTIVE_TIME >to_date('删除数据的大约时间','yyyymmdd h 阅读全文
摘要:
1.修改密码过期问题。ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; 2.修改最大连接数问题。 alter system set processes=1000 scope=spfile; alter system set sessi 阅读全文
摘要:
错误如下:ArcGIS version not specified. You must call RuntimeManager.Bind before creating any ArcGIS components.解决办法:打开Program.cs把ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);放到Application.SetCompatibleTextRenderingDefault(false);和Application.Run(new Form1());之间。 阅读全文