首页 > 2015年11月18日 > 全部分享
控制器向视图中传值ViewData详解
控制器向视图中传值ViewData详解 1.将一个字符串传值到视图中 在action中我们将字符串保存在ViewData(或ViewBag [asp.net 3或以上才可用])中代码如下: public ActionResult Index() { ViewData["str1"]= "这是一个字....
分类:其他   时间:2015-11-18 14:11:35    收藏:0  评论:0  赞:0  阅读:205
登录注册页面的
//第一页#import "ViewController.h"#import "LoginAndRegisterViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDid...
分类:其他   时间:2015-11-18 14:11:25    收藏:0  评论:0  赞:0  阅读:262
Linux防火墙设置
Linux防火墙设置 (1) 重启后永久性生效: 开启:chkconfig iptables on 关闭:chkconfig iptables off(2) 即时生效,重启后失效: 开启:service iptables start 关闭:service iptables stop 需要说明的是对于...
分类:系统服务   时间:2015-11-18 14:11:05    收藏:0  评论:0  赞:0  阅读:322
linux 下查看机器是cpu是几核的
几个cpumore /proc/cpuinfo |grep "physical id"|uniq|wc -l每个cpu是几核(假设cpu配置相同)more /proc/cpuinfo |grep "physical id"|grep "0"|wc -lcat /proc/cpuinfo | grep...
分类:系统服务   时间:2015-11-18 14:10:55    收藏:0  评论:0  赞:0  阅读:200
MYSQL-实现sqlserver- row_number() over(partition by order by) 分组排序功能
sqlserver:with Result as ( select SUM(F_DayValue) AS F_Value,F_ZZ_ttBuildID,F_EnergyItemCode from T_EC_EnergyItemDayResult ...
分类:数据库技术   时间:2015-11-18 14:10:45    收藏:0  评论:0  赞:0  阅读:383
thinkphp笔记
select(); $this->assign('user',M('user')->select())->display();//将user表中内容全部查询出来,赋给模板 //$this->a = 'dazhangdi'; //单个赋值// $this->display(); //ec...
分类:Web开发   时间:2015-11-18 14:10:36    收藏:0  评论:0  赞:0  阅读:326
LeetCode() Search for a Range
class Solution {public: vector searchRange(vector& nums, int target) { vector res; vector xxx; xxx.push_back(-1); xxx.p...
分类:其他   时间:2015-11-18 14:10:25    收藏:0  评论:0  赞:0  阅读:301
微快客8.0软件截图
分类:其他   时间:2015-11-18 14:10:15    收藏:0  评论:0  赞:0  阅读:254
登录Linux服务器显示IP和特殊备注
默认搭建好的Linux服务器,使用Xshell登录的窗口如下所示:可根据需要执行如上代码,再重新登录服务器,效果如下图所示:代码片段:echo "export PS1='\u@\[\e[0;31m\]|\w\[\e[m\]:\$'">>/root/.bashrc重新登录后可显示服务器IP和服务器简介...
分类:系统服务   时间:2015-11-18 14:10:05    收藏:0  评论:0  赞:0  阅读:361
GridView 的一些信息
1、GridView 默认的 垂直滚动条 是在 最右边的,如果 GridView 的宽度较大的话,看 垂直滚动条就比较麻烦了...2、设置 滚动条的 滚动条的位置:GridView gv = (GridView) this.findViewById(R.id.gridView1);gv.setVer...
分类:其他   时间:2015-11-18 14:09:56    收藏:0  评论:0  赞:0  阅读:338
[LeetCode] Additive Number 加法数
Additive number is a positive integer whose digits can form additive sequence.A valid additive sequence should contain at least three numbers. Except ...
分类:其他   时间:2015-11-18 14:09:45    收藏:0  评论:0  赞:0  阅读:335
oracle增加表空间的四种方法 - Oracle
oracle增加表空间的四种方法 增加表空间大小的四种方法 Meathod1:给表空间增加数据文件 ALTER TABLESPACE app_data ADD DATAFILE 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\EDWTEST\APP03.DBF' SIZE 50M...
分类:数据库技术   时间:2015-11-18 14:09:35    收藏:0  评论:0  赞:0  阅读:307
QT生成PDF文件
QString temp=""; //m_File_Content_Text_Edit->selectAll(); QString t_File_Content = m_File_Content_Text_Edit->toPlainText();// pdf文件生成 QPrinte...
分类:其他   时间:2015-11-18 14:09:25    收藏:0  评论:0  赞:0  阅读:295
Linux系统下安装MongoDB 指南
1.首先连接到Linux系统。2.到MongoDB官网下载合适的MongoDB安装压缩包。下载页面:https://www.mongodb.org/downloads#production。这里我下载的是Linux 64-bit legacy下载地址:https://fastdl.mongodb.o...
分类:数据库技术   时间:2015-11-18 14:09:15    收藏:0  评论:0  赞:0  阅读:420
intent打开第三方应用
有时候我们会有在自己的应用中进入另一个第三方应用的需求,首先要知道第三方应用的包名和主activity,很简单遍历一下所有的应用就能拿到了。 private void go2App(String packageName) { if (!isAppInstalled(this, p...
分类:其他   时间:2015-11-18 14:09:05    收藏:0  评论:0  赞:0  阅读:333
UIImageView图片视图的基本概念和使用方法
IOS学习笔记(十)之UIImageView图片视图的基本概念和使用方法(博客地址: http://blog.csdn.net/developer_jiangqq ) Author:hmjiangqq Email:jiangqqlmj@163.comUIImageView: 作用:专门用于显...
分类:其他   时间:2015-11-18 14:08:45    收藏:0  评论:0  赞:0  阅读:263
引用表更新
1.单个字段update table1 set table1.column = (select table2.column from table2 where table1.id = table2.id) where2.多个字段update table1 set (table1.column1,ta...
分类:其他   时间:2015-11-18 14:08:35    收藏:0  评论:0  赞:0  阅读:294
ubuntu网络配置命令
Ubuntu网络配置例如:(1) 配置eth0的IP地址, 同时激活该设备。 #ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up (2) 配置eth0别名设备eth0:1的IP地址,并添加路由。 #ifconfig eth0 192.168.1....
分类:系统服务   时间:2015-11-18 14:08:25    收藏:0  评论:0  赞:0  阅读:333
常用js正则表达式
正则表达式的JS验证/判断输入内容是否为空 function IsNull(){ var str = document.getElementById('str').value.trim(); if(str.length==0){ alert('对不起...
分类:Web开发   时间:2015-11-18 14:08:15    收藏:0  评论:0  赞:0  阅读:233
Docker托管6大注意事项
本文作者为ContainerShip联合创始人Phil Dougherty,ContainerShip是一家提供跨云服务的云服务提供商,在成立ContainerShip之前,Dougherty在上一家公司中曾经历过系统容器化和分布式化的过程,作者认为那是一段痛苦的经历,本文总结了那段过程中的经验,作...
分类:其他   时间:2015-11-18 14:08:05    收藏:0  评论:0  赞:0  阅读:216
1533条   上一页 1 ... 41 42 43 44 45 ... 77 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!