Rank: Advanced Member Groups: Member
Joined: 4/13/2009 Posts: 37
|
Hello,
What's the best way to transfer a value from a webpage to another webpage that resides in a Dialog control? In other words, I'd like to do something like the following:
// // Pass the value from test.aspx. // dlgUpload.ContentUrl = "Upload.aspx"; dlgUpload.QueryString.Add( "Age", "32" ); dlgUpload.InitialState = EO.Web.DialogState.Visible;
// // Grab the value in Upload.aspx. // protected void Page_Load(object sender, EventArgs e) { string theAge = Request.QueryString[ "Age" ].ToString(); }
Thanks, Marty
|
Rank: Advanced Member Groups: Member
Joined: 4/13/2009 Posts: 37
|
Nevermind. I found the answer in my question.
MB
|