摘要: 1、label 控件 只有文本 会被渲染为span 块 如果label的 AssociatedControlID 属性 关联了控件就会 <label for="TextBox2" id="Label1">姓名</label> 渲染成label并赋给for属性 2、literal 直接渲染文本 mode属性设置为encode可以对html进行encode 避免html攻击 3、textbo... 阅读全文
posted @ 2013-06-15 23:56 河之洲 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 有1例 1000 每增加1例增加500 Public Function js(a As Integer) As Integer Dim i, j, s j = 500 s = 1000 If a <= 1 Then js = a * s Else js = js(a - 1) + s + j * (a - 1) End If End Function用菊子曰写博客,就是爽! 阅读全文
posted @ 2013-06-14 23:11 河之洲 阅读(101) 评论(0) 推荐(0) 编辑