本文介绍了如何在master中将可见的false标记为另一个Web表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的朋友们,



我已经开发了一个母版页和一个网页表单..我点击了主页链接按钮然后我希望一个标签在网络表单中显示为假...







有了问候,

Vivek .R

Dear Frnds,

I have developed one Master page and one web form.. i clicked masterpage linkbutton then i want one label visible false in web form..



With Regards,
Vivek .R

推荐答案

mLabel =
    (Label)Master.FindControl("LabelId");
  if(mLabel != null)
  {
    mLabel.Visible=False;
  }



Label lbl= (Label)Master.FindControl("lbl");


这篇关于如何在master中将可见的false标记为另一个Web表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 07:40