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

源代码在线查看: displayfeaturedproducttype.aspx

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

相关代码

								  Src="FeaturedProduct1.ascx" %>
								  Src="FeaturedProduct2.ascx" %>
				
				
				
				Sub Page_Load
				  Dim strFeatured As String
				  Dim RanNum As New Random
				  Dim ctlControl As Control
				
				  Select RanNum.Next( 1, 3 )
				  Case 1
				    ctlControl = LoadControl( "FeaturedProduct1.ascx" )
				    CType( ctlControl, FeaturedProduct1 ).BackColor = "Yellow"
				  Case 2
				    ctlControl = LoadControl( "FeaturedProduct2.ascx" )
				    CType( ctlControl, FeaturedProduct2 ).BackColor = "Yellow"
				  End Select
				  plhFeatured.Controls.Add( ctlControl )
				End Sub
				
				  
				
				
				DisplayFeaturedProductType.aspx
				
				
								  id="plhFeatured"
				  Runat="Server" />
				
				
							

相关资源