Refresh GridView using CallBack

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

    #1

    Refresh GridView using CallBack

    How do I refresh GridView using CallBack?

    I am populating the grid at runtime using OLEDB.


  • Cor Ligthert [MVP]

    #2
    Re: Refresh GridView using CallBack

    Guru,

    If there is somethng in these cases than the answer is for 80% be assure
    that you do a databind as last command before the postback to the client.

    Cor

    "Guru" <Guru@discussio ns.microsoft.co m> schreef in bericht
    news:266D66DA-9BB8-4B6A-93D6-65B263B52419@mi crosoft.com...[color=blue]
    > How do I refresh GridView using CallBack?
    >
    > I am populating the grid at runtime using OLEDB.
    >
    >[/color]


    Comment

    • Guru

      #3
      Re: Refresh GridView using CallBack

      We have been testing the system for a week now. The only complain that
      everyone is making is that it is very slow. The website is internal and is
      running on 4 dual core CPU processor with 4GB RAM. Only thing I can think of
      is moving from PostBack to CallBack.

      Is there a method to refresh using callback? I could use a LinkButton or
      just a button to Refresh which when the user clicks will just refresh the
      grid and not the whole webpage.

      Guru

      "Cor Ligthert [MVP]" wrote:
      [color=blue]
      > Guru,
      >
      > If there is somethng in these cases than the answer is for 80% be assure
      > that you do a databind as last command before the postback to the client.
      >
      > Cor
      >
      > "Guru" <Guru@discussio ns.microsoft.co m> schreef in bericht
      > news:266D66DA-9BB8-4B6A-93D6-65B263B52419@mi crosoft.com...[color=green]
      > > How do I refresh GridView using CallBack?
      > >
      > > I am populating the grid at runtime using OLEDB.
      > >
      > >[/color]
      >
      >
      >[/color]

      Comment

      • Cor Ligthert [MVP]

        #4
        Re: Refresh GridView using CallBack

        Guru,

        For that are the words Ajax (Assyngrounous whatever) and the Microsoft
        solution (still in beta but AFAIK with a go live situation) Atlas.

        http://msdn.microsoft.com/msdnmag/is...t/default.aspx

        Cor

        "Guru" <Guru@discussio ns.microsoft.co m> schreef in bericht
        news:6905E184-5E85-4EA3-B300-254C528042D8@mi crosoft.com...[color=blue]
        > We have been testing the system for a week now. The only complain that
        > everyone is making is that it is very slow. The website is internal and is
        > running on 4 dual core CPU processor with 4GB RAM. Only thing I can think
        > of
        > is moving from PostBack to CallBack.
        >
        > Is there a method to refresh using callback? I could use a LinkButton or
        > just a button to Refresh which when the user clicks will just refresh the
        > grid and not the whole webpage.
        >
        > Guru
        >
        > "Cor Ligthert [MVP]" wrote:
        >[color=green]
        >> Guru,
        >>
        >> If there is somethng in these cases than the answer is for 80% be assure
        >> that you do a databind as last command before the postback to the client.
        >>
        >> Cor
        >>
        >> "Guru" <Guru@discussio ns.microsoft.co m> schreef in bericht
        >> news:266D66DA-9BB8-4B6A-93D6-65B263B52419@mi crosoft.com...[color=darkred]
        >> > How do I refresh GridView using CallBack?
        >> >
        >> > I am populating the grid at runtime using OLEDB.
        >> >
        >> >[/color]
        >>
        >>
        >>[/color][/color]


        Comment

        Working...