有没有在页面上的任何ListBox控件?控件、页面、ListBox

由网友(酷拽小逗比)分享简介:我想学习,在asp.net,我们如何能够理解的是那里的网页编程?I want to learn that in asp.net, how can we understand is there any listbox control on the page programmatically?推荐答案您可以尝试像...

我想学习,在asp.net, 我们如何能够理解的是那里的网页编程?

I want to learn that in asp.net, how can we understand is there any listbox control on the page programmatically?

推荐答案

您可以尝试像...

if (Page.Controls.OfType<ListBox>().Count() > 0)
   {
       Response.Write("Listbox control exist");
   }
阅读全文

相关推荐

最新文章