Salut,
je veux créer un webUserControl qui hérite d'un textbox alors g écrit le code suivant:
public partial class WebUserControl: System.Web.UI.WebControls.TextBox
{
protected void Page_Load(object sender, EventArgs e)
{
}
[Category("Configuration"), Browsable(true)]
public String TextB
{
get
{
return this.TextBox1.Text;
}
set
{
this.TextBox1.Text = value;
}
}
}
mais il m'envoie le msg d'erreur suivant au niveau du nom de la classe: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl)
Quelqu'un sait-il ce qu'est le problème?
Partager