Call back from a aspx page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

From a web aspx page I need to call a two proc’s. The first proc returns the
data quickly which I want populate a data grid. The second proc does some
heavy processing so when it’s finished I want to do notify the web page with
a button which appears and displays “click here to update the page†Then I
want to combine the data from the two proc's is this possible with a aspx web
page if so how do you do it ?
 
Seems you are a funny person. I have the sdk thanks I was looking at how you
go about doing a call back thanks.
 
In .Net, it's simply called an Event. Just wire up an Event Handler to the
button's Click Event.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
 
google this newgroup for progress bars, its the same solution. basically
there is no way for the server to notify the client, the web page needs to
poll the server.

-- bruce (sqlwork.com)


| Hello,
|
| From a web aspx page I need to call a two proc's. The first proc returns
the
| data quickly which I want populate a data grid. The second proc does some
| heavy processing so when it's finished I want to do notify the web page
with
| a button which appears and displays "click here to update the page" Then I
| want to combine the data from the two proc's is this possible with a aspx
web
| page if so how do you do it ?
 
Back
Top