I am developing two asp.net web projects.

When the last page of the first project is done, it redirects to the first
page of the second project.

However, I need to transfer some data to the second project and I want to
use xml data for this not query strings.

Anyone know how to achieve this?

Thanx in advance

Re: xml posting by Nick

Nick
Tue Nov 23 00:51:14 CST 2004

The way I normally do this is to store the data on the server somewhere,
using an id value as an index. I then pass the id value on the query
string, and the second app would use it to get the data from the server.
This could be the primary key of a table in a database, for example, where
the specific row referenced by the key has the data you want to pass... or
it could be an XML file written on the server.

This is a secure way to pass a great deal of data.

--- Nick

"BK Kim" <bkkim@destinationrx.com> wrote in message
news:ekc7M4P0EHA.1296@TK2MSFTNGP10.phx.gbl...
> I am developing two asp.net web projects.
>
> When the last page of the first project is done, it redirects to the first
> page of the second project.
>
> However, I need to transfer some data to the second project and I want to
> use xml data for this not query strings.
>
> Anyone know how to achieve this?
>
> Thanx in advance
>
>