Hi,
I want to use fckeditor with my asp.net 2.0 application.(VB.NET)
I add the following lines in web.config file
<appSettings>
<add key="FCKeditor:BasePath" value="~/FCKeditor/" />
<add key="FCKeditor:UserFilePath" value="/email/UserFiles/" />
<add key="FCKeditor:EnableXHTML" value="True" />
</appSettings>
But the image path is like this when I add image in fckeditor.
<img class="" alt="" src="/UserFiles/Image/light.gif" />
It should be "/email/UserFiles/Image/light.gif", I am not sure how to fix this.
Do I have to change other settings? Please let me know which files I have to change
Thanks a lot for your help
Mark
I want to use fckeditor with my asp.net 2.0 application.(VB.NET)
I add the following lines in web.config file
<appSettings>
<add key="FCKeditor:BasePath" value="~/FCKeditor/" />
<add key="FCKeditor:UserFilePath" value="/email/UserFiles/" />
<add key="FCKeditor:EnableXHTML" value="True" />
</appSettings>
But the image path is like this when I add image in fckeditor.
<img class="" alt="" src="/UserFiles/Image/light.gif" />
It should be "/email/UserFiles/Image/light.gif", I am not sure how to fix this.
Do I have to change other settings? Please let me know which files I have to change
Thanks a lot for your help
Mark
Re: image path is incorrect in ASP.NET 2.0??
I tried setting the key in web.config and using code (C#)
The weird thing is that it worked at first. I tried to upload a file and that didn't work...I put everything back the way it was and still doesn't work... I'm on a test machine so I set the directory I want to view/upload images to Everyone - Full Control and no go, I then tested in firefox and it told me that directory browsing is not permitted so I changed that and now I just get a index directory listing in the browser.
anyone have any ideas??