摘要:
1、如果要获取母板页中的某一个控件的值,可以使用 Master.FindControl() 方法。母板页部分代码......内容页中的部分code...Label myLabel=new Label();myLabel=(Label)Master.FindControl("labNotice");string myText=myLabel.Text;myText 的值就是"Label001"2、可... 阅读全文
posted @ 2007-03-12 22:19 叶翔 阅读(1536) 评论(0) 推荐(0) 编辑