SQL2008 数据导入导出后,表架构所有者修改解决办法
数据导入导出后,从远程数据库带过来的表架构所有者的修改方法:
选择:表->右键->设计->F4->属性->架构 下拉选择你需要更换的所有者
posted @ 2011-01-30 00:39 砖头 阅读(170) 评论(0) 编辑
数据导入导出后,从远程数据库带过来的表架构所有者的修改方法:
选择:表->右键->设计->F4->属性->架构 下拉选择你需要更换的所有者
posted @ 2011-01-30 00:39 砖头 阅读(170) 评论(0) 编辑
解决办法:在每个页面增加这句
<meta http-equiv="x-ua-compatible" content="ie=7" />
posted @ 2010-12-30 21:32 砖头 阅读(21) 评论(0) 编辑
posted @ 2010-12-23 17:27 砖头 阅读(47) 评论(0) 编辑
解决方法:
1.使用window.onload方法
2.把document.body.appendChild 语句放在body后面
3.用setTimeout延迟document.body.appendChild
4.用insertBefore
posted @ 2010-12-19 14:37 砖头 阅读(158) 评论(0) 编辑
提交到弹出窗口:
document.form1.action = "Save.aspx";
window.open("", 'win', 'width=420px,height=300px,resizable=yes,top=50px,left=200px,toolbar=no, menubar=no, location=no, status=no');
document.form1.target = "win";
document.form1.submit();
提交到IFRAME:
<body>
<form name="form1" method="post" action="savePage.aspx" target="save">
<input type="submit" name="Submit" value="提交">
</form>
<iframe src="savePage.aspx" name="save" height="0" width="0"></iframe>
</body>
posted @ 2010-12-04 03:13 砖头 阅读(462) 评论(0) 编辑
posted @ 2010-12-03 03:47 砖头 阅读(155) 评论(0) 编辑
posted @ 2010-12-03 03:19 砖头 阅读(219) 评论(0) 编辑
posted @ 2010-09-07 11:58 砖头 阅读(173) 评论(0) 编辑
posted @ 2010-07-08 10:04 砖头 阅读(442) 评论(0) 编辑
posted @ 2010-04-24 18:36 砖头 阅读(97) 评论(0) 编辑