标签: asp.net
我有两个使用CodeFile
我有一个aspx页面,但没有在另一个aspx页面上。
在运行时我想检查Literal是否存在,然后设置值,如果它什么都不做。
答案 0 :(得分:1)
您是否尝试使用FindControl方法?
Literal l = FindControl("control id"); if(l != null) { //do your processing }