1ï¼webçé¢åå°ä»£ç
2ï¼webçé¢åå°ä»£ç
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace UserControlsDemo1
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//åå°è°ç¨ç¨æ·æ§ä»¶
WebUserControl1 webUserControl1 = (WebUserControl1)Page.LoadControl("~/WebUserControl1.ascx");
webUserControl1.ID = "webUserControl1";
div1.Controls.Add(webUserControl1);
}
}
}
}