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)%>" />
It is not parsing the information and doing the following:
<img src="<!--{cke_protected}%3C%25%3D(RecordsetPhotographs.Fields.Item(%22filename%22).Value)%25%3E-->" />
Your help is greatly appreciated. I have a deadline of course
Thank you,
Keith
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:
and then build an ASP page called getimage.asp that receives the filename as GET parameter, fetches the image from the Recordset and outputs it to the browser. You may also need to send a Content-type header with the type of the image (e.g. Content-type: image/jpg) before sending the image itself.
Re: Trying to insert ASP Classic Recordset