主要控件:UpdatePanel 、ScriptManager <html xmlns="http://www./1999/xhtml" > <head id="Head1" runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager EnablePartialRendering="true" ID="ScriptManager1" runat="server"></asp:ScriptManager> <div> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Label ID="Label1" runat="server" Text="This is a label!"></asp:Label> <asp:Button ID="Button1" runat="server" Text="Click Me" OnClick="Button1_Click" /> </ContentTemplate> </asp:UpdatePanel> </div> <asp:DropDownList ID="DropDownList1" runat="server"> <asp:ListItem>s</asp:ListItem> <asp:ListItem>d</asp:ListItem> <asp:ListItem>sdfg</asp:ListItem> </asp:DropDownList> <p> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </p> </form> </body> </html>
|
|