首先自定义控件,控件文件的后缀名为.ascx
添加页面控件,例如: Protected WithEvents hid_function_code As System.Web.UI.WebControls.HiddenField
定义页面的属性,例如:public property FunctionCode() as string
Get
Return hid_function_title.value
end Get
Set(Byval value as string )
hid_funCtion_code.value=value
end Set
end propeprty
以此类推,就可以定义控件了
然后,控件的使用
使用之前,要注册<%@ Register src="../Common_Function/pagetitle.ascx" tagname="pagetitle" tagprefix="uc1" %>
最后可以用了,如 <uc1:pagetitle ID="pagetitle1" runat="server" FunctionCode="H4Z" text=" ETA "/>