摘要: ifconfig eth0 up 启用第一块网卡 onboot=yes 自动启动 service network restart 重启网络服务 使用虚拟机添加一块桥接网卡 cp eth0 eth1 复制一份网卡配置文件 uuidgen eth1 查看 eth1 网卡UUID MAC:0800276B 阅读全文
posted @ 2019-03-31 14:47 无名的小兵 阅读(485) 评论(0) 推荐(1) 编辑
摘要: 一、下载: 下载地址: https://github.com/MicrosoftArchive/redis/releases 二、安装: 打开cmd命令窗口,使用命令进行安装和注册redis到window服务 安装命令:redis-server.exe --service-install redis 阅读全文
posted @ 2019-03-24 12:46 无名的小兵 阅读(149) 评论(0) 推荐(0) 编辑
摘要: mvc 提供了一种ajax提交表单的方式。与普通表单不同的是,它是一个异步表单。在开始使用之前,需要引用以下文件:1 2 View Code 下面做了一个例子实现按姓名关键字查询列表。页面代码: 1 6 @using (Ajax.BeginForm("SearchList", "Account", null, new AjaxOptions 7 { 8 InsertionMode = InsertionMode.Replace, //插入模式 9 HttpMethod = "GET",10 OnFailure = "&quo 阅读全文
posted @ 2013-12-15 11:50 无名的小兵 阅读(151) 评论(0) 推荐(0) 编辑