摘要:
.FixedTitleRow
{
position: relative;
top: expression(this.offsetParent.scrollTop);
z-index: 10;
background-color: #E6ECF0;
}
.FixedTitleColumn
{
position: relative;
left: expression(this.parentElement.offsetParent.scrollLeft);
}
.FixedDataColumn
{
position: relative;
left: expression(this.parentElement.offsetP 阅读全文
摘要:
SC- 删除Windows服务选项2008/07/15 14:25比如要删除windows的时间服务,操作如下:sc delete W32Time
SC- 删除Windows服务选项
SC- Windows一个很有用的命令
sc delete [servicename]
使用这个命令即可,查询其它功能用sc/?
C:\>sc/?
阅读全文
摘要:
这里为自己或后来困惑的朋友做一个提醒的记录,当想要在HttpHandler(ashx文件)中访问Session的状态值时,需要显式的实现一个接口 IReadOnlySessionState,示例如下: 阅读全文