Adam,
thanks but how can I access the UploaderBase.UploadingMsg Property in CuteEditor.Editor?
I mean I want to change the words which you are using in your "Insert Image" modul when clicking the "Upload" button.
Let's say I have this:
test.aspx:
<html>
...
<CE:Editor id="CuteEditor1" runat="server"></CE:Editor>
...
</html>
test.aspx.vb:
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim uploaderBase As New CuteEditor.UploaderBase
uploaderBase.UploadingMsg = "My new Text"
*** How do I set an instance to CuteEditor1 ?***
End Sub
Please help me.
Thank you!
Joerg