Hey guys,
I've created a CustomFileUpload class which is inherited from the original FileUpload class, I'm gonna have to say it's not actually a UserControl it's a simple class which can be seen below
using System;
using System.Web;
public class CustomFileUpload : System.Web.UI.WebControls.FileUpload
{
public string Directory { get; set; }
}
I need to know how I can use the control in my page, maybe something like <@Registe ... when we create a usercontrol.