how does the __doPostBack method get called? Where is the calling method?
问题 I used an <asp:Button /> control, and after rendering in the browser that control doesn't have a click event property assigned. How exactly is it calling the sever side event? ASPX code: <asp:Button ID="Button1" runat="server" Text="Button" OnClick="TestClickEvent" /> The above control was rendered in browser as following code: <input type="submit" name="Button1" value="Button" id="Button1"> The following code is rendered in the browser, which sets __EVENTTARGET . My doubt is how does the _