Zoe
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: 1、linq分页和组合查询:(用项目实战来解释) 2、取集合交集: 阅读全文
posted @ 2017-06-02 20:19 口袋里的SKY 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 用小型人员管理系统的项目实战来练习linq的基础增删改查: 阅读全文
posted @ 2017-06-02 20:13 口袋里的SKY 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Repeater的Command用法是Repeater控件的原生事件用法 Repeater里面如果循环控件,控件的ID是会被改变的ItemCommand事件 - 任何控件执行提交都来触发这个事件属性 - CommandName=""属性 - CommandArgument="主键值" ItemCre 阅读全文
posted @ 2017-05-29 10:32 口袋里的SKY 阅读(211) 评论(0) 推荐(0) 编辑
摘要: ASP内置对象:提供内建对象,这些对象使用户更容易收集通过浏览器请 求发送的信息、响应浏览器以及存储用户信息(如用户首选项)。 地址栏传两个值: Response.Redirect("Default2.aspx?a=" + TextBox1.Text + "&b=" + TextBox2.Text) 阅读全文
posted @ 2017-05-29 09:52 口袋里的SKY 阅读(491) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; /// /// nation 的摘要说明 /// public class nation { public string nationcode { get; set; } public string na... 阅读全文
posted @ 2017-05-28 23:58 口袋里的SKY 阅读(199) 评论(0) 推荐(0) 编辑
摘要: (一)复合控件 1.RadioButtonList 每一行数据都是一个ListItem RadioButtonList的属性: RepeatDirection 排列方式 RepeatColumns 每一行中需要展示的个数 RepeatLayout 页面中生成什么样的代码 ListItem的属性: E 阅读全文
posted @ 2017-05-28 17:13 口袋里的SKY 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 表单元素: 文本类<input type="text"> - TextBoxpassword TextBox TextMode="password"textarea TextBox TextMode="MutilLine"hidden HiddenFiled 按钮类button - 无submit 阅读全文
posted @ 2017-05-28 11:29 口袋里的SKY 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Repeater - 重复器HeaderTemplate - 先执行,执行一次FooterTemplate - 最后执行,执行一次ItemTemplate - 在Header之后执行,有多少条数据绑定就执行多少次 AlterNatingItemTemplate - 交替项模板,与ItemTempla 阅读全文
posted @ 2017-05-28 09:47 口袋里的SKY 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 文件上传 准备工作1.文件上传的页面2.上传文件要保存的文件夹 1.只要将文件传上来就行 //1、获取要上传的文件,并且知道要上传到服务器的路径 string s = "Uploads/aaa.txt"; //2、生成绝对路径 string path = Server.MapPath(s); //3 阅读全文
posted @ 2017-05-27 16:44 口袋里的SKY 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1、正则表达式:验证数据格式的准确性。 用正则表达式判断手机号格式是否正确: 2、用加减按钮增加减少数量 3、用checkbox实现全选 阅读全文
posted @ 2017-05-27 14:26 口袋里的SKY 阅读(210) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页