摘要: 大家在写css的时候,对一些html标签起一个合适的名字是个很头疼的事情,现在给大家分享项目中常用的名字供参考。外套:wrap ——用于最外层头部:header ——用于头部主要内容:main ——用于主体内容左侧:main_left ——左侧布局右侧:main_right ——右侧布局导航条:na... 阅读全文
posted @ 2016-01-18 17:29 hyyweb 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 如上图右上角,菜单选项的编辑,第一种代码实现方式如下:package com.example.menu;import android.os.Bundle;import android.app.Activity;import android.view.Menu;import android.view.... 阅读全文
posted @ 2016-01-18 15:25 hyyweb 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 使用ViewFlipper实现两张图片切换效果,废话不多说,直接上代码。java源码:package com.example.viewflipper;import android.os.Bundle;import android.app.Activity;import android.view.Me... 阅读全文
posted @ 2016-01-18 13:44 hyyweb 阅读(623) 评论(0) 推荐(0) 编辑
摘要: android生命周期运行:oncreate→onstart→onresume暂停:onresume→onpause;再次运行:onresume停止:onpause→onstop→ondestroy ;重新执行:onrestart → onstart→onresumeservice生命周期onCre... 阅读全文
posted @ 2016-01-16 10:39 hyyweb 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 安装jdk,把jdk安装路径复制,例如我复制的路径: C:\Program Files\Java\jdk1.8.0_66\bin;jdk下载地址:http://pan.baidu.com/s/1Xrmqy 进入后在系统变量中找到Path。点击编辑进入,之后把你第一步复制的路径粘贴进去,如果前面有别的 阅读全文
posted @ 2016-01-16 10:35 hyyweb 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1. Get(即使用QueryString显式传递) 方式:在url后面跟参数。 特点:简单、方便。 缺点:字符串长度最长为255个字符;数据泄漏在url中。 适用数据:简单、少量、关键的数据。 适用范围:传递给自己、传递给另一个目标页面;常用于2个页面间传递数据。 用法:例如:url后加?User... 阅读全文
posted @ 2016-01-16 08:12 hyyweb 阅读(2449) 评论(0) 推荐(1) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Data.SqlClient; 6 using System.Data... 阅读全文
posted @ 2016-01-15 14:23 hyyweb 阅读(2293) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.UI; 6 using System.Data; 7 usi... 阅读全文
posted @ 2016-01-15 14:21 hyyweb 阅读(490) 评论(0) 推荐(1) 编辑
摘要: 需要下载picklist.dll类库配合使用 1 2 3 6 7 1 8 2 9 10 11 //后台测试12 foreach (ListItem item2 in pklOperator.Ite... 阅读全文
posted @ 2016-01-15 14:08 hyyweb 阅读(1941) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.IO;u... 阅读全文
posted @ 2016-01-15 13:49 hyyweb 阅读(4692) 评论(0) 推荐(1) 编辑