Currently I am using an ASP page and a com object.
Before I switch to ASP.NET, I am wondering if this can be done in ASP.NET.
In my ASP pages, the user clicks on submit and the information from this page is posted back onto itself. I then call a COM object to run.
The COM object will take up to 4 minutes sometimes to complete running.
For simplicity sake lets say the COM object inserts one record into a table in my database.
In my ASP page, I have a combo box that pulls the records from the same table.
Is there a way in ASP.NET to refresh this combo box once the table gets updated with more records or once the COM object finishes running?
Before I switch to ASP.NET, I am wondering if this can be done in ASP.NET.
In my ASP pages, the user clicks on submit and the information from this page is posted back onto itself. I then call a COM object to run.
The COM object will take up to 4 minutes sometimes to complete running.
For simplicity sake lets say the COM object inserts one record into a table in my database.
In my ASP page, I have a combo box that pulls the records from the same table.
Is there a way in ASP.NET to refresh this combo box once the table gets updated with more records or once the COM object finishes running?