我可以从aspx.cs页面发送服务器控件

时间:2009-05-18 07:47:12

标签: asp.net

我可以从aspx.cs页面发送服务器控件吗

3 个答案:

答案 0 :(得分:5)

如果通过“发送”表示“创建”,则可以通过将动态创建的控件添加到容器(如页面或面板)来轻松完成:

LinkButton lnk1 = new LinkButton();
// Set any required properties.
...

// Add the control to the container.
Panel1.Controls.Add(lnk1);

LinkBut​​ton将按预期在客户端呈现。

答案 1 :(得分:0)

在表单中添加标签

在你的代码后面的文件[cs file]

label1.Text="<a href='your url'>LinkButton</a>";

答案 2 :(得分:0)

你也可以直接这样做。

Pages.Controls.Add(yourcontrolpathhere)