QPhome# 青浦之家论坛

QQ登录

只需一步,快速开始

2122

积分

13

好友

374

主题
1
发表于 2007-3-21 22:53:29 | 查看: 3565| 回复: 3
VC++工程名称转换+清理程序
简介:
1.VC++工程名称转换程序可以完成工程文件改名动作,并且自动命名由VC++工程向导生成的*.dsp,*.dsw,*.clw,*.rc2,*.rc,*.h,*.cpp,注册文件等,几乎支持所有VC++工程向导生成的工程。生成了一个新的工程目录!

2.VC++清理程序可以清理VC文件下的一些编译留下的无用文件,删除不会影响整个工程的运行,因此删除可以节约空间!

VC工程转换+清理软件.rar

10.63 KB, 下载次数: 7

分享到: QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
转发到微博

收藏回复 只看该作者 道具 举报

2
发表于 2007-4-24 10:13:59
7.错误检测
数据更新后控件调用的事件GridView.RowUpdated,DetailsView.ItemUpdated,SqlDataSource.Updated, etc.
处理“status”的事件,无论数据库是否异常允许数据库异常被处理或者再次抛弃,显示多少数据库行被修改
处理更新错误
<asp:SqlDataSourceID="Employees" RunAt="server"
UpdateCommand="" OnUpdated="OnUpdateComplete">

</asp:SqlDataSource>

void OnUpdateComplete (Object source, SqlDataSourceStatusEventsArgse)
{
if (e.Exception!= null) {
// Exception thrown. Set e.ExceptionHandledto true to prevent
// the SqlDataSourcefrom throwing an exception, or leave it set
// to false to allow SqlDataSourceto rethrowthe exception
}
else if (e.AffectedRows== 0) {
// No exception was thrown, but no records were updated,either.
// Might want to let the user know that the update failed
}
}

回复 只看该作者 道具 举报

3
发表于 2007-8-5 14:26:20
收下了。。。。谢谢

回复 只看该作者 道具 举报

4
发表于 2007-8-5 14:26:54
<asp:SqlDataSourceID="Employees" RunAt="server"
UpdateCommand="" OnUpdated="OnUpdateComplete">

</asp:SqlDataSource>

void OnUpdateComplete (Object source, SqlDataSourceStatusEventsArgse)
{
if (e.Exception!= null) {
// Exception thrown. Set e.ExceptionHandledto true to prevent
// the SqlDataSourcefrom throwing an exception, or leave it set
// to false to allow SqlDataSourceto rethrowthe exception
}
else if (e.AffectedRows== 0) {
// No exception was thrown, but no records were updated,either.
// Might want to let the user know that the update failed
}
}

执行有问题

回复 只看该作者 道具 举报

您需要登录后才可以回帖 登录 | 注册

回顶部