שלח תשובה

זירת השאלות

673
צפיות
1
תשובות

שאלה בנושא ארועי לחצן בasp.net

,‏ 5 באפריל, 2007

אני מעוניין להפעיל  ידנית את ארוע קליק של כפתור מסוים.
כתבתי את הקוד הבא:


public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {

         this.Button2.Click( sender,  e);
    }
    protected void Button2_Click(object sender, EventArgs e)
    {
        Label1.Text = "Button2_Click";
    }
}




אך קיבלתי את השגיאה הבאה:
Error    1    The event 'System.Web.UI.WebControls.Button.Click' can only appear on the left hand side of += or -=    C:Documents and SettingstzviMy DocumentsVisual Studio 2005WebSitesTargilTextBoxDefault2.aspx.cs    20    22    C:…TargilTextBox
יש לציין שארוע event שאני יצרתי כן פעל. האם יש משהו בארוע הזה שהוא של המערכת שאי אפשר להפעילו ידנית? אם כן אפשר, אז איך?

תגיות:

1 תשובות

  1. shlomolol הגיב:

    שאלה נוספת בעניין אחר
    נתקלתי בדוגמאות קוד שבהם ישנו משפט המופיע בתוך סוגריים מרובעות. ככה


    [Bindable(true)]
    [TypeConverter("System.Windows.Forms.Design.DataSourceConverter,
                                               System.Design")]
    [Category("Data")]


    מישהו יודע מה זה?

שלח תשובה