找到这个文件:label_creat.asp
在表单处增加以下代码:
<tr class="hback">
<td> </td><td>
<div id="sourcedit" name="sourcedit" style="display:none" align="center">
<textarea name="sourceditTEXT" cols="120" rows="20"><%=Server.HTMLEncode(tmp_LableContent)%></textarea>
</div> </td> </tr>
增加或修改JS:
function CheckForm(FormObj)
{
if($("sourceditTEXT").value=="" || $("sourcedit").style.display=="none"){
FormObj.TxtFileds.value = FS_Edit1.getXHTMLBody();
}else{
FormObj.TxtFileds.value = $("sourceditTEXT").value;
}
return true;
}
function swTextEdit()
{
if($("sourcedit").style.display==""){
$("sourcedit").style.display="none";
}else{
if($("sourceditTEXT").value=="")$("sourceditTEXT").value=FS_Edit1.getXHTMLBody();
$("sourcedit").style.display="";
}
}

附件:
您所在的用户组无法下载或查看附件