摘要:   首先将"http://localhost"添加到浏览器中的受信任站点区域(Tools--Internet Options--Scurity--Trusted sites--Sites),如果不添加将提示:"试图运行项目时出错:无法在web服务器上启动调试。你不具备调试此应用程序的权限。此项目的url位于internet区域". 然后修改int... 阅读全文
posted @ 2010-03-25 23:42 zqstc 阅读(264) 评论(0) 推荐(0) 编辑
摘要: create trigger dd on Chat For Insert,Update as if(Update(chat) and Update(cmaster)) begin declare @c char(15) set @c=(select chat from inserted) print @c raiserror('chat',16,10) rollback tran return e... 阅读全文
posted @ 2010-03-25 15:44 zqstc 阅读(299) 评论(0) 推荐(0) 编辑
摘要: JavaScript 大小写要区分,偶经常把方法名大小写搞错,定义时大写,调用时就变成小写了,切忌! JavaScript 取textbox值,document.getElementById(“id”).value;//document.getElementById(“id”).text属性无效 JQuery 取元素值 $("#Id").val()  //$(&q... 阅读全文
posted @ 2010-03-25 15:44 zqstc 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 第一,确定Web.Config文件的debug设定为true,这个要小写,它区分大小写的 第二,项目属性中的侦错属性,启用ASP.NET侦错为true,如果设为false,则直接运行项目,不进入调试状态 第三,IIS虚拟目录中找到这个专案的虚拟目录,点击属性,确定ASP.NET版本 前三个步骤比较重要 第四,右击电脑选择管理,找到用户和用户组,里面有两个用户ASPNET和IUSR_WXIT, ... 阅读全文
posted @ 2010-03-25 09:13 zqstc 阅读(1563) 评论(0) 推荐(0) 编辑