Hy Jeena,

Based from my understanding,
you want to store your data in the different app/web server than your
web app.

You told that you want to pass a value to other page that is belong to
the different web server
and you want to stay in the current page.
It quite confusing.

Actually you want to send your data to other web app right?
If the "other" web app is yours, it can be easier.

What you need is get an access directly to the db of the "other" web
app.
Not the page, page is for human interface.

So now your current page will open and save the data in the "other"
db.

If this is what you mean, you dont need to see the Server.Transfer,
Response.Redirect, AJAX.
It is all about your current web app only.
Confirm the concept to achieve what you need first.

On May 14, 1:48 pm, Jeena Ajiesh <[email protected]> wrote:
> Thanks for the Reply...
>
> This will redirect to an aspx page know, but the thing i need is to send the
> values to anther page for storing it in another database in a different web
> server.
>
>  I need to send like
> ...(*http://www.mysite.com/sendvalues.php?*Source="; + source +
> "+Destination=" + Destination + "+DateOfCreation=" +
> date<http://www.mysite.com/sendvalues.php?uid=name&pwd=pass&to=&txt=againv...>
> )
>
> On Wed, May 13, 2009 at 1:40 PM, jijee mandati <[email protected]>wrote:
>
>
>
> > Try it
>
> > Response.Redirect("TravelPassenger.aspx?Source=" + source +
> > "+Destination=" + Destination + "+DateOfCreation=" + date);
>
> >  On Wed, May 13, 2009 at 1:37 PM, Jeena Ajiesh <[email protected]> wrote:
>
> >>  Hi all,
> >> Can anyone help me in passing some values from database to another page.
> >> I dont want the user to redirect to that page.But stay in the current page
> >> and pass the values only.
> >> I need to send like
> >> ...(
> >>http://www.mysite.com/sendvalues.php?uid=name&pwd=pass&to=valuefromdb...
> >> )
> >> What should i give? whether Reponse.Redirect or Server.Send....
>
> >> i tried out like
> >> Server.Send(http://www.mysite.com/sendvalues.php?uid=jee&pwd=jee&to="&;
> >> num &" "&txt="& 
> >> againvaluefromdb<http://www.mysite.com/sendvalues.php?uid=jee&pwd=jee&to=%22&+num+&%22...>
> >> )
>
> >> But i cant get the actual result.Some error as it is expecting virtual
> >> path
>
> >> Please help me if anyone knows abt this
>
> >> Thanks In Advance.
> >> jeena
>
> --
> ****************
> Thanks & Regards,
> Jeena Ajiesh
> Email: [email protected]
>          [email protected]

Reply via email to