zoukankan      html  css  js  c++  java
  • AJAX不刷新页面

    <asp:UpdatePanel ID="updatePanel" runat="server" UpdateMode="Conditional">
                    <ContentTemplate>
                    <asp:GridView ID="GridView1"  CssClass="tablestyle"
                        AutoGenerateColumns="false" ShowFooter="true"  DataKeyNames="PartName"
                        runat="server" onrowdatabound="GridView1_RowDataBound"
                        onrowcreated="GridView1_RowCreated">
                            <AlternatingRowStyle CssClass="altrowstyle" />
                            <HeaderStyle CssClass="headerstyle" />
                            <RowStyle CssClass="rowstyle" />
                            <FooterStyle BackColor="#E8E8EA" />
                        <Columns>
                            <asp:BoundField DataField="Height" HeaderText="重量" FooterText="重量" SortExpression="Height"/>
                            <asp:BoundField DataField="PartName" HeaderText="物品名称" FooterText="物品名称" SortExpression="PartName" ItemStyle-Width="170px"/>
                            <asp:BoundField DataField="Number1" HeaderText="数量" FooterText="数量" SortExpression="Number1" ItemStyle-Width="150px"/>
                            <asp:BoundField DataField="Price1" HeaderText="金额" SortExpression="Price1" ItemStyle-Width="150px"/>
                        </Columns>
                    </asp:GridView>
                    </ContentTemplate>

                </asp:UpdatePanel>

     from 后面添加:

    <asp:ScriptManager ID="ScriptManager1" runat="server" />

  • 相关阅读:
    HDU 1878 欧拉回路(DFS)
    HDU 2181 哈密顿绕行世界问题(DFS)
    HDU 1181 变形课(DFS)
    HDU 1029 Ignatius and the Princess IV(map应用)
    HDU 1242 Rescue(BFS)
    HDU 1027 Ignatius and the Princess II(STL)
    将项目部署到本地IIS时出现的奇怪问题
    [转]30个你必须记住的css选择器
    打开一个从网络上下载的chm文件时出现“已取消到该网页的导航”
    [转]使用Modernizr 检测HTML5和CSS3浏览器支持功能
  • 原文地址:https://www.cnblogs.com/hyd309/p/1492891.html
Copyright © 2011-2022 走看看