Getting object in serverside VB script from ShowModalDialog on the Client

  • Thread starter Thread starter Jim M
  • Start date Start date
J

Jim M

I pass variables to my ASPX page as shown....

myObject.Test = "TestMessage"
retVal =
showModalDialog(Test.aspx,myObject,"dialogWidth:900px;dialogHeight:500px;sta
tus:0");

I can get the value of test using client side javascript on test.aspx using
[window.dialogArguments], but is there a way to get the value of test on the
server using the Request object or other object?

Thanks in advance.
 
Back
Top