会员
商店
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
烈马狂生
博客园
首页
新随笔
联系
订阅
管理
自定义控件嵌套
public
class
DisplayPost : System.Web.UI.WebControls.WebControl,INamingContainer
{
protected
UC_Button SendMS
=
new
UC_Button();
private
void
SendMS_ButtonClick(
object
sender, EventArgs e)
{
UC_Button ServerPromptTmp
=
(UC_Button)sender;
string
ActionFlag
=
ServerPromptTmp.Value;
}
protected
override
void
CreateChildControls()
{
SendMS.ButtonClick
+=
new
EventHandler(SendMS_ButtonClick);
Controls.Add(SendMS);
base
.CreateChildControls();
}
protected
override
void
Render(HtmlTextWriter output)
{
this
.SendMS.RenderControl(output);
}
private
void
DisplayPost_PreRender(
object
sender,EventArgs e)
{
this
.SendMS.ButtonType
=
"
LinkButton
"
;
this
.SendMS.ButtonCss
=
"
black
"
;
}
override
protected
void
OnInit(EventArgs e)
{
this
.PreRender
+=
new
EventHandler(DisplayPost_PreRender);
base
.OnInit(e);
}
}
posted @
2005-11-24 15:00
烈马狂生
阅读(
351
) 评论(
0
)
编辑
收藏
举报
努力加载评论中...
刷新页面
返回顶部
公告
点击右上角即可分享