Hi eb
I am adding in webForm1.aspx some item to the context items collection
in order to extract it in the next aspx page:
In webForm1.aspx - c# code behind - i do:
---------------------------------------------------------------
Context.Item.add("variableName",variableVaue);
//test that add item succeeded:
string test = (string)Context.Item["variableName"];
if (test.Equals(variableVaue))
{
Server.Transfer(webForm2.aspx,true);
}
----------------------------------------------------------------
Then in webForm2.aspx :
string strVar = (string)Context.Item["variableName"];
Here strVar is null...
--------------------------------------------------------------
If i do the same procedure with session object instead - it works.
What am i missing??
Thanks for your attention
Rea