转至繁体中文版     | 网站首页 | 图文教程 | 资源下载 | 站长博客 | 图片素材 | 武汉seo | 武汉网站优化 | 
最新公告:     敏韬网|教学资源学习资料永久免费分享站!  [mintao  2008年9月2日]        
您现在的位置: 学习笔记 >> 图文教程 >> 软件开发 >> VB.NET程序 >> 正文
VB.NET中得到计算机硬件信息         ★★★★

VB.NET中得到计算机硬件信息

作者:闵涛 文章来源:闵涛的学习笔记 点击数:2082 更新时间:2009/4/23 18:59:55

本文汇集了在.NET中得到计算机硬件信息的一些功能。

得到显示器分辨率 Dim X As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width Dim Y As Short = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height MsgBox("您的显示器分辨率是:" & X & " X " & Y) 得到特殊文件夹的路径 ''''"Desktop"桌面文件夹路径 MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)) ''''"Favorites"收藏夹路径 MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.Favorites)) ''''"Application Data"路径 MsgBox(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)) ''''通用写法 ''''Dim SPEC As String = Environment.GetFolderPath(Environment.SpecialFolder.XXXXXXX) ''''XXXXXXX是特殊文件夹的名字 得到操作系统版本信息 MsgBox(Environment.OSVersion.ToString) 得到当前登录的用户名 MsgBox(Environment.UserName) 得到当前应用程序的路径 MsgBox(Environment.CurrentDirectory) 打开和关闭CD-ROM ''''先新建模块 Module mciAPIModule Declare Function mciSendString Lib "winmm.dll" Alias "mciSendStringA" _ (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, _ ByVal uReturnLength As Integer, ByVal hwndCallback As Integer) As Integer End Module ''''打开CD-ROM Dim lRet As Long lRet = mciSendString("set cdAudio door open", 0&, 0, 0) ''''关闭CD-ROM Dim lRet As Long lRet = mciSendString("set cdAudio door Closed", 0&, 0, 0) ''''更多请参见 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/multimed/mmcmdstr_8eyc.asp 得到计算机IP和计算机全名 Dim MY<a class="channel_keylink" href="http://www.ggbing.com/ip">IP</a> As System.Net.IPHostEntry = System.Net.Dns.GetHostByName(System.Net.Dns.GetHostName) MsgBox("您的IP地址:" & (MYIP.AddressList.GetValue(0).ToString)) MsgBox("您的计算机全名:" & (MYIP.HostName.ToString)) 使用win32_operatingSystem (wmi Class)得到计算机信息 ''''添加ListBox在Form1_Load事件里,并引用system.Managment Dim opSearch As New ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem") Dim opInfo As ManagementObject For Each opInfo In opSearch.Get() ListBox1.Items.Add("Name: " & opInfo("name").ToString()) ListBox1.Items.Add("Version: " & opInfo("version").ToString()) ListBox1.Items.Add("Manufacturer: " & opInfo("manufacturer").ToString()) ListBox1.Items.Add("Computer name: " & opInfo("csname").ToString()) ListBox1.Items.Add("Windows Directory: " & opInfo("windowsdirectory").ToString()) Next 列出计算机安装的全部字体,并添加到ListBox ''''新建Form并添加ListBox和Button Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim fntCollection As InstalledFontCollection = New InstalledFontCollection() Dim fntFamily() As FontFamily fntFamily = fntCollection.Families ListBox1.Items.Clear() Dim i As Integer = 0 For i = 0 To fntFamily.Length - 1 ListBox1.Items.Add(fntFamily(i).Name) Next End Sub 使用Win32_Processor列出处理器的信息 Imports System.Management Public Class Form1 Inherits System.Windows.Forms.Form #Region " Windows 窗体设计器生成的代码 " Public Sub New() MyBase.New() ''''该调用是 Windows 窗体设计器所必需的。 InitializeComponent() ''''在 InitializeComponent() 调用之后添加任何初始化 End Sub ''''窗体重写 dispose 以清理组件列表。 Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub ''''Windows 窗体设计器所必需的 Private components As System.ComponentModel.IContainer ''''注意: 以下过程是 Windows 窗体设计器所必需的 ''''可以使用 Windows 窗体设计器修改此过程。 ''''不要使用代码编辑器修改它。 Friend WithEvents ListBox1 As System.Windows.Forms.ListBox Friend WithEvents Button1 As System.Windows.Forms.Button <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() Me.ListBox1 = New System.Windows.Forms.ListBox Me.Button1 = New System.Windows.Forms.Button Me.SuspendLayout() '''' ''''ListBox1 '''' Me.ListBox1.Location = New System.Drawing.Point(8, 8) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(280, 186) Me.ListBox1.TabIndex = 0 '''' ''''Button1 '''' Me.Button1.Location = New System.Drawing.Point(56, 208) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(168, 32) Me.Button1.TabIndex = 1 Me.Button1.Text = "装载计算机处理器信息" '''' ''''Form1 '''' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(296, 254) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button1, Me.ListBox1}) Me.Text = "计算机处理器信息" Me.ResumeLayout(False) End Sub #End Region Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles Button1.Click Dim ProcQuery As New SelectQuery("Win32_Processor") Dim ProcSearch As New ManagementObjectSearcher(ProcQuery) Dim ProcInfo As ManagementObject For Each ProcInfo In ProcSearch.Get() Call processorfamily(ProcInfo("Family").ToString) ListBox1.Items.Add("Description: " & ProcInfo("Description").ToString()) ListBox1.Items.Add("caption: " & ProcInfo("caption").ToString()) ListBox1.Items.Add("Architecture: " & ProcInfo("Architecture").ToString()) Call processortype(ProcInfo("ProcessorType").ToString()) Call CpuStat(ProcInfo("CpuStatus").ToString) ListBox1.Items.Add("MaxClockSpeed: " & ProcInfo("MaxClockSpeed").ToString() & "MHZ") ListBox1.Items.Add("L2CacheSpeed: " & ProcInfo("L2CacheSpeed").ToString() & "MHZ") ListBox1.Items.Add("ExtClock: " & ProcInfo("L2CacheSpeed").ToString() & "MHZ") ListBox1.Items.Add("ProcessorId: " & ProcInfo("ProcessorId").ToString()) ListBox1.Items.Add("AddressWidth: " & ProcInfo("AddressWidth").ToString() & "Bits") ListBox1.Items.Add("DataWidth: " & ProcInfo("DataWidth").ToString() & "Bits") ListBox1.Items.Add("Version: " & ProcInfo("Version").ToString()) ListBox1.Items.Add("ExtClock: " & ProcInfo("ExtClock").ToString() & "MHZ") Next End Sub Function processorfamily(ByVal procssfam) Dim processtype Select Case procssfam Case 1 processtype = "Other" Case 2 processtype = "Unknown " Case 3 processtype = "8086 " Case 4 processtype = "80286 " Case 5 processtype = "80386 " Case 6 processtype = "80486 " Case 7 processtype = "8087 " Case 8 processtype = "80287 " Case 9 processtype = "80387 " Case 10 processtype = "80487 " Case 11 processtype = "Pentium brand " Case 12 processtype = "Pentium Pro " Case 13 processtype = "Pentium II " Case 14 processtype = "Pentium processor with MMX technology " Case 15 processtype = "Celeron " Case 16 processtype = "Pentium II Xeon " Case 17 processtype = "Pentium III " Case 18 processtype = "M1 Family " Case 19 processtype = "M2 Family " Case 24 processtype = "K5 Family " Case 25 processtype = "K6 Family " Case 26 processtype = "K6-2 " Case 27 processtype = "K6-3 " Case 28 processtype = "AMD Athlon Processor Family " Case 29 processtype = "AMD Duron Processor " Case 30 processtype = "AMD2900 Family " Case 31 processtype = "K6-2+ " Case 32 processtype = "Power PC Family " Case 33 processtype = "Power PC 601 " Case 34 processtype = "Power PC 603 " Case 35 processtype = "Power PC 603+ " Case 36 processtype = "Power PC 604 " Case 37 processtype = "Power PC 620 " Case 38 processtype = "Power PC X704 " Case 39 processtype = "Power PC 750 " Case 48 processtype = "Alpha Family " Case 49 processtype = "Alpha 21064 " Case 50 processtype = "Alpha 21066 " Case 51 processtype = "Alpha 21164 " Case 52 processtype = "Alpha 21164PC " Case 53 processtype = "Alpha 21164a " Case 54 processtype = "Alpha 21264 " Case 55 processtype = "Alpha 21364 " Case 64 processtype = "MIPS Family " Case 65 processtype = "MIPS R4000 " Case 66 processtype = "MIPS R4200 " Case 67 processtype = "MIPS R4400 " Case 68 processtype = "MIPS R4600 " Case 69 processtype = "MIPS R10000 " Case 80 processtype = "SPARC Family " Case 81 processtype = "SuperSPARC " Case 82 processtype = "microSPARC II " Case 83 processtype = "microSPARC IIep " Case 84 processtype = "UltraSPARC " Case 85 processtype = "UltraSPARC II " Case 86 processtype = "UltraSPARC IIi " Case 87 processtype = "UltraSPARC III " Case 88 processtype = "UltraSPARC IIIi " Case 96 processtype = "68040 " Case 97 processtype = "68xxx Family " Case 98 processtype = "68000 " Case 99 processtype = "68010 " Case 100 processtype = "68020 " Case 101 processtype = "68030 " Case 112 processtype = "Hobbit Family " Case 120 processtype = "Crusoe TM5000 Family " Case 121 processtype = "Crusoe TM3000 Family " Case 128 processtype = "Weitek " Case 130 processtype = "Itanium Processor " Case 144 processtype = "PA-RISC Family " Case 145 processtype = "PA-RISC 8500 " Case 146 processtype = "PA-RISC 8000 " Case 147 pr</p><p align='center'><b><font color='red'>[1]</font>&nbsp;<a href='ShowArticle.asp?ArticleID=24487&Page=2'>[2]</a>&nbsp;<a href='ShowArticle.asp?ArticleID=24487&Page=3'>[3]</a>&nbsp;&nbsp;<a href='ShowArticle.asp?ArticleID=24487&Page=2'>下一页</a></b></p><br>没有相关教程 <script type="text/javascript"> /*728*90,创建于2010-9-16*/ var cpro_id = 'u203664';</script> <script type="text/javascript" src="http://cpro.baidu.com/cpro/ui/c.js"></script> <script language=javascript> document.body.oncopy=function(){ event.returnValue=false; var t=document.selection.createRange().text; var s=" 来源:[学习笔记★闵涛★计算机学习电脑编程软硬件技巧-VB.NET程序] "+location.href; window.clipboardData.setData('Text', t+'\r\n'+s); } </script><center></center></td></tr> <tr><td height="10"></td></tr> <tr><td align='right' class="Article_tdbgall">教程录入:mintao&nbsp;&nbsp;&nbsp;&nbsp;责任编辑:mintao&nbsp;</td></tr> <tr><td height="1" background="/Skin/sealove/line01.gif"></td></tr> <tr><td height="6"></td></tr> <tr><td><li>上一篇教程: <a class='LinkPrevArticle' href='/Article/ShowArticle.asp?ArticleID=24486' title='文章标题:使用Web服务将C#代码转换为VB.NET代码 作&nbsp;&nbsp;&nbsp;&nbsp;者:武汉SEO闵涛 更新时间:2009/4/23 18:59:55'>使用Web服务将C#代码转换为VB.NET代码</a></li><br><li>下一篇教程: <a class='LinkNextArticle' href='/Article/ShowArticle.asp?ArticleID=24488' title='文章标题:VB.NET里奇怪的数组赋值现象 作&nbsp;&nbsp;&nbsp;&nbsp;者:武汉SEO闵涛 更新时间:2009/4/23 18:59:56'>VB.NET里奇怪的数组赋值现象</a></li></td></tr> <tr><td height="6"></td></tr> <tr><td height="1" bgcolor="#CCCCCC"></td></tr> <tr><td height="22" bgcolor="#F2F2F2" align="right">【字体:<a href="javascript:fontZoomA();" class="top_UserLogin">小</a> <a href="javascript:fontZoomB();" class="top_UserLogin">大</a>】【<a href="/Article/Comment.asp?ArticleID=24487" target="_blank">发表评论</a>】【<a href="/User/User_Favorite.asp?Action=Add&ChannelID=1&InfoID=24487" target="_blank">加入收藏</a>】【<a href="/Article/SendMail.asp?ArticleID=24487" target="_blank">告诉好友</a>】【<a href="/Article/Print.asp?ArticleID=24487" target="_blank">打印此文</a>】【<a href="javascript:window.close();">关闭窗口</a>】 </td></tr> <tr><td height="1" bgcolor="#CCCCCC"></td></tr> </table> <table width="100%" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td height="25"> <img src="/Images/TEAM.gif" align="absmiddle"> 注:本站部分文章源于互联网,版权归原作者所有!如有侵权,请原作者与本站联系,本站将立即删除! 本站文章除特别注明外均可转载,但需注明出处! [MinTao学以致用网] </td></tr> <tr><td height="25"> <img src="/Images/TEAM.gif" align="absmiddle"> <b>网友评论:</b>(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)</td></tr> <tr><td class="main_tdbg_760"> <script language='javascript' src='/Article/Comment.asp?Action=JS&CommentNum=10&ArticleID=24487'></script> </td></tr> </table><br> </td> </tr> </table> </td> <td width="5"></td> <td width="1" bgcolor="#EEEEEE"></td> <td width="5"></td> <td width="170" valign="top"> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="33" height="28"><img src="/Skin/sealove/Column01_L.gif"></td> <td background="/Skin/sealove/Column01_BG.gif" style="color:#FFFFFF"><b>同类栏目</b></td> <td width="10"><img src="/Skin/sealove/Column01_R.gif"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="1" bgcolor="#AAAAAA"></td> <td valign="top"> <table width="96%" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td height="70" valign="top">·&nbsp;<a class='childclass' href='/Article/ShowClass.asp?ClassID=22' target="_self">C语言系列</a>&nbsp;&nbsp;·&nbsp;<a class='childclass' href='/Article/ShowClass.asp?ClassID=23' target="_self">VB.NET程序</a><br>·&nbsp;<a class='childclass' href='/Article/ShowClass.asp?ClassID=106' target="_self">JAVA开发</a>&nbsp;&nbsp;·&nbsp;<a class='childclass' href='/Article/ShowClass.asp?ClassID=107' target="_self">Delphi程序</a><br>·&nbsp;<a class='childclass' href='/Article/ShowClass.asp?ClassID=24' target="_self">脚本语言</a></td></tr> </table> </td> <td width="1" bgcolor="#AAAAAA"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="6" height="23"><img src="/Skin/sealove/Column01_Lb.gif"></td> <td background="/Skin/sealove/Column01_BGb.gif" align="right"><img src="/Skin/sealove/More01.gif" border="0" alt="更多内容"></td> <td width="6"><img src="/Skin/sealove/Column01_Rb.gif"></td> </tr> <tr><td colspan="3" height="8"><img src="/Skin/sealove/space.gif"></td></tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="14" height="28"><img src="/Skin/sealove/Column02_L.gif"></td> <td background="/Skin/sealove/Column02_BG.gif" style="color:#0099BB"><b>热门推荐</b></td> <td width="45" background="/Skin/sealove/Column02_BG.gif" align="right"><a href="/Article/ShowElite.asp"><img src="/Skin/sealove/More01.gif" border="0" alt="更多内容"></a></td> <td width="10"><img src="/Skin/sealove/Column02_R.gif"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="7" background="/Skin/sealove/Column02_Lc.gif"></td> <td valign="top"> <table width="96%" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td height="80" valign="top"><li>没有教程</li></td></tr> </table> </td> <td width="7" background="/Skin/sealove/Column02_Rc.gif"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="8" height="7"><img src="/Skin/sealove/Column02_Lb.gif"></td> <td background="/Skin/sealove/Column02_BGb.gif"><img src="/Skin/sealove/space.gif"></td> <td width="8"><img src="/Skin/sealove/Column02_Rb.gif"></td> </tr> <tr><td colspan="3" height="8"><img src="/Skin/sealove/space.gif"></td></tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="33" height="28"><img src="/Skin/sealove/Column01_L.gif"></td> <td background="/Skin/sealove/Column01_BG.gif" style="color:#FFFFFF"><b>赞助链接</b></td> <td width="10"><img src="/Skin/sealove/Column01_R.gif"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="1" bgcolor="#AAAAAA"></td> <td valign="top"> <table width="98%" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td height="600" valign="top"> <script type="text/javascript"> /*160*600,创建于2010-9-16*/ var cpro_id = 'u203713';</script> <script type="text/javascript" src="http://cpro.baidu.com/cpro/ui/c.js"></script> </td></tr> </table> </td> <td width="1" bgcolor="#AAAAAA"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="6" height="23"><img src="/Skin/sealove/Column01_Lb.gif"></td> <td background="/Skin/sealove/Column01_BGb.gif" align="right"><img src="/Skin/sealove/More01.gif" border="0" alt="更多内容"></td> <td width="6"><img src="/Skin/sealove/Column01_Rb.gif"></td> </tr> <tr><td colspan="3" height="8"><img src="/Skin/sealove/space.gif"></td></tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="14" height="28"><img src="/Skin/sealove/Column02_L.gif"></td> <td background="/Skin/sealove/Column02_BG.gif" style="color:#0099BB"><b><a href="http://www.mintao.net/blog/" target="_blank">闵涛</a>博文</b></td> <td width="45" background="/Skin/sealove/Column02_BG.gif" align="right"><a href="/blog/"><img src="/Skin/sealove/More01.gif" border="0" alt="更多关于武汉SEO的内容"></a></td> <td width="10"><img src="/Skin/sealove/Column02_R.gif"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="7" background="/Skin/sealove/Column02_Lc.gif"></td> <td valign="top"> <table width="96%" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td height="80" valign="top"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/> <title>500 - 内部服务器错误。</title> <style type="text/css"> <!-- body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;} fieldset{padding:0 15px 10px 15px;} h1{font-size:2.4em;margin:0;color:#FFF;} h2{font-size:1.7em;margin:0;color:#CC0000;} h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF; background-color:#555555;} #content{margin:0 0 0 2%;position:relative;} .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;} --> </style> </head> <body> <div id="header"><h1>服务器错误</h1></div> <div id="content"> <div class="content-container"><fieldset> <h2>500 - 内部服务器错误。</h2> <h3>您查找的资源存在问题,因而无法显示。</h3> </fieldset></div> </div> </body> </html> </td></tr> </table> </td> <td width="7" background="/Skin/sealove/Column02_Rc.gif"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="8" height="7"><img src="/Skin/sealove/Column02_Lb.gif"></td> <td background="/Skin/sealove/Column02_BGb.gif"><img src="/Skin/sealove/space.gif"></td> <td width="8"><img src="/Skin/sealove/Column02_Rb.gif"></td> </tr> <tr><td colspan="3" height="8"><img src="/Skin/sealove/space.gif"></td></tr> </table> </td> <td width="5"></td> <td width="8" background="/Skin/sealove/Main_Right.gif"></td> </tr> </table> <table cellSpacing=0 cellPadding=0 width=1000 align=center bgColor=#ffffff border=0> <tr> <td width=8 background=/Skin/sealove/Main_Left.gif></td> <td vAlign=top> <table cellSpacing=0 cellPadding=0 width="100%" border=0> <tr> <td bgColor=#faac24 height=1></td> </tr> <tr> <td height=1></td> </tr> <tr> <td bgColor=#faac24 height=9></td> </tr> <tr> <td height=1></td> </tr> <tr> <td bgColor=#faac24 height=1></td> </tr> </table> <table cellSpacing=0 cellPadding=0 width="90%" align=center border=0> <tr> <td style="COLOR: #000000" align=middle height=25>| <A class=Bottom onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.mintao.net/');" href="#">设为首页</A> |<A class=Bottom href="javascript:window.external.addFavorite('http://www.mintao.net/','学习笔记★闵涛★计算机学习电脑编程软硬件技巧');">加入收藏</A> | <A class=Bottom href="mailto:admin@mintao.net">联系站长</A> | <A class=Bottom href="/FriendSite/Index.asp" target=_blank>友情链接</A> | <A class=Bottom href="/Copyright.asp" target=_blank>版权申明</A> | <A class=Bottom href="/html/friends.html" target=_blank>广告服务</A> </td> </tr> <tr> <td background=/Skin/sealove/line01.gif height=1></td> </tr> </table> <table cellSpacing=0 cellPadding=0 width="100%" border=0> <tr> <td align=middle width=210><A href="http://www.mintao.net/" target=_blank><IMG alt=MinTao学以致用网 src="/Skin/sealove/PElogo_sealove.gif" border=0></A></td> <td><table border=0 width=100% cellspacing=0 cellpadding=0> <tr> <td colspan=2> <p align=center><span style='font-size: 9pt'>Copyright @ 2007-2012 敏韬网(敏而好学,文韬武略--MinTao.Net)(<A href='http://www.mintao.net/'>学习笔记</A>) Inc All Rights Reserved. <br> <A href='http://www.mintao.net/'>闵涛</A> <a target="blank" href="http://wpa.qq.com/msgrd?V=1&Uin=543098146&Site=敏韬网&Menu=yes" rel="nofollow"><img border="0" SRC=http://wpa.qq.com/pa?p=1:543098146:10 alt='投放广告、内容合作请Q我!'></a> E_mail:admin@mintao.net(欢迎提供学习资源)</span></p> <div style="width:300px;margin:0 auto; padding:1px 0;"> <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=42011102001154" style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img src="http://www.mintao.net/images/beian_ico.png" style="float:left;"/><p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#939393;">鄂公网安备 42011102001154号</p></a> </div> <p align=center><span style='font-size: 9pt'> 站长:<A href='http://www.mintao.net/'>MinTao</A> <align=center><span style='font-size: 9pt;color:#7f270f'>ICP备案号:<a target="_blank" href="https://beian.miit.gov.cn">鄂ICP备11006601号-18</a> <script src='http://s79.cnzz.com/stat.php?id=495319&web_id=495319&show=pic' language='JavaScript' charset='gb2312'></script> <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F83055e3c4dcc2c9c0e7ad2643e08b99d' type='text/javascript'%3E%3C/script%3E")); </script> </span></p></td> </tr> <tr> <td align=center> 闵涛站盟:<A href='http://pub.mintao.net/' target='_blank'>医药大全</A>-<A href='http://www.iwuxue.com/' target='_blank'>武穴网</A>。<A href='http://www.mintao.net/sitemap_index.xml' target='_blank'>A</A>打造<A href='http://www.mintao.net/SiteMap/Soft1.htm' target='_blank'>B</A>、<A href='http://www.mintao.net/SiteMap/Article1.htm' target='_blank'>C</A>、<A href='http://www.mintao.net/SiteMap/Photo1.htm' target='_blank'>D</A>……</span></td> <td> </td> </tr> </table> <script language="JavaScript" src="http://www.mintao.net/js/qqkf.js"></script> </td> <td width=20></td> <td width=120 height=80><A href="http://xianning.cyberpolice.cn/" rel="nofollow" target=_blank><IMG alt=咸宁网络警察报警平台 src="http://www.mintao.net/images/xnwj.gif" width=120 border=0></A></td> </tr> </table> </td> <td width=8 background=/Skin/sealove/Main_Right.gif></td> </tr> </table> <script type="text/javascript"> /*blog.mintao.net250*200 创建于 2015-07-01*/ var cpro_id = "u2183153"; </script> <script src="http://cpro.baidustatic.com/cpro/ui/f.js" type="text/javascript"></script> <table width="1000" align="center" border="0" cellpadding="0" cellspacing="0"> <tr><td width="15"><img src="/Skin/sealove/Main_BottomLeft.gif"></td> <td height="11" background="/Skin/sealove/Main_BottomBG.gif"><img src="/Skin/sealove/space.gif"></td> <td width="15"><img src="/Skin/sealove/Main_BottomRight.gif"></td> </tr> <tr><td colspan="3" height="5"></td></tr> </table> </body> </html><NOSCRIPT><IFRAME src='*' Width='0' Height='0'></IFRAME></NOSCRIPT>