There are many ways to do that. One would be to add the "onload" event to the left frame's body tag:
HtmlGenericControl bodyCtrl;
void Page_Load()
{
...
if (IsPostBack)
{
...
string query="";
query+="var1="+HttpUtility.URLEncode(myTxtBox1.Tex t);
query+="&var2="+HttpUtility.URLEncode(myTxtBox2.Te xt);
query+="&var3="+HttpUtility.URLEncode(myTxtBox3.Te xt);
query+="&var4="+HttpUtility.URLEncode(myTxtBox4.Te xt);
bodyCtrl.Attributes.Add("onload","top.location='Ou terFrame.aspx?"+query+"'")
}
...
}
The body element of your left frame must of course have a RunAt="Server" attribute:
<body Runat="Server" id="bodyCtrl">
In your outer frame file then, you forward the query string to the right frame... I guess you know how to create hyperlinks (or any text) dynamically?
HTH,
Axel Dahmen
-------------------------
"Kathy Burke" <ka**********@attbi.com> schrieb im Newsbeitrag news:#o**************@tk2msftngp13.phx.gbl...
Thanks Axel,
Could you possibly give me a brief example...?
KathyBurke
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!