在JavaWeb开发中,使用tomcat,与字符编码有关的有浏览器当前使用的编码(用于请求数据的编码),如果是jsp页面且没有手动修改浏览器浏览器编码,则就是page指令的pageEncoding属性所指定的编码tomcat的server.xml中的Connector元素的URIEncoding和u...
分类:
其他好文 时间:
2014-04-30 21:01:54
阅读次数:
507
在做项目时遇到了这个异常,网上一查才知道 JSTL core库的版本问题。
当我们在web.xml中使用: ..... 时 我们在jsp才用方式引入。 而当我们的web.xml是 或 则需要: 在jsp中用方式引入。
若若版本不对应在运行时可能...
分类:
其他好文 时间:
2014-04-30 19:40:13
阅读次数:
443
安装GPM-1.20.7,make
install出错:prog/display-buttons.c:39:57: 致命错误:gpm.h:没有那个文件或目录 #include /* gpm
information */ ...
分类:
其他好文 时间:
2014-04-30 19:17:10
阅读次数:
497
首先,把mysql目录下的include放到项目目录下,然后把libmysql.lib和libmysql.dll放到debug目录下。#include之前一定要加上#include否则会产生编译错误。#include
"stdafx.h"#include #include "include\mysq...
分类:
数据库 时间:
2014-04-30 18:37:44
阅读次数:
413
$sql = "select * from student
";获取全部数据isset()判断$myaql_connect连接数据库$myaql_close结束连接数据库include(""."")连接页面mysql_query()向与指定的连接标识符关联的服务器中的当前活动数据库发送一条查询mys...
分类:
其他好文 时间:
2014-04-30 18:09:17
阅读次数:
396
1、生成dmp的程序#include#pragmacomment(lib,
"dbghelp.lib")//设置异常处理回调函数SetUnhandledExceptionFilter(UnhandledExceptionFilter);//异常处理代码//EXCEPTION_EXECUTE_HAND...
分类:
其他好文 时间:
2014-04-30 17:14:57
阅读次数:
1111
ASP.NET Web Pages framework examples of the
Database helper do not include calls to Close or Dispose because the framework
itself is designed to call ...
分类:
数据库 时间:
2014-04-30 14:08:51
阅读次数:
629
矩阵乘法,用DP做各种wa,后来发现原因了。 1 #include 2 #include 3 4
typedef struct { 5 int map[20][20]; 6 } matrix_st; 7 8 matrix_st res, org; 9 int
n, m;10 11 m...
分类:
其他好文 时间:
2014-04-29 11:26:46
阅读次数:
418
【广搜模板】#include #include #include #include using
namespace std;#define MAXX #define MAXYstruct Node{ int x,y; int step;};int n,m;
//边界int dx[4...
分类:
其他好文 时间:
2014-04-29 11:14:46
阅读次数:
334
js方式的页面跳转1.window.location.href方式
2.window.navigate方式跳转
3.window.loction.replace方式实现页面跳转,注意跟第一种方式的区别有3个jsp页面(1.aspx, 2.aspx,
3.aspx),进系统默认的是1.aspx,当我进...
分类:
Web程序 时间:
2014-04-29 11:11:47
阅读次数:
402