IT
摘要: 现象:打不开,各个磁盘 显示windows脚本宿主 盘符C\\D\\E\\F:\\u.vbe 错误:系统找不到指定的文件用以下方法可以解决以上的问题复制以下代码到记事本,然后以BAT格式保存到桌面,然后再双击就OK了@echo on taskkill /im explorer.exe /f taskkill /im wscript.exe start reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\EXplorer\Advanced /v ShowSuperHidden /t REG_DWORD /d 1 /f start reg 阅读全文
posted @ 2011-01-04 10:06 liufei 阅读(558) 评论(0) 推荐(0)
摘要: div style="height: 450px; width: 350px; overflow-x: auto; overflow-y: auto;" asp:GridView ID="GridView1" runat="server" BackColor="LightGoldenrodYellow" BorderColor="Tan" BorderWidth="1px" CellPadding="2" ForeColor="Black" GridLines="None" AutoGenerateColumns="False" Height="100px" Width="301p 阅读全文
posted @ 2011-01-04 09:51 liufei 阅读(454) 评论(0) 推荐(0)
摘要: using System.IO;public void creatPicPath() { string dirPath = HttpContext.Current.Server.MapPath("ChartImages"); string dirPathNew = Request.ServerVariables["APPL_PHYSICAL_PATH"] + "PrintOut\\newImg"; if (Directory.Exists(dirPath)) { //获得目录信息 DirectoryInfo dir = new DirectoryInfo(dirPath); //获得目录文件列 阅读全文
posted @ 2011-01-04 09:30 liufei 阅读(336) 评论(0) 推荐(0)