I need to load a URL that points to an image file into FCKeditorV2 version editor in ASP.Net 1.1. I am using VS.Net 2003.
The image plugin code is as follows:
FCKCommands.RegisterCommand(
'Open_ProofSheet',
new FCKDialogCommand(
'ProofSheet',
'ProofSheet',
'../../../Content/ProofSheet.aspx', 1024, 800));
The ProofSheet page is a DataList of ImageButtons with the candidate images. The user selects one for sizing. On selection of an image, the ImageSizeSelection page is opened via the Response.Redirect.
ImageSizeSelection opens as a dialog. The user selects one of the sized images. I want to pass the image file location back to the editor instance as a URL. That is is the problem. How do access the FCKEdit instance and give it the URL?
The image plugin code is as follows:
FCKCommands.RegisterCommand(
'Open_ProofSheet',
new FCKDialogCommand(
'ProofSheet',
'ProofSheet',
'../../../Content/ProofSheet.aspx', 1024, 800));
The ProofSheet page is a DataList of ImageButtons with the candidate images. The user selects one for sizing. On selection of an image, the ImageSizeSelection page is opened via the Response.Redirect.
ImageSizeSelection opens as a dialog. The user selects one of the sized images. I want to pass the image file location back to the editor instance as a URL. That is is the problem. How do access the FCKEdit instance and give it the URL?