上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 77 下一页
摘要: Request.ServerVariables("Url") 返回服务器地址 Request.ServerVariables("Path_Info") 客户端提供的路径信息 Request.ServerVariables("Appl_Physical_Path") 与应用程序元数据库路径相应的物理路径 Request.ServerVariables("Path_Translated") 通过由虚拟... 阅读全文
posted @ 2007-03-20 16:43 ahuo 阅读(419) 评论(0) 推荐(0) 编辑
摘要: DataView dv; DataTable tb; tb = new DataTable("userlist"); tb.Columns.Add("name"); tb.Columns.Add("pat... 阅读全文
posted @ 2007-03-20 11:43 ahuo 阅读(213) 评论(0) 推荐(0) 编辑
摘要: SHELLEXECUTEINFO att; ZeroMemory(&att,sizeof(att)); att.cbSize = sizeof(SHELLEXECUTEINFO); att.lpFile = _T( "c:\\ex.xls");//要显示属性的文件 att.lpVerb = _T("properties"); att.... 阅读全文
posted @ 2007-03-19 13:10 ahuo 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 添加引用 System.DirectoryServices 导入命名空间 using System.DirectoryServices; srvip = "192.168.1.1"; dn = "DC=l,DC=com"; user = @"administrator"; pwd = "123"; DirectoryEntry de; de= new DirectoryEntry("L... 阅读全文
posted @ 2007-03-16 10:01 ahuo 阅读(1335) 评论(6) 推荐(0) 编辑
摘要: REM 输入并回显你的名字 '使用InputBox和Msgbox函数 Dim name,msg msg="请输入你的名字:" name=Inputbox(msg,"名称") Msgbox(name) ie显示服务列表strComputer = "."Set objExplorer = WScript.CreateObject("InternetExplorer.Application")objEx... 阅读全文
posted @ 2007-03-11 21:20 ahuo 阅读(438) 评论(0) 推荐(0) 编辑
摘要: WMI 测试器 (wbemtest.exe)WMI 命令行工具 (wmic.exe)wmic:root\cli>process /?PROCESS - 进程管理。提示: BNF 的别名用法。(<alias> [WMIObject] | <alias> [<path where>] | [<alias>] <path where>) ... 阅读全文
posted @ 2007-03-11 13:52 ahuo 阅读(2821) 评论(5) 推荐(0) 编辑
摘要: using System.Management; ManagementClass mc = new ManagementClass("Win32_Service"); ManagementObjectSearcher sr = new ManagementObjectSearcher("SELECT * FROM Win32_Service WHER... 阅读全文
posted @ 2007-03-11 13:34 ahuo 阅读(1476) 评论(0) 推荐(0) 编辑
摘要: 什么是 WMI?WMI最初于 1998 年作为一个附加组件与 Windows NT 4.0 Service Pack 4 一起发行,是内置在 Windows 2000、Windows XP 和 Windows Server 2003 系列操作系统中核心的管理支持技术。基于由 Distributed Management Task Force (DMTF) 所监督的业界标准,WMI 是一种规范和基础... 阅读全文
posted @ 2007-03-11 11:31 ahuo 阅读(1628) 评论(1) 推荐(0) 编辑
摘要: 这个提供了一个注入资源管理器的工程源码只要修改一下就可以很大破坏力http://www.cnblogs.com/Files/ahuo/indll注入.rar 阅读全文
posted @ 2007-03-09 22:29 ahuo 阅读(443) 评论(0) 推荐(0) 编辑
摘要: dllvoid __stdcall dos(char cmd[]){ system(cmd);}vbPrivate Declare Function dos Lib "dos.dll" (ByVal cmd As String) 红色部分是必要的,没有就传不了 阅读全文
posted @ 2007-03-09 21:20 ahuo 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 1. API之网络函数 WNetAddConnection 创建同一个网络资源的永久性连接 WNetAddConnection2 创建同一个网络资源的连接 WNetAddConnection3 创建同一个网络资源的连接 WNetCancelConnection 结束一个网络连接 WNetCancelConnection2 结束一个网络连接 WNetCloseEnum 结束一次枚举操作 WNetCo... 阅读全文
posted @ 2007-03-09 21:12 ahuo 阅读(343) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ){ return TRUE;} extern "C" void _... 阅读全文
posted @ 2007-03-09 20:23 ahuo 阅读(1302) 评论(0) 推荐(0) 编辑
摘要: 画图类DC CClientDC 在客户区里画 CClientDC dc(this); //客户区 CClientDC dc(GetParent());//包含工具栏 CWindowDC dc(this) //与CClientDC dc(this)无区别 CWindowDC dc(GetParent())//整个程序 包括标题栏 CWindowDC dc(GetDeskto... 阅读全文
posted @ 2007-03-05 16:10 ahuo 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 一、将FLASH.js文件放入站点任意文件夹中 二、在网页之间插入以下代码 三、用下面java语句完全替换网页中“"document.write(thtml)}//代码结束 下载http://www.cnblogs.com/Files/ahuo/flash.rar 阅读全文
posted @ 2007-03-05 15:02 ahuo 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 读出连接字符Properties.Settings.Default.data_infoConnectionString;修改DataDirectoryAppDomain.CurrentDomain.SetData("DataDirectory",Application.StartupPath); 阅读全文
posted @ 2007-03-05 11:59 ahuo 阅读(190) 评论(1) 推荐(0) 编辑
上一页 1 ··· 62 63 64 65 66 67 68 69 70 ··· 77 下一页