摘要: 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 阅读(2311) 评论(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 阅读(509) 评论(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 阅读(1991) 评论(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 阅读(4712) 评论(0) 推荐(1)
摘要: 用linearlayout完成这样的布局效果,这样的布局还是比较常用的,具体的xml代码如下: ... 阅读全文
posted @ 2016-01-15 13:41 hyyweb 阅读(289) 评论(0) 推荐(0)
摘要: 最近在Android开发当中,用到的动画效果。public void onClick(View arg0) { // TODO 自动生成的方法存根 switch (arg0.getId()) { case R.id.danru://淡入淡出 AnimationSet aset=new An... 阅读全文
posted @ 2016-01-15 13:34 hyyweb 阅读(11328) 评论(2) 推荐(1)
摘要: ---天气插件------后台调用js---ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript", "");---客户端弹出确认框---OnClientClick="return confirm('您确认删除该记录... 阅读全文
posted @ 2016-01-15 11:30 hyyweb 阅读(743) 评论(0) 推荐(1)
摘要: 从当前activity中获取et 表单中的值,并跳转到myactivity.java所绑定的xml布局文件上。private EditText et;Intent intent=new Intent(MainActivity.this,myactivity.class); String str... 阅读全文
posted @ 2016-01-15 11:17 hyyweb 阅读(328) 评论(0) 推荐(0)
摘要: 首页在AndroidManifest.xml中添加访问数据库权限 <uses-sdk android:minSdkVersion="7" /> <uses-permission android:name="android.permission.INTERNET" /> 在src中新建一个连接webs 阅读全文
posted @ 2016-01-15 11:08 hyyweb 阅读(1087) 评论(0) 推荐(0)