The forum operates in read-only mode. Please head to StackOverflow for support.
Hello,I am trying to insert some ASP recordset call using CKEditor and it is not working. Does anyone have a solution to the following?
<img src="<%=(RecordsetPhotographs.Fields.Item("filename").Value)%>" />
config.protectedSource.push( /<%[\s\S]*?%>/g ); // ASP Code
You can't put ASP code in CKEditor. It won't be processed. Instead you'll have to put some URL like:
<img src="http://mydomain.com/getimage.asp?filename=xxxxxx" />
Re: Trying to insert ASP Classic Recordset
Re: Trying to insert ASP Classic Recordset
You can't put ASP code in CKEditor. It won't be processed. Instead you'll have to put some URL like:
Re: Trying to insert ASP Classic Recordset