首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

在cs页面统制html控件

2012-12-23 
在cs页面控制html控件?? protected void rep_ItemDataBound(object sender, RepeaterItemEventArgs e)?? ?

在cs页面控制html控件

?? protected void rep_ItemDataBound(object sender, RepeaterItemEventArgs e)

?? ? ? ?{

?? ? ? ? ? ?if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ?HiddenField hfproid = e.Item.FindControl("hfproid") as HiddenField;

?? ? ? ? ? ? ? ?Literal Litmarkete = e.Item.FindControl("Litmarkete") as Literal;

?? ? ? ? ? ? ? ?Literal Litproname = e.Item.FindControl("Litproname") as Literal;

?? ? ? ? ? ? ? ?Literal Litmember = e.Item.FindControl("Litmember") as Literal;

?? ? ? ? ? ? ? ?Literal Litvip = e.Item.FindControl("Litvip") as Literal;

?

?? ? ? ? ? ? ? ?xuning.shop.Model.product p = new xuning.shop.DAL.product().GetModel(int.Parse(hfproid.Value));

?? ? ? ? ? ? ? ?if (p != null)

?? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ?Litproname.Text = "<a target='_blank' href='../pro.aspx?id="+p.id+"'>"+p.proname+"</a>";

?? ? ? ? ? ? ? ? ? ?Litmarkete.Text = p.marketprice.ToString("c2");

?? ? ? ? ? ? ? ? ? ?Litmember.Text = p.memberprice.ToString("c2");

?? ? ? ? ? ? ? ? ? ?Litvip.Text = p.vipprice.ToString("c2");

?? ? ? ? ? ? ? ?}

?? ? ? ? ? ?}

?? ? ? ?}

热点排行