1.设计界面插入2个下拉列表dropdownlist分别是文字大小和类型,后加一个按钮激发。(因为autopostback每次都要提交到服务器,这里不要频繁使用)
2.数据页面按钮事件的代码
private viod btncounter_onclick(object sender,eventargs e)
{
this.repeater.attributes.add("fontsize","this.dropdownlist1.selecteditem.text");
this.repeater.attributes.add("fontface","this.dropdownlist2.selecteditem.text");
}