showModalDialog and .net post back possible?

  •  09-05-2006, 1:00 PM

    showModalDialog and .net post back possible?

    Please can you clear this up for me.
     
    Is it possible to use showModalDialog that loads a page that uses postback.
     
    function ShowMyDialog(button)
     {
      //use CuteEditor_GetEditor(elementinsidetheEditor) to get the cute editor instance
      var editor=CuteEditor_GetEditor(button);
      //show the dialog page , and pass the editor as newwin.dialogArguments
      var newwin=showModalDialog("My_Custom_Text.aspx?_rand="+new Date().getTime()
        ,editor,"dialogWidth:400px;dialogHeight:240px");
     }
     
    I know the above code will popup the dialog but can you use postback in the page.
     
    Please could you provide examples
     
    Thanks in advance
View Complete Thread