asp.net技术内幕的书配源码

源代码在线查看: displayfeaturedproducttype.aspx

软件大小: 1547 K
上传用户: gsxyndll
关键词: asp net 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				
								  Src="FeaturedProduct1.ascx" %>
								  Src="FeaturedProduct2.ascx" %>
				
				
				
				void Page_Load(object sender, EventArgs e) {
				  string strFeatured;
				  Random RanNum = new Random();
				  Control ctlControl=null;
				
				  switch(RanNum.Next(1,3)) {
					case 1:
						ctlControl = LoadControl("FeaturedProduct1.ascx");
						((FeaturedProduct1)ctlControl).BackColor = "Yellow";
						break;
					case 2:
						ctlControl = LoadControl("FeaturedProduct2.ascx");
						((FeaturedProduct2)ctlControl).BackColor = "Yellow";
						break;
				  }
				  if (ctlControl!=null)
					plhFeatured.Controls.Add(ctlControl);
				}
				
				  
				
				
				DisplayFeaturedProductType.aspx
				
				
								  id="plhFeatured"
				  Runat="Server" />
				
				
							

相关资源