How can I send a value Web Appliction C# asp.net

  • Thread starter Thread starter Gil R
  • Start date Start date
G

Gil R

hi,

How can I send value from one page to another with out surfuing to this page?
code like this can't help me:
"Response.Redirect..."
and
"Server.transfer..."

please help me ,tanks so much

Gil R
 
Gil R said:
hi,

How can I send value from one page to another with out surfuing to this
page?
code like this can't help me:
"Response.Redirect..."
and
"Server.transfer..."

The dotnet.framework.aspnet would've been a better place to post this
question.

You haven't really defined to problem well enough to get a sensible answer.
A page which isn't currently executing doesn't have any values. Where is
this value held?

If the page calculates the value then you could re-factor the calculation
into a class then re-use that class in your client page.

For more sensible input try adding more context and description to your
problem and post the question to the aspnet group.
 
Gil said:
How can I send value from one page to another with out surfuing to this page?
code like this can't help me:
"Response.Redirect..."
and
"Server.transfer..."

WebClient or (Http)WebRequest.

Arne
 
Back
Top