Hi
I'm aware we can pass parameters over when open a dialog via javascript as below:
I'm aware we can pass parameters over when open a dialog via javascript as below:
var editor = $find("<%=txtEditor.textEditor.ClientID%>");
var openArgs = {};
openArgs.sender =
'AppendixRule';
editor.fire(
'TP_EditRule', openArgs);
These parameters can then be read using javascript in the dialog. However I was wondering if there is a way to read these on the server side page load of the ASCX control? ie ...
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'HERE
End Sub
Thanks
David