Hi DarkStar,
Please use the following property:
Editor.URLType Property
When you're creating links to documents and images on the Web, you need to think about how you're going to link to them. CuteEditor supports three standard ways to create links:
- Site root relative path ( <a href="http://cutesoft.net/default.aspx">Home</a> )
- Absolute path ( <a href="http://cutesoft/default.aspx">Home</a> )
- Relative paths ( <a href="default.aspx">Home</a> or <a href="#top">Top</a>)
Code Example:
<script runat="server">
</script>
<html xmlns="
http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<CE:Editor ID=editor1 runat=server URLType="Absolute"></CE:Editor>
</div>
</form>
</body>
</html>
Demo:
Regards
Ken