xml posting

  • Thread starter Thread starter BK Kim
  • Start date Start date
B

BK Kim

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
 
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
 
Back
Top