摘要: 有些顽固的系统启动项无论从msconfig还是从注册表的各run项里面都无法删除。其实它们是保存在一个隐藏的run项里面:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run。解决办法:1.设置文件夹选项,取消勾选隐藏受保护的系统文件和选择显示隐藏文件。2.运行regedit,定位到HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run。3.删除不想开机启动的子项。4.可能无法删除,是因为没有权限, 阅读全文
posted @ 2013-10-24 11:46 striiiiing 阅读(2296) 评论(0) 推荐(0) 编辑
摘要: 任务栏:%Userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar开始菜单:%Userprofile%\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu 阅读全文
posted @ 2013-08-16 11:01 striiiiing 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 原因是所装的不是官方版,而是经过第三方修改过的版本,只要把修改过的版本卸载再去下载个官方版安装问题即可解决。提示:官方版安装的时候是不显示安装步骤的,打开安装程序后就自己安装完成,连安装路径也不用选,一切谷歌都已经为你安排好。 阅读全文
posted @ 2013-08-16 00:56 striiiiing 阅读(1609) 评论(0) 推荐(0) 编辑
摘要: 问题可能是model里面声明的不是具有读写能力的属性。如:public class tempModel { public string aaa; }这样,页面上关联aaa的控件的值是传不回来的,就是model中aaa的值为null。要像下面这样:public class tempModel{ public string aaa{ get; set; }}把aaa声明为属性。同样地,如果是实体链表成员,实体的成员也只有属性成员能传回值,如:public class tempModel { public List<tempClass> templist { g... 阅读全文
posted @ 2013-06-18 22:35 striiiiing 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 下面以Access为例:string path = "D:\\newdb.accdb"; OleDbConnection conn = new OleDbConnection();string sql = "select * from News ";conn.ConnectionString = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;; Data Source={0}; ", path);OleDbCommand comm = new OleDbCommand(sql,con 阅读全文
posted @ 2012-12-14 10:51 striiiiing 阅读(374) 评论(0) 推荐(0) 编辑
摘要: ChildForm f = new ChildForm();f.MdiParent = this;f.Parent = this.splitContainer1.Panel2;f.Show();f.Dock = DockStyle.Fill; //实现此功能的语句 阅读全文
posted @ 2012-12-11 20:33 striiiiing 阅读(2107) 评论(0) 推荐(0) 编辑
摘要: 说明操作结果帮助器方法ViewResultView将视图呈现为网页。PartialViewResultPartialView呈现分部视图,该分部视图定义可呈现在另一视图内的某视图的一部分。RedirectResultRedirect使用其 URL 重定向到另一操作方法。RedirectToRouteResultRedirectToAction、RedirectToRoute重定向到另一操作方法。ContentResultContent返回用户定义的内容类型。JsonResultJson返回序列化的 JSON 对象。JavaScriptResultJavaScript返回可在客户端上执行的脚本。 阅读全文
posted @ 2012-09-07 18:42 striiiiing 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 碰到这么个情况,在一个控制器保存session,在另一个控制器获取不到值。代码如下: public ActionResult SetCode() { string id = Session.SessionID; Session["mycode"] = "abc"; return View(); } public ActionResult GetCode() { string id = Session.SessionID; stri... 阅读全文
posted @ 2012-09-07 18:40 striiiiing 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: System.IO.MemoryStream ms = new System.IO.MemoryStream();img.Save(ms, System.Drawing.Imaging.ImageFormat.Png); Response.ContentType = "image/png"; Response.Clear(); ms.WriteTo(Response.OutputStream); Response.End(); 阅读全文
posted @ 2012-09-06 20:35 striiiiing 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 是因为控件有容器包含,比如一个TextBox放在一个GroupBox里面,这样就会先按容器的TAB索引切换。 阅读全文
posted @ 2012-09-02 21:40 striiiiing 阅读(260) 评论(0) 推荐(0) 编辑