Muchas gracias, el fallo lo tenía en que como pillé el ejemplo que me traía el tinymce no me acordé de cambiar el "name=", si esque además de burro soy despistado jaja
Una última cosa, me pilla bien el texto y queda guardado en el editor de noticias, pero a la hora de mostrarmelo en la web solo me muestra los cambios de negrita, cursiva etc... ni alineación, ni colores ni imagenes muestra, por lo tanto de poco me sirve el tinymce si a la hora de mostrarlo no aparece todo como es realmente :(
Por eso a ver si me podeis hechar una mano con el código, he probado a ver si era por la hoja de estilos y la he quitado pero nada, seguía igual asique os pego el código de la parte de la página donde se muestran las noticias al público para ver si me podeis hechar una mano que de verdad que os estaría muy agradecido.
Código:
<%
FUNCTION CambioCaracter(dato)
dato=Replace(dato,chr(13)+chr(10),"<BR>")
' dato=replace(dato, vbNewLine, "<br>")
dato=Replace(dato,CHR(34),"''")
CambioCaracter=dato
End Function
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "dsn=softtn.com.dumb2;;"
' Mostrar las noticas
sql="SELECT Noticias.Id, Noticias.TituloGeneral, Noticias.Resumen, Noticias.FechaAlta "
sql= sql & "FROM Noticias "
sql= sql & "WHERE (Noticias.Visibleweb)=Yes "
sql= sql & "ORDER BY Noticias.FechaAlta DESC "
Set RSnoticias=Conn.Execute(sql)
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<LINK href="../css/estilos.CSS" type=text/css rel=stylesheet>
<SCRIPT type=text/javascript>
<!--
function overTD(td,color,color2){td.style.cursor='hand';td.bgColor=color;}
function outTD(td,color,color2){td.style.cursor='default';td.bgColor=color;}
function clickTD(td){td.children.tags('A')[0].click();}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
//-->
</SCRIPT>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#FFFFFF" vlink="#CCCCCC" alink="#999999">
<div align="center">
<!-- Titulo apartado (noticias)-->
<a name="inicio"></a></div>
<table width="100%" border="0" cellpadding="5" cellspacing="0" bgcolor="#FFFFFF" ID="Table14">
<tr>
<td height="20">
<div align="center" ><font color="#FF8040" size="3"><b><font color="#003300" ><font color="#FF8040" size="3"><b><img
src="http://www.forosdelweb.com/f15/img/menu2.gif" width=8 height=11> <b
class=titular><font color="0078C8">Novas</font></b> <img src="http://www.forosdelweb.com/f15/img/menu2.gif" width=8 height=11></b></font></font></b></font></div>
</td>
</tr>
</table>
<!-- Desarrollo noticas (titulo, resumen) -->
<%if Rsnoticias.Eof or Rsnoticias.Bof then
Response.Write "En este momento no hay ninguna noticia. Visítenos en breve plazo si quiere enterarse de las últimas novedades"
else
do while not Rsnoticias.eof%>
<table width="100%" border="1" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" bordercolor="#0078C8">
<tr>
<td bgcolor="#0078C8">
<div ><b>
<font color="#FFFFFF">
<a name="<%=Rsnoticias("id")%>" class="formGris">· (<%=Rsnoticias("FechaAlta")%>) <%=Rsnoticias("TituloGeneral")%></a>
</font></b></div>
</td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
<tr>
<td >
<table width="100%" border="0" cellspacing="10" cellpadding="0">
<tr>
<td class="todo" >
<%=CambioCaracter(Rsnoticias("Resumen"))%>
<br>
<%=(Rsnoticias("Resumen"))%> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<%
Rsnoticias.MoveNext
Loop
end if
%>
</body>
</html>
Si esto último se soluciona ya por fin podré dar por finalizado todo :)