Howdy all -
This is probably a no brainer for some, but I haven't figured it out yet, so I thought I'd seek some assistance.
I've got a ASP.NET 2.0 page (vb) that uses FCKEditor, additionally a user can upload an image file in the form using my implementation of file uploading (nothing custom, standard dotnet 2.0).
All that works fine, what's giving me an issue is that I'm appending the value of the FCKeditor control with a string that is a reference to the image. Unfortunately FCK doesn't like it and displays the no image red X in it's place. If I submit the form, and write the information to the DB, everything is correct and is outputted in the manner I desire. Any suggestions on how to format the string correctly? (I've included the pertinent portion below)
Dim fckStr As String
fckStr = FCKeditor1.Value + "<p><img src=""image-inline.aspx?img=" & fileNameNew & """ /></p>"
FCKeditor1.Value = fckStr.ToString()
This is probably a no brainer for some, but I haven't figured it out yet, so I thought I'd seek some assistance.
I've got a ASP.NET 2.0 page (vb) that uses FCKEditor, additionally a user can upload an image file in the form using my implementation of file uploading (nothing custom, standard dotnet 2.0).
All that works fine, what's giving me an issue is that I'm appending the value of the FCKeditor control with a string that is a reference to the image. Unfortunately FCK doesn't like it and displays the no image red X in it's place. If I submit the form, and write the information to the DB, everything is correct and is outputted in the manner I desire. Any suggestions on how to format the string correctly? (I've included the pertinent portion below)
Dim fckStr As String
fckStr = FCKeditor1.Value + "<p><img src=""image-inline.aspx?img=" & fileNameNew & """ /></p>"
FCKeditor1.Value = fckStr.ToString()