Ask a Question related to ASP Database, Design and Development.
-
Paul #1
Capture event from server?
I don't know whether I've categorized this question
correctly. My users are required to use sombody else's web
site to send data to their web site's database. We also
need to track the same data locally in our database
(MSAccess converting to SQL Server 2000). The data creates
a new record in both databases. To eliminate redundant
data entry, a button in my VB6 app currently "pushes" data
from fields in the app to the other party's web form. The
form's submit button sends the data to the other party's
database. My app intercepts the click event of the submit
button and stores the data in our database. The other
party's database (or asp web app, not sure) then returns a
message box if the data has been successfully entered into
their database. This solution works most of the time.
However, there are times when the data gets stored in our
database, but never reaches the other party's database.
Effectively, half of a transaction. A better solution
would be to store the data in our database from the OK
button of the message box that is returned after the data
is entered into the other party's database. Is this
possible, i.e., to trigger an event from a message box
that is returned from the web app or its database? Is
there another approach that would prevent data from
ocassionally being entered into only one database?
Paul Guest
-
How to capture the save event of PDF documents
I'm trying to create a simple plugin which captures the Save event of PDF documents. I register for the Save event in the following way: ACCB1... -
How to capture CheckChanged event from Radiobutton in Datagrid?
I have a radio button that I have inserted into a datagrid via a TemplateColumn. I need to know when the checked property of the radiobutton has... -
Urgent: Event executed on server and data which is received by that event sent to the client.
Hi I am creating a web-based instant messaging application using asp.net. I have a DLL of which I create an object. This object has some... -
Capture CheckBox Click Event
I have a datagrid with a checkbox column. The column is bound to adatabase, and I have no problem capturing a click event on the checkbox using the... -
Capture client side text change event for TextBox
I have a web form A that contains a TextBox. A pop up window started by my form A will return a value and put it into the TextBox. What I need to... -
Mark Schupp #2
Re: Capture event from server?
How are you sending data to the web-site?
If you are using a component in your VB app to do an HTTP POST then just
parse the returned text to determine if the update was successful.
--
Mark Schupp
Head of Development
Integrity eLearning
[url]www.ielearning.com[/url]
"Paul" <pauldana@selfinc.com> wrote in message
news:0da901c38e6d$a65a48a0$a301280a@phx.gbl...> I don't know whether I've categorized this question
> correctly. My users are required to use sombody else's web
> site to send data to their web site's database. We also
> need to track the same data locally in our database
> (MSAccess converting to SQL Server 2000). The data creates
> a new record in both databases. To eliminate redundant
> data entry, a button in my VB6 app currently "pushes" data
> from fields in the app to the other party's web form. The
> form's submit button sends the data to the other party's
> database. My app intercepts the click event of the submit
> button and stores the data in our database. The other
> party's database (or asp web app, not sure) then returns a
> message box if the data has been successfully entered into
> their database. This solution works most of the time.
> However, there are times when the data gets stored in our
> database, but never reaches the other party's database.
> Effectively, half of a transaction. A better solution
> would be to store the data in our database from the OK
> button of the message box that is returned after the data
> is entered into the other party's database. Is this
> possible, i.e., to trigger an event from a message box
> that is returned from the web app or its database? Is
> there another approach that would prevent data from
> ocassionally being entered into only one database?
Mark Schupp Guest
-
MSFT #3
RE: Capture event from server?
Hi Paul,
How did you embed the web page in your VB application, with a webbrowser
control? How did the third party web page return a Message Box to yuor
application?
Luke
Microsoft Online Support
Get Secure! [url]www.microsoft.com/security[/url]
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
MSFT Guest
-
pauldana@selfinc.com #4
RE: Capture event from server?
I used a webbrowser control in my application. I don't
know what generates the message from the other party's web
site. It resembles a message box, though it may be
generated some other way.with a webbrowser>-----Original Message-----
>Hi Paul,
>
>How did you embed the web page in your VB application,Message Box to yuor>control? How did the third party web page return aand confers no>application?
>
>Luke
>Microsoft Online Support
>
>Get Secure! [url]www.microsoft.com/security[/url]
>(This posting is provided "AS IS", with no warranties,>rights.)
>
>.
>pauldana@selfinc.com Guest
-
MSFT #5
RE: Capture event from server?
I think you may add the code in the webcontrol's DocumentComplete event,
When you submit the data to the third party web page, add it return back,
this event will be fired.
Luke
Microsoft Online Support
Get Secure! [url]www.microsoft.com/security[/url]
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
MSFT Guest
-
MSFT #6
RE: Capture event from server?
Hello,
If my suggestion is not clear or you didn't think it can resolve the
problem, please post your comments here. I will continue to follow up on
this issue.
Thanks,
Luke
Microsoft Online Support
Get Secure! [url]www.microsoft.com/security[/url]
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
MSFT Guest



Reply With Quote

