解决方案 »

  1.   

    ajax不懂啊,也许符合我的需求,也许也不符合。我的页面跟pconline的基本一样,也是上面选择产品的搜索条件,不同的是我的上面部分也是根据设置动态生成的,而不是写静态html写死的,所以不想每次翻页都要刷新和绑定上面部分,太费资源。不过我刚刚在csdn里发现一个方法,好像我这个问题用框架就可以很简单的解决了,呵呵,大家说是不是我自己试试看,希望大家继续帮忙。
      

  2.   

    我本来不想结合java的东西,但看了xiahouwen 给的例子,觉得挺漂亮的,也可以来试试看,学着做点ajax的东西。
      

  3.   

    Magic Ajax!!
    不需要添加任何程序代码,直接把控件放在Magic Panle区域就可以实现无刷新。
      

  4.   

    asp.net Ajax 也不需要写什么代码.
      

  5.   

    使用AjaxPanel 
    把要刷新的页面放到<asp:updatePanel  中
    如:
    <asp:UpdatePanel id="UpdatePanelWebImageList" runat="server" >
      <contenttemplate>
        <asp:DataGrid id="webimageList" ..........
     </contenttemplate>
    </asp:UpdatePanel>
      

  6.   

    使用 asp.net   Ajax   
    把要更新的部分放到 <asp:UPdatePanel 里
    如:
    <asp:UpdatePanel id="UpdatePanelWebImageList" runat="server" >
    <contenttemplate>
      <asp:dataGrid  ..
    </contenttemplate>
    </asp:UpdatePanel>
      

  7.   

    使用   asp.net+Ajax