How can I invoke a Postback() by code?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Frank Lehmann

    #1

    How can I invoke a Postback() by code?

    Hello newsgroup,

    I hope somebody can help a .NET newbie like me with this:
    How can I programmaticall y invoke a Postback()
    so that it re-enters the Page_Load() event of the Web Form?

    Any help highly appreciated.
    Regards
    Frank Lehmann


  • Guest's Avatar

    #2
    How can I invoke a Postback() by code?

    hi ,
    try this code in ur page..
    this.RaisePostB ackEvent(userBu tton, "");

    Comment

    Working...