第一步在页面中写OnError方法:protected override void
OnError(EventArgs e){Exception ex =
Server.GetLastError();//在服务器获取最新产生的错误Response.Write("Error"+ex.Message);...
分类:
Web程序 时间:
2014-05-14 03:37:17
阅读次数:
303
安装时出现“command line option syntax error,Type command/?for help可能是因为你的安装源文件所在的路径中有中文,所以你可将安装文件放在一个没有中文的路径。...
分类:
其他好文 时间:
2014-05-14 01:08:29
阅读次数:
231
create table mytest(name varchar(20),password varchar(30));
create or replace procedure sp_pro2 is
begin
insert into mytest values('fc','123');
end;
查看错误信息
show error
如何调用...
分类:
数据库 时间:
2014-05-13 07:41:24
阅读次数:
464
控制系统的性能可以用稳、准、快三个字
来描述。稳是指系统的稳定性(stability),一个系统要能正常工作,首先必须是稳定的,从阶跃响应上看应该是收敛的;准是指控制系统的准确性、控制精度,通常用静态误差来(Steady-state
error)描述,它表示系统输出稳态值与期望值之差;快是指控制.....
分类:
其他好文 时间:
2014-05-12 22:32:02
阅读次数:
463
fatal error C1010:
在查找预编译头时遇到意外的文件结尾。是否忘记了向源中添加“#include
"stdafx.h"”?vs开发时经常遇到没加stdafx。h头文件,解决办法就是吧预编译头去掉!
分类:
其他好文 时间:
2014-05-12 20:31:16
阅读次数:
217
实例1:读写字符文件,每次读取一个字符。#include<stdio.h>#include<stdlib.h>intmain(){FILE*fpin;FILE*fpout;charc;fpout=fopen("c:\\dest.txt","wt");if((fpin=fopen("c:\\test.txt","rt"))!=NULL){c=fgetc(fpin);while(c!=EOF){fputc(c,fpout);c=fgetc(fpin);..
分类:
编程语言 时间:
2014-05-12 03:57:13
阅读次数:
238
实例2:读取字符文件,每次读入一个缓存里面。#include<stdio.h>#include<stdlib.h>#defineMAXLEN1024intmain(){FILE*fin;FILE*fout=fopen("c:\\dest.txt","wt");charbuf[MAXLEN];if((fin=fopen("c:\\test.txt","rt"))!=NULL){char*c=fgets(buf,MAXLEN,fin);while(..
分类:
编程语言 时间:
2014-05-12 02:57:48
阅读次数:
251
超时分类
超时根据作用域可做如下层级划分:
Transaction Timeout > Statement Timeout > JDBC Driver Socket Timeout
Transaction Timeout指一组SQL操作执行时应在设定的时间内完成(提交或回滚),否则将引发超时。它的值应大于 N(语句数) * Statement Timeout
Statement Tim...
分类:
数据库 时间:
2014-05-11 22:02:18
阅读次数:
413
有一块新买的1T的移动硬盘。买来格式化成ntfs后简单的分了几次区。 4G的硬盘PE,100G的快速交互,剩余800多G分成了两个对等的存储盘。
插到电脑USB接口后, 桌面自动弹出了4个盘符。 打开前2个都没有什么问题, 写读都正常。后面两个一双击就会报错:
Error mounting: mount exited with exit code 1: helper failed wi...
分类:
移动开发 时间:
2014-05-11 20:51:27
阅读次数:
664
思路:简单的匹配操作,利用栈。
Code:
#include
#include
char stack[135];
int main()
{
int n;
scanf("%d",&n);
getchar();
while(n-->0)
{
memset(stack,0,sizeof(stack));
char c;
int top=0;
int flag=1;...
分类:
其他好文 时间:
2014-05-11 20:19:34
阅读次数:
376