摘要: constraint 外键表名_id_fk foreign key (外键字段名) references 主表名(主表id)createtableFirNav(idintprimarykeyidentity(1,1)notnull,navNamevarchar(10)notnull,);createtableSecNav(idintprimarykeyidentity(1,1)notnull,navNamevarchar(10)notnull,firIdint,constraintSecNav_id_fkforeignkey(firId)referencesFirNav(id));create 阅读全文
posted @ 2011-05-16 15:19 ゞ追忆o0ゞ 阅读(835) 评论(0) 推荐(0) 编辑
摘要: foreach(GridViewRowgvringvInBillList.Rows){TextBoxt=gvr.FindControl("TextBox1")asTextBox;if(t!=null){t.Text="给TextBox1赋值";}}这个方法真的很实用;把代码放到Page_Load中;其实在GridView的模板中操作真挺头疼的;也许是我真的好菜好菜;其实其他控件还好,最疼头的应该是DropDownList吧,这个方法同样受用;protectedvoidPage_Load(objectsender,EventArgse){if(!IsPos 阅读全文
posted @ 2011-05-16 14:32 ゞ追忆o0ゞ 阅读(3989) 评论(0) 推荐(0) 编辑
摘要: protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse){EnableViewState=false;if(e.Row.RowType==DataControlRowType.DataRow){e.Row.Attributes.Add("onmouseover","currentcolor=this.style.backgroundColor;this.style.backgroundColor='#CCCCFF'");e.Row.Attributes. 阅读全文
posted @ 2011-05-16 09:35 ゞ追忆o0ゞ 阅读(366) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2011-05-16 05:30 ゞ追忆o0ゞ 阅读(6) 评论(0) 推荐(0) 编辑