难过翅膀

文章
6
资源
1
加入时间
4年1月23天

IIS发布错误:在.net4.0编译的程序无法在2.0的运行时运行

错误解决方案:在IIS找到你所发布的网站程序,在运行池中找到对应的程序,选择"基本设置",修改对应的运行框架为4.0即可。总之,保持编译的.net运行时和发布的运行时一致即可。转载于:https://www.cnblogs.com/prolovecui/p/5430140.html...

jQuery基础3

jQuery基础3 开发工具与关键技术:Visual Studio2015 与jQuery 作者:北道海棠 撰写时间:2019.05.25联系上期的,今天主要了解的是get()和post()方法,还有同步和异步的区别。get( )和post( )jQuery get() 和 post() 方法都是用于通过 H...

Spring Boot 使用Druid连接池

1、在pom.xml下<dependencies>添加项目依赖: <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <ver...

用JDBC给存储过程传递数组类型的参数

A . 嵌套表 1. 声明数组类型        create or replace type tab_array is table of varchar2(38);暂时不要在包中声明该类型 2. 创建存储过程          -- 该例子存储过程是在包中创建的,包名 arraydemo          procedure testArray(resNumber in tab_array,pr