Spiga

问题跟踪软件URTracker和Windows域的集成

2011-11-03 22:03 by 山不转水转..., 17 visits, 网摘, 收藏, 编辑
摘要:1 URTracker所支持的账号认证方式 1.1 表单认证(Forms Authentication) 所谓表单认证是指在登录页面中输入账号和密码的方式进行登录的认证方式。如下图所示: 此方式要求在服务器上对站点开启匿名访问。方法是(Windows2003):打开IIS管理器->在URTracker站点上点右键-》属性-》目录安全性-》身份验证方法-》选中“启用匿名访问”,禁用“用户访... 阅读全文

使用URTracker构建企业IT服务平台

2011-11-02 22:29 by 山不转水转..., 13 visits, 网摘, 收藏, 编辑
摘要:本公司为制造型企业,生产线路板,有多家公司,总人数约有5000人左右。 URTracker使用范围主要是IT部门。IT支持部门主要面向于各公司,为部门用户提供桌面维护,系统维护,邮件管理,电话网络,门禁系统等系统管理。 遇到的问题 1、 新进员工需要IT支持,不知道应该找谁处理,打电话需要打一圈才能找到人; 2、 打电话后,问题迟迟得不到解决,解决速度看交情; 3、 IT支持杂事诸... 阅读全文

ModalPopupExtender 自动消失的问题

2011-03-25 12:36 by 山不转水转..., 105 visits, 网摘, 收藏, 编辑
摘要:如果在ModalPopupExtender中使用UpdatePanel,但内部控件的操作造成了对话框消失的话,可能是因为:ModalPopupExtender外面还有一个UpdatePanel,内部控件的操作造成了外部Updatepanel的更新,从而使Popup隐藏。解决方法是: 将Extender外面的UpdatePanel的ChildrenAsTriggers设置为False,UpdateMode设置为Conditional,然后对每个需要的控件天津Triger声明。参考:http://forums.asp.net/p/1498216/3537764.aspx Re: Firing th 阅读全文

优化GridView

2010-11-18 15:45 by 山不转水转..., 13 visits, 网摘, 收藏, 编辑
摘要:优化ViewState[代码] 阅读全文

使用SQL Server分析IIS日志

2010-08-02 08:54 by 山不转水转..., 93 visits, 网摘, 收藏, 编辑
摘要:IIS日志格式为windows 2008 IIS的默认格式1 创建空数据库2.创建一个空表CREATE TABLE [dbo].[tablename]([date] [datetime] NULL,[time] [datetime] NULL,[s-ip] [varchar](50) NULL,[cs-method] [varchar](50) NULL,[cs-uri-stem] [varcha... 阅读全文

The file '/ApplicationName/Default.aspx' has not been pre-compiled, and cannot be requested

2010-07-28 17:33 by 山不转水转..., 62 visits, 网摘, 收藏, 编辑
摘要:1. 重装IIS和.net2.This is one of the temporary solution i did when i got the same errors. First rename the .dll file in bin folder to some .dllx and run the project. Then again rename the .dllx to the or... 阅读全文

使用JTip插件时需注意的一个问题

2010-06-29 08:32 by 山不转水转..., 36 visits, 网摘, 收藏, 编辑
摘要:使用Jtip所加载的页面中注意不能包含html/form 代码,而应该只包含内容代码段。这是因为Jtip载入后,会将内容附加在网页上,如果父页面和子页面都包含html/form代码,会造成页面dom混乱(IE8),从而使其他事件不能正常触发。如果jtip页面由于某些原因无法删除html等内容,可以用如下的方式只输出某个控件的内容。代码Code highlighting produced by Ac... 阅读全文

解决timer重入问题

2010-05-19 22:54 by 山不转水转..., 86 visits, 网摘, 收藏, 编辑
摘要:通过加锁的方式避免timer重入问题。 阅读全文

Reserved.ReportViewerWebControl.axd 404 错误的解决办法

2010-03-07 21:50 by 山不转水转..., 319 visits, 网摘, 收藏, 编辑
摘要:来源:http://ericphan.info/development/reserved-reportviewerwebcontrol-axd-not-found/Ran into this issue the other day at work. We were developing some reporting services reports for a client and viewing... 阅读全文

[转]sql跟踪日志trc导入数据库的2种方法

2009-12-11 16:02 by 山不转水转..., 222 visits, 网摘, 收藏, 编辑
摘要:http://blog.chinaunix.net/u2/76272/showart_1183246.html第一种。使用函数导入到某个库中A. 使用 fn_trace_gettable 从跟踪文件导入行以下示例在 SELECT...INTO 语句的 FROM 子句内部调用 fn_trace_gettable。USE AdventureWorks;GOSELECT * INTO temp_trcF... 阅读全文