The outside page act like a webservice,it update a record in the data base
and return success or failed
"McKirahan" <> wrote in message
news

Urdd.503085$8_6.73907@attbi_s04...
> "Julia" <> wrote in message
> news:#...
> >
> >
> > Hi,
> > I have a web application running inside an organization
> > and I need to post some data to an asp page sitting outside the
> organization
> >
> > How do I get failure or success error from the outside page?
> > currently I am using IFrame,but I wonder if I get 404(server down) how
do
> I
> > know I go an error?
> >
> > BTW:since it is an organization i am open to other solution,cause i
might
> be
> > able to install
> > activx,NET components or any other stuff.
> >
> > Thanks in advance
>
> What does the outside ASP page do?
>
> Could you be more specific?
>
> Is ts like using a <form> on another site?
>
> Here's an example of doing a reverse phone number lookup:
>
> <html>
> <head>
> <title>lookup.htm</title>
> </head>
> <body>
> <form action="http://www22.verizon.com/utilities/reverselookup/"
> method="get" name="ypform">
> <input type="hidden" name="process" value="yes">
> <input type="hidden" name="A2" value="718">
> <input type="hidden" name="X3" value="257">
> <input type="hidden" name="P2" value="4956">
> </form>
> <script type="text/javascript">
> document.ypform.submit();
> </script>
> </body>
> </html>
>
> This returns a page with the result whether the number is found or not.
>
>