张银的博客


Eat to live, but do not live to eat.

导航

随笔分类 -  【03】VS控件

摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="i05630229(2).aspx.cs"Inherits="i05630229_2_"%&... 阅读全文

posted @ 2009-06-16 23:41 张银 阅读(1099) 评论(0) 推荐(0) 编辑

摘要:HiddenField,LinkButton,LiteralHiddenField提供了一种方式实现在页面存储信息,并与其他控件信息用法差不多,但是它不显示出来、不占地方。仍然不能存放类似密码等敏感信息,因为它在页面html源代码中是可以看见的。 LinkButton,这个控件在用法上和Button差不多,是HyperLink和Button的整合。 LinkButton protect... 阅读全文

posted @ 2009-02-27 17:55 张银 阅读(611) 评论(0) 推荐(0) 编辑

摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web... 阅读全文

posted @ 2009-02-11 17:35 张银 阅读(670) 评论(2) 推荐(0) 编辑

摘要:演示一:数据源使用数组列表的数据,改变选择时,激发一个事件 演示二:两级联动使用SQL自带的pubs库的authors表,实现选择不同姓名后自动改变城市的联动效果(使用了SqlDataSourse控件) 请选择姓名: 城市: " SelectCommand="SELECT [au_id], [au_lname] FROM... 阅读全文

posted @ 2009-02-10 18:22 张银 阅读(800) 评论(0) 推荐(0) 编辑

摘要:日历控件(Calendar)为日历定制样式,外观控制日历的选择模式设置和获取选中的日期让特殊的日期有提示,同时我们模仿博客园日历,将页面导航到有文章的日期去Calendar事件DayRender在呈现日时激发 protected void Page_Init(object sender, EventArgs e){//只运行一次 arr = new string[13][]; for (int i... 阅读全文

posted @ 2009-01-15 12:50 张银 阅读(1242) 评论(0) 推荐(0) 编辑

摘要:补充按钮字体粗细this.style.fontWeight='bold或者normal'多个按钮的单击响应同一事件,这几个按钮的CommandName(发泡)是不同的 protected void Button3_Click(object sender, EventArgs e){ switch ( ((Button)sender).CommandName ) //用到了事件的委托?? { ... 阅读全文

posted @ 2009-01-14 16:12 张银 阅读(330) 评论(0) 推荐(0) 编辑

摘要:CheckBox(复选按钮)和RadioButton(单选按钮)一些控件共有的属性CheckBox 呈现方式-外观:BackColor/BorderColor/BorderStyle/ForeColor/Text/TextAlign(控制文字左右)自动回传-行为:AutoPostBack(True)/VisibleRadioButton行为:GroupName(此属性值相同的项才看做一组,否则各自... 阅读全文

posted @ 2009-01-09 18:17 张银 阅读(1066) 评论(0) 推荐(0) 编辑

摘要:using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;public partial class Default6 : System.Web.UI.Page{ protected void Page_Load(objec... 阅读全文

posted @ 2009-01-08 20:19 张银 阅读(366) 评论(0) 推荐(0) 编辑

摘要:CheckBoxList(复选列表)1.如何自己添加项2.布局方式(水平/垂直)(表格/流)(文字和框的位置)3.读取数据库的内容4.为数据绑定再追加一个静态项(比如“不选择”静态项目)注意行为里的AppendDataBoundItems属性5.控件事件6.读出被选中的 using System;using System.Collections.Generic;using System.Web;u... 阅读全文

posted @ 2009-01-07 18:39 张银 阅读(1324) 评论(0) 推荐(0) 编辑