ASP.NET自定义控件 第五天 真正可以评分的星级控件
el panCur = (Panel)cell.Controls[0].Controls[1];
panCur.Style.Add("width", e.Score * 16 + "px");
Panel panChange = (Panel)panCur.Controls[0];
panChange.Style.Add("display", "none");
HtmlGenericControl ul =
(HtmlGenericControl)cell.Controls[0].Controls[0];
ul.Style.Add("display", "none");
}
3.15 实现IPostBackEventHandler接口的RaisePostBackEvent方法,在客户端 引起服务器回发后会执行此方法并传递相应的参数,我们只需要在此方法中确保 已创建了所有的子控件后引发相应的事件以设置属性即可: public void RaisePostBackEvent(string args) { if (!string.IsNullOrEmpty(args)) { EnsureChildControls(); int score = Convert.ToInt32(args); StarEventArgs e = new StarEventArgs(); e.Score = score; OnPostScore(this, e); } } 3.16 在Web网站中创建测试页面,注册并声明自定义控件: <%@ Register TagPrefix="cc" Assembly="ControlLibrary" Namespace=?ControlLibrary? %> <cc:PostStar ID="star" runat="server" Comment="Windows XP" OnPostScore="star_PostScore" /> 附录:样式表文件: .stars {width: 80px; height: 16px; text-align: left; overflow: hidden; position: relative; background: url(stars.gif) 0px -32px repeat-x;} .stars .ulist { list-style: none; position: absolute; bottom:0px; margin:0px; padding: 0; } .stars .ulist li { display: inline; float: left; width: 16px; height: 16px; cursor: pointer; overflow: hidden; } .stars .current {width: 0px; height: 16px; background: url(stars.gif) 0px 0px repeat-x;} .stars .change {width: 0px; height: 16px; background: url(stars.gif) 0px -16px repeat-x;} 4.总结 本次任务里我们创建了一个可以由用户评分的自定义控件,PostStart类继承 了IPostEventHandler接口以引发服务器提交,通过引入该接口,我们可以根据需 要使任何一个控件引起服务器提交——只需要注册相应的JavaScript事件即可; 同时为了防止页面使用多个评分控件时出现错误,实现了INamingContainer接口 。在接下来的任务里,将介绍自定义数据绑定控件的开发方法。 本系列文章配套源码 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |